diff --git a/inc/spot.php b/inc/spot.php index 72cbe51..b2397ba 100755 --- a/inc/spot.php +++ b/inc/spot.php @@ -166,6 +166,13 @@ class Spot extends Main return self::getJsonResult($bSuccess, $sDesc, $asMessages); } + + public function upload() + { + $this->oClassManagement->incClass('uploader', true); + $oUploader = new Uploader(); + return $oUploader->getBody(); + } } ?> \ No newline at end of file diff --git a/inc/uploader.php b/inc/uploader.php new file mode 100644 index 0000000..521714d --- /dev/null +++ b/inc/uploader.php @@ -0,0 +1,1409 @@ +sBody = ''; + } + + protected function body($sText) + { + $this->sBody .= $sText; + } + + public function getBody() + { + return $this->sBody; + } +} + +/* + * jQuery File Upload Plugin PHP Class + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2010, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +class UploadHandler +{ + + protected $options; + + // PHP File Upload error message codes: + // http://php.net/manual/en/features.file-upload.errors.php + protected $error_messages = array( + 1 => 'The uploaded file exceeds the upload_max_filesize directive in php.ini', + 2 => 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form', + 3 => 'The uploaded file was only partially uploaded', + 4 => 'No file was uploaded', + 6 => 'Missing a temporary folder', + 7 => 'Failed to write file to disk', + 8 => 'A PHP extension stopped the file upload', + 'post_max_size' => 'The uploaded file exceeds the post_max_size directive in php.ini', + 'max_file_size' => 'File is too big', + 'min_file_size' => 'File is too small', + 'accept_file_types' => 'Filetype not allowed', + 'max_number_of_files' => 'Maximum number of files exceeded', + 'max_width' => 'Image exceeds maximum width', + 'min_width' => 'Image requires a minimum width', + 'max_height' => 'Image exceeds maximum height', + 'min_height' => 'Image requires a minimum height', + 'abort' => 'File upload aborted', + 'image_resize' => 'Failed to resize image' + ); + + protected $image_objects = array(); + + function __construct($options = null, $initialize = true, $error_messages = null) { + $this->response = array(); + $this->options = array( + 'script_url' => $this->get_full_url().'/'.basename($this->get_server_var('SCRIPT_NAME')), + 'upload_dir' => dirname($this->get_server_var('SCRIPT_FILENAME')).'/files/', + 'upload_url' => $this->get_full_url().'/files/', + 'user_dirs' => false, + 'mkdir_mode' => 0755, + 'param_name' => 'files', + // Set the following option to 'POST', if your server does not support + // DELETE requests. This is a parameter sent to the client: + 'delete_type' => 'DELETE', + 'access_control_allow_origin' => '*', + 'access_control_allow_credentials' => false, + 'access_control_allow_methods' => array( + 'OPTIONS', + 'HEAD', + 'GET', + 'POST', + 'PUT', + 'PATCH', + 'DELETE' + ), + 'access_control_allow_headers' => array( + 'Content-Type', + 'Content-Range', + 'Content-Disposition' + ), + // By default, allow redirects to the referer protocol+host: + 'redirect_allow_target' => '/^'.preg_quote( + parse_url($this->get_server_var('HTTP_REFERER'), PHP_URL_SCHEME) + .'://' + .parse_url($this->get_server_var('HTTP_REFERER'), PHP_URL_HOST) + .'/', // Trailing slash to not match subdomains by mistake + '/' // preg_quote delimiter param + ).'/', + // Enable to provide file downloads via GET requests to the PHP script: + // 1. Set to 1 to download files via readfile method through PHP + // 2. Set to 2 to send a X-Sendfile header for lighttpd/Apache + // 3. Set to 3 to send a X-Accel-Redirect header for nginx + // If set to 2 or 3, adjust the upload_url option to the base path of + // the redirect parameter, e.g. '/files/'. + 'download_via_php' => false, + // Read files in chunks to avoid memory limits when download_via_php + // is enabled, set to 0 to disable chunked reading of files: + 'readfile_chunk_size' => 10 * 1024 * 1024, // 10 MiB + // Defines which files can be displayed inline when downloaded: + 'inline_file_types' => '/\.(gif|jpe?g|png)$/i', + // Defines which files (based on their names) are accepted for upload: + 'accept_file_types' => '/.+$/i', + // The php.ini settings upload_max_filesize and post_max_size + // take precedence over the following max_file_size setting: + 'max_file_size' => null, + 'min_file_size' => 1, + // The maximum number of files for the upload directory: + 'max_number_of_files' => null, + // Defines which files are handled as image files: + 'image_file_types' => '/\.(gif|jpe?g|png)$/i', + // Use exif_imagetype on all files to correct file extensions: + 'correct_image_extensions' => false, + // Image resolution restrictions: + 'max_width' => null, + 'max_height' => null, + 'min_width' => 1, + 'min_height' => 1, + // Set the following option to false to enable resumable uploads: + 'discard_aborted_uploads' => true, + // Set to 0 to use the GD library to scale and orient images, + // set to 1 to use imagick (if installed, falls back to GD), + // set to 2 to use the ImageMagick convert binary directly: + 'image_library' => 1, + // Uncomment the following to define an array of resource limits + // for imagick: + /* + 'imagick_resource_limits' => array( + imagick::RESOURCETYPE_MAP => 32, + imagick::RESOURCETYPE_MEMORY => 32 + ), + */ + // Command or path for to the ImageMagick convert binary: + 'convert_bin' => 'convert', + // Uncomment the following to add parameters in front of each + // ImageMagick convert call (the limit constraints seem only + // to have an effect if put in front): + /* + 'convert_params' => '-limit memory 32MiB -limit map 32MiB', + */ + // Command or path for to the ImageMagick identify binary: + 'identify_bin' => 'identify', + 'image_versions' => array( + // The empty image version key defines options for the original image: + '' => array( + // Automatically rotate images based on EXIF meta data: + 'auto_orient' => true + ), + // Uncomment the following to create medium sized images: + /* + 'medium' => array( + 'max_width' => 800, + 'max_height' => 600 + ), + */ + 'thumbnail' => array( + // Uncomment the following to use a defined directory for the thumbnails + // instead of a subdirectory based on the version identifier. + // Make sure that this directory doesn't allow execution of files if you + // don't pose any restrictions on the type of uploaded files, e.g. by + // copying the .htaccess file from the files directory for Apache: + //'upload_dir' => dirname($this->get_server_var('SCRIPT_FILENAME')).'/thumb/', + //'upload_url' => $this->get_full_url().'/thumb/', + // Uncomment the following to force the max + // dimensions and e.g. create square thumbnails: + //'crop' => true, + 'max_width' => 80, + 'max_height' => 80 + ) + ), + 'print_response' => true + ); + if ($options) { + $this->options = $options + $this->options; + } + if ($error_messages) { + $this->error_messages = $error_messages + $this->error_messages; + } + if ($initialize) { + $this->initialize(); + } + } + + protected function initialize() { + switch ($this->get_server_var('REQUEST_METHOD')) { + case 'OPTIONS': + case 'HEAD': + $this->head(); + break; + case 'GET': + $this->get($this->options['print_response']); + break; + case 'PATCH': + case 'PUT': + case 'POST': + $this->post($this->options['print_response']); + break; + case 'DELETE': + $this->delete($this->options['print_response']); + break; + default: + $this->header('HTTP/1.1 405 Method Not Allowed'); + } + } + + protected function get_full_url() { + $https = !empty($_SERVER['HTTPS']) && strcasecmp($_SERVER['HTTPS'], 'on') === 0 || + !empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && + strcasecmp($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') === 0; + return + ($https ? 'https://' : 'http://'). + (!empty($_SERVER['REMOTE_USER']) ? $_SERVER['REMOTE_USER'].'@' : ''). + (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ($_SERVER['SERVER_NAME']. + ($https && $_SERVER['SERVER_PORT'] === 443 || + $_SERVER['SERVER_PORT'] === 80 ? '' : ':'.$_SERVER['SERVER_PORT']))). + substr($_SERVER['SCRIPT_NAME'],0, strrpos($_SERVER['SCRIPT_NAME'], '/')); + } + + protected function get_user_id() { + @session_start(); + return session_id(); + } + + protected function get_user_path() { + if ($this->options['user_dirs']) { + return $this->get_user_id().'/'; + } + return ''; + } + + protected function get_upload_path($file_name = null, $version = null) { + $file_name = $file_name ? $file_name : ''; + if (empty($version)) { + $version_path = ''; + } else { + $version_dir = @$this->options['image_versions'][$version]['upload_dir']; + if ($version_dir) { + return $version_dir.$this->get_user_path().$file_name; + } + $version_path = $version.'/'; + } + return $this->options['upload_dir'].$this->get_user_path() + .$version_path.$file_name; + } + + protected function get_query_separator($url) { + return strpos($url, '?') === false ? '?' : '&'; + } + + protected function get_download_url($file_name, $version = null, $direct = false) { + if (!$direct && $this->options['download_via_php']) { + $url = $this->options['script_url'] + .$this->get_query_separator($this->options['script_url']) + .$this->get_singular_param_name() + .'='.rawurlencode($file_name); + if ($version) { + $url .= '&version='.rawurlencode($version); + } + return $url.'&download=1'; + } + if (empty($version)) { + $version_path = ''; + } else { + $version_url = @$this->options['image_versions'][$version]['upload_url']; + if ($version_url) { + return $version_url.$this->get_user_path().rawurlencode($file_name); + } + $version_path = rawurlencode($version).'/'; + } + return $this->options['upload_url'].$this->get_user_path() + .$version_path.rawurlencode($file_name); + } + + protected function set_additional_file_properties($file) { + $file->deleteUrl = $this->options['script_url'] + .$this->get_query_separator($this->options['script_url']) + .$this->get_singular_param_name() + .'='.rawurlencode($file->name); + $file->deleteType = $this->options['delete_type']; + if ($file->deleteType !== 'DELETE') { + $file->deleteUrl .= '&_method=DELETE'; + } + if ($this->options['access_control_allow_credentials']) { + $file->deleteWithCredentials = true; + } + } + + // Fix for overflowing signed 32 bit integers, + // works for sizes up to 2^32-1 bytes (4 GiB - 1): + protected function fix_integer_overflow($size) { + if ($size < 0) { + $size += 2.0 * (PHP_INT_MAX + 1); + } + return $size; + } + + protected function get_file_size($file_path, $clear_stat_cache = false) { + if ($clear_stat_cache) { + if (version_compare(PHP_VERSION, '5.3.0') >= 0) { + clearstatcache(true, $file_path); + } else { + clearstatcache(); + } + } + return $this->fix_integer_overflow(filesize($file_path)); + } + + protected function is_valid_file_object($file_name) { + $file_path = $this->get_upload_path($file_name); + if (is_file($file_path) && $file_name[0] !== '.') { + return true; + } + return false; + } + + protected function get_file_object($file_name) { + if ($this->is_valid_file_object($file_name)) { + $file = new \stdClass(); + $file->name = $file_name; + $file->size = $this->get_file_size( + $this->get_upload_path($file_name) + ); + $file->url = $this->get_download_url($file->name); + foreach($this->options['image_versions'] as $version => $options) { + if (!empty($version)) { + if (is_file($this->get_upload_path($file_name, $version))) { + $file->{$version.'Url'} = $this->get_download_url( + $file->name, + $version + ); + } + } + } + $this->set_additional_file_properties($file); + return $file; + } + return null; + } + + protected function get_file_objects($iteration_method = 'get_file_object') { + $upload_dir = $this->get_upload_path(); + if (!is_dir($upload_dir)) { + return array(); + } + return array_values(array_filter(array_map( + array($this, $iteration_method), + scandir($upload_dir) + ))); + } + + protected function count_file_objects() { + return count($this->get_file_objects('is_valid_file_object')); + } + + protected function get_error_message($error) { + return isset($this->error_messages[$error]) ? + $this->error_messages[$error] : $error; + } + + function get_config_bytes($val) { + $val = trim($val); + $last = strtolower($val[strlen($val)-1]); + switch($last) { + case 'g': + $val *= 1024; + case 'm': + $val *= 1024; + case 'k': + $val *= 1024; + } + return $this->fix_integer_overflow($val); + } + + protected function validate($uploaded_file, $file, $error, $index) { + if ($error) { + $file->error = $this->get_error_message($error); + return false; + } + $content_length = $this->fix_integer_overflow( + (int)$this->get_server_var('CONTENT_LENGTH') + ); + $post_max_size = $this->get_config_bytes(ini_get('post_max_size')); + if ($post_max_size && ($content_length > $post_max_size)) { + $file->error = $this->get_error_message('post_max_size'); + return false; + } + if (!preg_match($this->options['accept_file_types'], $file->name)) { + $file->error = $this->get_error_message('accept_file_types'); + return false; + } + if ($uploaded_file && is_uploaded_file($uploaded_file)) { + $file_size = $this->get_file_size($uploaded_file); + } else { + $file_size = $content_length; + } + if ($this->options['max_file_size'] && ( + $file_size > $this->options['max_file_size'] || + $file->size > $this->options['max_file_size']) + ) { + $file->error = $this->get_error_message('max_file_size'); + return false; + } + if ($this->options['min_file_size'] && + $file_size < $this->options['min_file_size']) { + $file->error = $this->get_error_message('min_file_size'); + return false; + } + if (is_int($this->options['max_number_of_files']) && + ($this->count_file_objects() >= $this->options['max_number_of_files']) && + // Ignore additional chunks of existing files: + !is_file($this->get_upload_path($file->name))) { + $file->error = $this->get_error_message('max_number_of_files'); + return false; + } + $max_width = @$this->options['max_width']; + $max_height = @$this->options['max_height']; + $min_width = @$this->options['min_width']; + $min_height = @$this->options['min_height']; + if (($max_width || $max_height || $min_width || $min_height) + && preg_match($this->options['image_file_types'], $file->name)) { + list($img_width, $img_height) = $this->get_image_size($uploaded_file); + + // If we are auto rotating the image by default, do the checks on + // the correct orientation + if ( + @$this->options['image_versions']['']['auto_orient'] && + function_exists('exif_read_data') && + ($exif = @exif_read_data($uploaded_file)) && + (((int) @$exif['Orientation']) >= 5 ) + ) { + $tmp = $img_width; + $img_width = $img_height; + $img_height = $tmp; + unset($tmp); + } + + } + if (!empty($img_width)) { + if ($max_width && $img_width > $max_width) { + $file->error = $this->get_error_message('max_width'); + return false; + } + if ($max_height && $img_height > $max_height) { + $file->error = $this->get_error_message('max_height'); + return false; + } + if ($min_width && $img_width < $min_width) { + $file->error = $this->get_error_message('min_width'); + return false; + } + if ($min_height && $img_height < $min_height) { + $file->error = $this->get_error_message('min_height'); + return false; + } + } + return true; + } + + protected function upcount_name_callback($matches) { + $index = isset($matches[1]) ? ((int)$matches[1]) + 1 : 1; + $ext = isset($matches[2]) ? $matches[2] : ''; + return ' ('.$index.')'.$ext; + } + + protected function upcount_name($name) { + return preg_replace_callback( + '/(?:(?: \(([\d]+)\))?(\.[^.]+))?$/', + array($this, 'upcount_name_callback'), + $name, + 1 + ); + } + + protected function get_unique_filename($file_path, $name, $size, $type, $error, + $index, $content_range) { + while(is_dir($this->get_upload_path($name))) { + $name = $this->upcount_name($name); + } + // Keep an existing filename if this is part of a chunked upload: + $uploaded_bytes = $this->fix_integer_overflow((int)$content_range[1]); + while(is_file($this->get_upload_path($name))) { + if ($uploaded_bytes === $this->get_file_size( + $this->get_upload_path($name))) { + break; + } + $name = $this->upcount_name($name); + } + return $name; + } + + protected function fix_file_extension($file_path, $name, $size, $type, $error, + $index, $content_range) { + // Add missing file extension for known image types: + if (strpos($name, '.') === false && + preg_match('/^image\/(gif|jpe?g|png)/', $type, $matches)) { + $name .= '.'.$matches[1]; + } + if ($this->options['correct_image_extensions'] && + function_exists('exif_imagetype')) { + switch(@exif_imagetype($file_path)){ + case IMAGETYPE_JPEG: + $extensions = array('jpg', 'jpeg'); + break; + case IMAGETYPE_PNG: + $extensions = array('png'); + break; + case IMAGETYPE_GIF: + $extensions = array('gif'); + break; + } + // Adjust incorrect image file extensions: + if (!empty($extensions)) { + $parts = explode('.', $name); + $extIndex = count($parts) - 1; + $ext = strtolower(@$parts[$extIndex]); + if (!in_array($ext, $extensions)) { + $parts[$extIndex] = $extensions[0]; + $name = implode('.', $parts); + } + } + } + return $name; + } + + protected function trim_file_name($file_path, $name, $size, $type, $error, + $index, $content_range) { + // Remove path information and dots around the filename, to prevent uploading + // into different directories or replacing hidden system files. + // Also remove control characters and spaces (\x00..\x20) around the filename: + $name = trim(basename(stripslashes($name)), ".\x00..\x20"); + // Use a timestamp for empty filenames: + if (!$name) { + $name = str_replace('.', '-', microtime(true)); + } + return $name; + } + + protected function get_file_name($file_path, $name, $size, $type, $error, + $index, $content_range) { + $name = $this->trim_file_name($file_path, $name, $size, $type, $error, + $index, $content_range); + return $this->get_unique_filename( + $file_path, + $this->fix_file_extension($file_path, $name, $size, $type, $error, + $index, $content_range), + $size, + $type, + $error, + $index, + $content_range + ); + } + + protected function get_scaled_image_file_paths($file_name, $version) { + $file_path = $this->get_upload_path($file_name); + if (!empty($version)) { + $version_dir = $this->get_upload_path(null, $version); + if (!is_dir($version_dir)) { + mkdir($version_dir, $this->options['mkdir_mode'], true); + } + $new_file_path = $version_dir.'/'.$file_name; + } else { + $new_file_path = $file_path; + } + return array($file_path, $new_file_path); + } + + protected function gd_get_image_object($file_path, $func, $no_cache = false) { + if (empty($this->image_objects[$file_path]) || $no_cache) { + $this->gd_destroy_image_object($file_path); + $this->image_objects[$file_path] = $func($file_path); + } + return $this->image_objects[$file_path]; + } + + protected function gd_set_image_object($file_path, $image) { + $this->gd_destroy_image_object($file_path); + $this->image_objects[$file_path] = $image; + } + + protected function gd_destroy_image_object($file_path) { + $image = (isset($this->image_objects[$file_path])) ? $this->image_objects[$file_path] : null ; + return $image && imagedestroy($image); + } + + protected function gd_imageflip($image, $mode) { + if (function_exists('imageflip')) { + return imageflip($image, $mode); + } + $new_width = $src_width = imagesx($image); + $new_height = $src_height = imagesy($image); + $new_img = imagecreatetruecolor($new_width, $new_height); + $src_x = 0; + $src_y = 0; + switch ($mode) { + case '1': // flip on the horizontal axis + $src_y = $new_height - 1; + $src_height = -$new_height; + break; + case '2': // flip on the vertical axis + $src_x = $new_width - 1; + $src_width = -$new_width; + break; + case '3': // flip on both axes + $src_y = $new_height - 1; + $src_height = -$new_height; + $src_x = $new_width - 1; + $src_width = -$new_width; + break; + default: + return $image; + } + imagecopyresampled( + $new_img, + $image, + 0, + 0, + $src_x, + $src_y, + $new_width, + $new_height, + $src_width, + $src_height + ); + return $new_img; + } + + protected function gd_orient_image($file_path, $src_img) { + if (!function_exists('exif_read_data')) { + return false; + } + $exif = @exif_read_data($file_path); + if ($exif === false) { + return false; + } + $orientation = (int)@$exif['Orientation']; + if ($orientation < 2 || $orientation > 8) { + return false; + } + switch ($orientation) { + case 2: + $new_img = $this->gd_imageflip( + $src_img, + defined('IMG_FLIP_VERTICAL') ? IMG_FLIP_VERTICAL : 2 + ); + break; + case 3: + $new_img = imagerotate($src_img, 180, 0); + break; + case 4: + $new_img = $this->gd_imageflip( + $src_img, + defined('IMG_FLIP_HORIZONTAL') ? IMG_FLIP_HORIZONTAL : 1 + ); + break; + case 5: + $tmp_img = $this->gd_imageflip( + $src_img, + defined('IMG_FLIP_HORIZONTAL') ? IMG_FLIP_HORIZONTAL : 1 + ); + $new_img = imagerotate($tmp_img, 270, 0); + imagedestroy($tmp_img); + break; + case 6: + $new_img = imagerotate($src_img, 270, 0); + break; + case 7: + $tmp_img = $this->gd_imageflip( + $src_img, + defined('IMG_FLIP_VERTICAL') ? IMG_FLIP_VERTICAL : 2 + ); + $new_img = imagerotate($tmp_img, 270, 0); + imagedestroy($tmp_img); + break; + case 8: + $new_img = imagerotate($src_img, 90, 0); + break; + default: + return false; + } + $this->gd_set_image_object($file_path, $new_img); + return true; + } + + protected function gd_create_scaled_image($file_name, $version, $options) { + if (!function_exists('imagecreatetruecolor')) { + error_log('Function not found: imagecreatetruecolor'); + return false; + } + list($file_path, $new_file_path) = + $this->get_scaled_image_file_paths($file_name, $version); + $type = strtolower(substr(strrchr($file_name, '.'), 1)); + switch ($type) { + case 'jpg': + case 'jpeg': + $src_func = 'imagecreatefromjpeg'; + $write_func = 'imagejpeg'; + $image_quality = isset($options['jpeg_quality']) ? + $options['jpeg_quality'] : 75; + break; + case 'gif': + $src_func = 'imagecreatefromgif'; + $write_func = 'imagegif'; + $image_quality = null; + break; + case 'png': + $src_func = 'imagecreatefrompng'; + $write_func = 'imagepng'; + $image_quality = isset($options['png_quality']) ? + $options['png_quality'] : 9; + break; + default: + return false; + } + $src_img = $this->gd_get_image_object( + $file_path, + $src_func, + !empty($options['no_cache']) + ); + $image_oriented = false; + if (!empty($options['auto_orient']) && $this->gd_orient_image( + $file_path, + $src_img + )) { + $image_oriented = true; + $src_img = $this->gd_get_image_object( + $file_path, + $src_func + ); + } + $max_width = $img_width = imagesx($src_img); + $max_height = $img_height = imagesy($src_img); + if (!empty($options['max_width'])) { + $max_width = $options['max_width']; + } + if (!empty($options['max_height'])) { + $max_height = $options['max_height']; + } + $scale = min( + $max_width / $img_width, + $max_height / $img_height + ); + if ($scale >= 1) { + if ($image_oriented) { + return $write_func($src_img, $new_file_path, $image_quality); + } + if ($file_path !== $new_file_path) { + return copy($file_path, $new_file_path); + } + return true; + } + if (empty($options['crop'])) { + $new_width = $img_width * $scale; + $new_height = $img_height * $scale; + $dst_x = 0; + $dst_y = 0; + $new_img = imagecreatetruecolor($new_width, $new_height); + } else { + if (($img_width / $img_height) >= ($max_width / $max_height)) { + $new_width = $img_width / ($img_height / $max_height); + $new_height = $max_height; + } else { + $new_width = $max_width; + $new_height = $img_height / ($img_width / $max_width); + } + $dst_x = 0 - ($new_width - $max_width) / 2; + $dst_y = 0 - ($new_height - $max_height) / 2; + $new_img = imagecreatetruecolor($max_width, $max_height); + } + // Handle transparency in GIF and PNG images: + switch ($type) { + case 'gif': + case 'png': + imagecolortransparent($new_img, imagecolorallocate($new_img, 0, 0, 0)); + case 'png': + imagealphablending($new_img, false); + imagesavealpha($new_img, true); + break; + } + $success = imagecopyresampled( + $new_img, + $src_img, + $dst_x, + $dst_y, + 0, + 0, + $new_width, + $new_height, + $img_width, + $img_height + ) && $write_func($new_img, $new_file_path, $image_quality); + $this->gd_set_image_object($file_path, $new_img); + return $success; + } + + protected function imagick_get_image_object($file_path, $no_cache = false) { + if (empty($this->image_objects[$file_path]) || $no_cache) { + $this->imagick_destroy_image_object($file_path); + $image = new \Imagick(); + if (!empty($this->options['imagick_resource_limits'])) { + foreach ($this->options['imagick_resource_limits'] as $type => $limit) { + $image->setResourceLimit($type, $limit); + } + } + $image->readImage($file_path); + $this->image_objects[$file_path] = $image; + } + return $this->image_objects[$file_path]; + } + + protected function imagick_set_image_object($file_path, $image) { + $this->imagick_destroy_image_object($file_path); + $this->image_objects[$file_path] = $image; + } + + protected function imagick_destroy_image_object($file_path) { + $image = (isset($this->image_objects[$file_path])) ? $this->image_objects[$file_path] : null ; + return $image && $image->destroy(); + } + + protected function imagick_orient_image($image) { + $orientation = $image->getImageOrientation(); + $background = new \ImagickPixel('none'); + switch ($orientation) { + case \imagick::ORIENTATION_TOPRIGHT: // 2 + $image->flopImage(); // horizontal flop around y-axis + break; + case \imagick::ORIENTATION_BOTTOMRIGHT: // 3 + $image->rotateImage($background, 180); + break; + case \imagick::ORIENTATION_BOTTOMLEFT: // 4 + $image->flipImage(); // vertical flip around x-axis + break; + case \imagick::ORIENTATION_LEFTTOP: // 5 + $image->flopImage(); // horizontal flop around y-axis + $image->rotateImage($background, 270); + break; + case \imagick::ORIENTATION_RIGHTTOP: // 6 + $image->rotateImage($background, 90); + break; + case \imagick::ORIENTATION_RIGHTBOTTOM: // 7 + $image->flipImage(); // vertical flip around x-axis + $image->rotateImage($background, 270); + break; + case \imagick::ORIENTATION_LEFTBOTTOM: // 8 + $image->rotateImage($background, 270); + break; + default: + return false; + } + $image->setImageOrientation(\imagick::ORIENTATION_TOPLEFT); // 1 + return true; + } + + protected function imagick_create_scaled_image($file_name, $version, $options) { + list($file_path, $new_file_path) = + $this->get_scaled_image_file_paths($file_name, $version); + $image = $this->imagick_get_image_object( + $file_path, + !empty($options['crop']) || !empty($options['no_cache']) + ); + if ($image->getImageFormat() === 'GIF') { + // Handle animated GIFs: + $images = $image->coalesceImages(); + foreach ($images as $frame) { + $image = $frame; + $this->imagick_set_image_object($file_name, $image); + break; + } + } + $image_oriented = false; + if (!empty($options['auto_orient'])) { + $image_oriented = $this->imagick_orient_image($image); + } + $new_width = $max_width = $img_width = $image->getImageWidth(); + $new_height = $max_height = $img_height = $image->getImageHeight(); + if (!empty($options['max_width'])) { + $new_width = $max_width = $options['max_width']; + } + if (!empty($options['max_height'])) { + $new_height = $max_height = $options['max_height']; + } + if (!($image_oriented || $max_width < $img_width || $max_height < $img_height)) { + if ($file_path !== $new_file_path) { + return copy($file_path, $new_file_path); + } + return true; + } + $crop = !empty($options['crop']); + if ($crop) { + $x = 0; + $y = 0; + if (($img_width / $img_height) >= ($max_width / $max_height)) { + $new_width = 0; // Enables proportional scaling based on max_height + $x = ($img_width / ($img_height / $max_height) - $max_width) / 2; + } else { + $new_height = 0; // Enables proportional scaling based on max_width + $y = ($img_height / ($img_width / $max_width) - $max_height) / 2; + } + } + $success = $image->resizeImage( + $new_width, + $new_height, + isset($options['filter']) ? $options['filter'] : \imagick::FILTER_LANCZOS, + isset($options['blur']) ? $options['blur'] : 1, + $new_width && $new_height // fit image into constraints if not to be cropped + ); + if ($success && $crop) { + $success = $image->cropImage( + $max_width, + $max_height, + $x, + $y + ); + if ($success) { + $success = $image->setImagePage($max_width, $max_height, 0, 0); + } + } + $type = strtolower(substr(strrchr($file_name, '.'), 1)); + switch ($type) { + case 'jpg': + case 'jpeg': + if (!empty($options['jpeg_quality'])) { + $image->setImageCompression(\imagick::COMPRESSION_JPEG); + $image->setImageCompressionQuality($options['jpeg_quality']); + } + break; + } + if (!empty($options['strip'])) { + $image->stripImage(); + } + return $success && $image->writeImage($new_file_path); + } + + protected function imagemagick_create_scaled_image($file_name, $version, $options) { + list($file_path, $new_file_path) = + $this->get_scaled_image_file_paths($file_name, $version); + $resize = @$options['max_width'] + .(empty($options['max_height']) ? '' : 'X'.$options['max_height']); + if (!$resize && empty($options['auto_orient'])) { + if ($file_path !== $new_file_path) { + return copy($file_path, $new_file_path); + } + return true; + } + $cmd = $this->options['convert_bin']; + if (!empty($this->options['convert_params'])) { + $cmd .= ' '.$this->options['convert_params']; + } + $cmd .= ' '.escapeshellarg($file_path); + if (!empty($options['auto_orient'])) { + $cmd .= ' -auto-orient'; + } + if ($resize) { + // Handle animated GIFs: + $cmd .= ' -coalesce'; + if (empty($options['crop'])) { + $cmd .= ' -resize '.escapeshellarg($resize.'>'); + } else { + $cmd .= ' -resize '.escapeshellarg($resize.'^'); + $cmd .= ' -gravity center'; + $cmd .= ' -crop '.escapeshellarg($resize.'+0+0'); + } + // Make sure the page dimensions are correct (fixes offsets of animated GIFs): + $cmd .= ' +repage'; + } + if (!empty($options['convert_params'])) { + $cmd .= ' '.$options['convert_params']; + } + $cmd .= ' '.escapeshellarg($new_file_path); + exec($cmd, $output, $error); + if ($error) { + error_log(implode('\n', $output)); + return false; + } + return true; + } + + protected function get_image_size($file_path) { + if ($this->options['image_library']) { + if (extension_loaded('imagick')) { + $image = new \Imagick(); + try { + if (@$image->pingImage($file_path)) { + $dimensions = array($image->getImageWidth(), $image->getImageHeight()); + $image->destroy(); + return $dimensions; + } + return false; + } catch (\Exception $e) { + error_log($e->getMessage()); + } + } + if ($this->options['image_library'] === 2) { + $cmd = $this->options['identify_bin']; + $cmd .= ' -ping '.escapeshellarg($file_path); + exec($cmd, $output, $error); + if (!$error && !empty($output)) { + // image.jpg JPEG 1920x1080 1920x1080+0+0 8-bit sRGB 465KB 0.000u 0:00.000 + $infos = preg_split('/\s+/', substr($output[0], strlen($file_path))); + $dimensions = preg_split('/x/', $infos[2]); + return $dimensions; + } + return false; + } + } + if (!function_exists('getimagesize')) { + error_log('Function not found: getimagesize'); + return false; + } + return @getimagesize($file_path); + } + + protected function create_scaled_image($file_name, $version, $options) { + if ($this->options['image_library'] === 2) { + return $this->imagemagick_create_scaled_image($file_name, $version, $options); + } + if ($this->options['image_library'] && extension_loaded('imagick')) { + return $this->imagick_create_scaled_image($file_name, $version, $options); + } + return $this->gd_create_scaled_image($file_name, $version, $options); + } + + protected function destroy_image_object($file_path) { + if ($this->options['image_library'] && extension_loaded('imagick')) { + return $this->imagick_destroy_image_object($file_path); + } + } + + protected function is_valid_image_file($file_path) { + if (!preg_match($this->options['image_file_types'], $file_path)) { + return false; + } + if (function_exists('exif_imagetype')) { + return @exif_imagetype($file_path); + } + $image_info = $this->get_image_size($file_path); + return $image_info && $image_info[0] && $image_info[1]; + } + + protected function handle_image_file($file_path, $file) { + $failed_versions = array(); + foreach($this->options['image_versions'] as $version => $options) { + if ($this->create_scaled_image($file->name, $version, $options)) { + if (!empty($version)) { + $file->{$version.'Url'} = $this->get_download_url( + $file->name, + $version + ); + } else { + $file->size = $this->get_file_size($file_path, true); + } + } else { + $failed_versions[] = $version ? $version : 'original'; + } + } + if (count($failed_versions)) { + $file->error = $this->get_error_message('image_resize') + .' ('.implode($failed_versions,', ').')'; + } + // Free memory: + $this->destroy_image_object($file_path); + } + + protected function handle_file_upload($uploaded_file, $name, $size, $type, $error, + $index = null, $content_range = null) { + $file = new \stdClass(); + $file->name = $this->get_file_name($uploaded_file, $name, $size, $type, $error, + $index, $content_range); + $file->size = $this->fix_integer_overflow((int)$size); + $file->type = $type; + if ($this->validate($uploaded_file, $file, $error, $index)) { + $this->handle_form_data($file, $index); + $upload_dir = $this->get_upload_path(); + if (!is_dir($upload_dir)) { + mkdir($upload_dir, $this->options['mkdir_mode'], true); + } + $file_path = $this->get_upload_path($file->name); + $append_file = $content_range && is_file($file_path) && + $file->size > $this->get_file_size($file_path); + if ($uploaded_file && is_uploaded_file($uploaded_file)) { + // multipart/formdata uploads (POST method uploads) + if ($append_file) { + file_put_contents( + $file_path, + fopen($uploaded_file, 'r'), + FILE_APPEND + ); + } else { + move_uploaded_file($uploaded_file, $file_path); + } + } else { + // Non-multipart uploads (PUT method support) + file_put_contents( + $file_path, + fopen('php://input', 'r'), + $append_file ? FILE_APPEND : 0 + ); + } + $file_size = $this->get_file_size($file_path, $append_file); + if ($file_size === $file->size) { + $file->url = $this->get_download_url($file->name); + if ($this->is_valid_image_file($file_path)) { + $this->handle_image_file($file_path, $file); + } + } else { + $file->size = $file_size; + if (!$content_range && $this->options['discard_aborted_uploads']) { + unlink($file_path); + $file->error = $this->get_error_message('abort'); + } + } + $this->set_additional_file_properties($file); + } + return $file; + } + + protected function readfile($file_path) { + $file_size = $this->get_file_size($file_path); + $chunk_size = $this->options['readfile_chunk_size']; + if ($chunk_size && $file_size > $chunk_size) { + $handle = fopen($file_path, 'rb'); + while (!feof($handle)) { + echo fread($handle, $chunk_size); + @ob_flush(); + @flush(); + } + fclose($handle); + return $file_size; + } + return readfile($file_path); + } + + protected function body($str) { + echo $str; + } + + protected function header($str) { + header($str); + } + + protected function get_upload_data($id) { + return @$_FILES[$id]; + } + + protected function get_post_param($id) { + return @$_POST[$id]; + } + + protected function get_query_param($id) { + return @$_GET[$id]; + } + + protected function get_server_var($id) { + return @$_SERVER[$id]; + } + + protected function handle_form_data($file, $index) { + // Handle form data, e.g. $_POST['description'][$index] + } + + protected function get_version_param() { + return basename(stripslashes($this->get_query_param('version'))); + } + + protected function get_singular_param_name() { + return substr($this->options['param_name'], 0, -1); + } + + protected function get_file_name_param() { + $name = $this->get_singular_param_name(); + return basename(stripslashes($this->get_query_param($name))); + } + + protected function get_file_names_params() { + $params = $this->get_query_param($this->options['param_name']); + if (!$params) { + return null; + } + foreach ($params as $key => $value) { + $params[$key] = basename(stripslashes($value)); + } + return $params; + } + + protected function get_file_type($file_path) { + switch (strtolower(pathinfo($file_path, PATHINFO_EXTENSION))) { + case 'jpeg': + case 'jpg': + return 'image/jpeg'; + case 'png': + return 'image/png'; + case 'gif': + return 'image/gif'; + default: + return ''; + } + } + + protected function download() { + switch ($this->options['download_via_php']) { + case 1: + $redirect_header = null; + break; + case 2: + $redirect_header = 'X-Sendfile'; + break; + case 3: + $redirect_header = 'X-Accel-Redirect'; + break; + default: + return $this->header('HTTP/1.1 403 Forbidden'); + } + $file_name = $this->get_file_name_param(); + if (!$this->is_valid_file_object($file_name)) { + return $this->header('HTTP/1.1 404 Not Found'); + } + if ($redirect_header) { + return $this->header( + $redirect_header.': '.$this->get_download_url( + $file_name, + $this->get_version_param(), + true + ) + ); + } + $file_path = $this->get_upload_path($file_name, $this->get_version_param()); + // Prevent browsers from MIME-sniffing the content-type: + $this->header('X-Content-Type-Options: nosniff'); + if (!preg_match($this->options['inline_file_types'], $file_name)) { + $this->header('Content-Type: application/octet-stream'); + $this->header('Content-Disposition: attachment; filename="'.$file_name.'"'); + } else { + $this->header('Content-Type: '.$this->get_file_type($file_path)); + $this->header('Content-Disposition: inline; filename="'.$file_name.'"'); + } + $this->header('Content-Length: '.$this->get_file_size($file_path)); + $this->header('Last-Modified: '.gmdate('D, d M Y H:i:s T', filemtime($file_path))); + $this->readfile($file_path); + } + + protected function send_content_type_header() { + $this->header('Vary: Accept'); + if (strpos($this->get_server_var('HTTP_ACCEPT'), 'application/json') !== false) { + $this->header('Content-type: application/json'); + } else { + $this->header('Content-type: text/plain'); + } + } + + protected function send_access_control_headers() { + $this->header('Access-Control-Allow-Origin: '.$this->options['access_control_allow_origin']); + $this->header('Access-Control-Allow-Credentials: ' + .($this->options['access_control_allow_credentials'] ? 'true' : 'false')); + $this->header('Access-Control-Allow-Methods: ' + .implode(', ', $this->options['access_control_allow_methods'])); + $this->header('Access-Control-Allow-Headers: ' + .implode(', ', $this->options['access_control_allow_headers'])); + } + + public function generate_response($content, $print_response = true) { + $this->response = $content; + if ($print_response) { + $json = json_encode($content); + $redirect = stripslashes($this->get_post_param('redirect')); + if ($redirect && preg_match($this->options['redirect_allow_target'], $redirect)) { + $this->header('Location: '.sprintf($redirect, rawurlencode($json))); + return; + } + $this->head(); + if ($this->get_server_var('HTTP_CONTENT_RANGE')) { + $files = isset($content[$this->options['param_name']]) ? + $content[$this->options['param_name']] : null; + if ($files && is_array($files) && is_object($files[0]) && $files[0]->size) { + $this->header('Range: 0-'.( + $this->fix_integer_overflow((int)$files[0]->size) - 1 + )); + } + } + $this->body($json); + } + return $content; + } + + public function get_response () { + return $this->response; + } + + public function head() { + $this->header('Pragma: no-cache'); + $this->header('Cache-Control: no-store, no-cache, must-revalidate'); + $this->header('Content-Disposition: inline; filename="files.json"'); + // Prevent Internet Explorer from MIME-sniffing the content-type: + $this->header('X-Content-Type-Options: nosniff'); + if ($this->options['access_control_allow_origin']) { + $this->send_access_control_headers(); + } + $this->send_content_type_header(); + } + + public function get($print_response = true) { + if ($print_response && $this->get_query_param('download')) { + return $this->download(); + } + $file_name = $this->get_file_name_param(); + if ($file_name) { + $response = array( + $this->get_singular_param_name() => $this->get_file_object($file_name) + ); + } else { + $response = array( + $this->options['param_name'] => $this->get_file_objects() + ); + } + return $this->generate_response($response, $print_response); + } + + public function post($print_response = true) { + if ($this->get_query_param('_method') === 'DELETE') { + return $this->delete($print_response); + } + $upload = $this->get_upload_data($this->options['param_name']); + // Parse the Content-Disposition header, if available: + $content_disposition_header = $this->get_server_var('HTTP_CONTENT_DISPOSITION'); + $file_name = $content_disposition_header ? + rawurldecode(preg_replace( + '/(^[^"]+")|("$)/', + '', + $content_disposition_header + )) : null; + // Parse the Content-Range header, which has the following form: + // Content-Range: bytes 0-524287/2000000 + $content_range_header = $this->get_server_var('HTTP_CONTENT_RANGE'); + $content_range = $content_range_header ? + preg_split('/[^0-9]+/', $content_range_header) : null; + $size = $content_range ? $content_range[3] : null; + $files = array(); + if ($upload) { + if (is_array($upload['tmp_name'])) { + // param_name is an array identifier like "files[]", + // $upload is a multi-dimensional array: + foreach ($upload['tmp_name'] as $index => $value) { + $files[] = $this->handle_file_upload( + $upload['tmp_name'][$index], + $file_name ? $file_name : $upload['name'][$index], + $size ? $size : $upload['size'][$index], + $upload['type'][$index], + $upload['error'][$index], + $index, + $content_range + ); + } + } else { + // param_name is a single object identifier like "file", + // $upload is a one-dimensional array: + $files[] = $this->handle_file_upload( + isset($upload['tmp_name']) ? $upload['tmp_name'] : null, + $file_name ? $file_name : (isset($upload['name']) ? + $upload['name'] : null), + $size ? $size : (isset($upload['size']) ? + $upload['size'] : $this->get_server_var('CONTENT_LENGTH')), + isset($upload['type']) ? + $upload['type'] : $this->get_server_var('CONTENT_TYPE'), + isset($upload['error']) ? $upload['error'] : null, + null, + $content_range + ); + } + } + $response = array($this->options['param_name'] => $files); + return $this->generate_response($response, $print_response); + } + + public function delete($print_response = true) { + $file_names = $this->get_file_names_params(); + if (empty($file_names)) { + $file_names = array($this->get_file_name_param()); + } + $response = array(); + foreach($file_names as $file_name) { + $file_path = $this->get_upload_path($file_name); + $success = is_file($file_path) && $file_name[0] !== '.' && unlink($file_path); + if ($success) { + foreach($this->options['image_versions'] as $version => $options) { + if (!empty($version)) { + $file = $this->get_upload_path($file_name, $version); + if (is_file($file)) { + unlink($file); + } + } + } + } + $response[$file_name] = $success; + } + return $this->generate_response($response, $print_response); + } + +} diff --git a/index.php b/index.php index b52ba94..753dcd8 100755 --- a/index.php +++ b/index.php @@ -30,6 +30,9 @@ if($sAction!='') case 'messages': $sResult = $oSpot->getMessages(); break; + case 'upload': + $sResult = $oSpot->upload(); + break; default: $sResult = Spot::getJsonResult(false, Spot::NOT_FOUND); } diff --git a/kml/TrailRegion_7.kml b/kml/TrailRegion_7.kml deleted file mode 100644 index 2df0c20..0000000 --- a/kml/TrailRegion_7.kml +++ /dev/null @@ -1,3275 +0,0 @@ - - - - Te Araroa Trail - - - - Marlborough - - - - TrailRegion_ends - - - Queen Charlotte Track - - - - - - - - - - - - - - -
Queen Charlotte Track
- - - - - - - - - - - - - - - - - - - - - - - - - -
Mark_nameShip Cove
Next_sectionQueen Charlotte Track
urlhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
ET_Node_ID56
kmpost1700
Region7
-
- - -]]>
- #IconStyle140 - - clampToGround - 174.2344946555754,-41.09462683611784,0 - -
- - Anakiwa to Pelorus Bridge - - - - - - - - - - - - - - -
Anakiwa to Pelorus Bridge
- - - - - - - - - - - - - - - - - - - - - - - - - -
Mark_nameEnd of Anakiwa Rd
Next_sectionAnakiwa to Pelorus Bridge
urlhttp://www.teararoa.org.nz/nelsonmarlborough/anakiwa-pelorus-bridge
ET_Node_ID57
kmpost1772.673
Region7
-
- - -]]>
- #IconStyle140 - - clampToGround - 173.8679469476371,-41.2895105279497,0 - -
- - Pelorus River Track - - - - - - - - - - - - - - -
Pelorus River Track
- - - - - - - - - - - - - - - - - - - - - - - - - -
Mark_nameSH6/Maungatapu Rd
Next_sectionPelorus River Track
urlhttp://www.teararoa.org.nz/nelsonmarlborough/pelorus-track
ET_Node_ID58
kmpost1776.704
Region7
-
- - -]]>
- #IconStyle140 - - clampToGround - 173.8223896111255,-41.29270098983097,0 - -
- - Richmond Alpine Track - - - - - - - - - - - - - - -
Richmond Alpine Track
- - - - - - - - - - - - - - - - - - - - - - - - - -
Mark_nameHacket Hut junction
Next_sectionRichmond Alpine Track
urlhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
ET_Node_ID59
kmpost1797.193
Region7
-
- - -]]>
- #IconStyle140 - - clampToGround - 173.6429118014863,-41.28114614685455,0 - -
- - Waiau Pass Track - - - - - - - - - - - - - - -
Waiau Pass Track
- - - - - - - - - - - - - - - - - - - - - - - - - -
Mark_nameSH3 St Arnaud
Next_sectionWaiau Pass Track
urlhttp://www.teararoa.org.nz/nelsonmarlborough/waiau-track
ET_Node_ID60
kmpost1845.487
Region7
-
- - -]]>
- #IconStyle140 - - clampToGround - 173.2879431822765,-41.41107278797628,0 - -
-
- - TrailRegion - - - - Queen Charlotte Ship Cove to Resolution Bay - - - - - - - - - - - - - - -
Queen Charlotte Ship Cove to Resolution Bay
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)3.436
NAMEQueen Charlotte Ship Cove to Resolution Bay
ISLANDSouth
LEGALSTATDOC
TA_NAMEQueen Charlotte Walkway
Fromkm1700.243
Tokm1703.679
categoryWalking Track
CycleCycleway
walkidQueen Charlotte Track
GuidebookNelson Marlborough
colourred
mapNamemap076
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 174.2206407987383,-41.11150276703611,0 174.2206879054371,-41.11129187938438,0 174.2207952785158,-41.11113798665287,0 174.2208688705235,-41.11108526516066,0 174.2210219236336,-41.11107855899549,0 174.221229712438,-41.11098250337133,0 174.2214196451728,-41.11074496046564,0 174.2214336434601,-41.1106487350172,0 174.2214136104954,-41.11058972664692,0 174.2214490662104,-41.11039535005448,0 174.2215009494292,-41.11033013934058,0 174.2216317081359,-41.11025721743833,0 174.2217721045798,-41.11022402380004,0 174.2219585176773,-41.10983979851203,0 174.2221659697986,-41.1098828808194,0 174.222398903531,-41.10985605948135,0 174.2225839756931,-41.10979839133338,0 174.2227048425337,-41.10971155527925,0 174.2228769232998,-41.10974684347331,0 174.2229234427148,-41.1097760951457,0 174.2231285475223,-41.10978489628958,0 174.2232075887746,-41.10981842443262,0 174.2233579614106,-41.10980953942952,0 174.2234342356899,-41.10972404451366,0 174.2234940830969,-41.1095282426308,0 174.2237465461586,-41.10917871712708,0 174.2237594541186,-41.1090351346222,0 174.2238068946295,-41.10890588597253,0 174.2239456994337,-41.10878669575032,0 174.2240367269752,-41.10868301098918,0 174.2241531523063,-41.10844043905027,0 174.2245818864373,-41.10852803017708,0 174.2247320901389,-41.10861570504797,0 174.2247601687167,-41.10861201689434,0 174.2248014080367,-41.10866725286545,0 174.2249656935846,-41.10878359450951,0 174.2251143883691,-41.10886531816454,0 174.2253533563842,-41.108916111628,0 174.2254531849134,-41.10896975579556,0 174.2255959291925,-41.10896648701516,0 174.2257562753398,-41.10883019836465,0 174.2258539235093,-41.10872391504775,0 174.225786114419,-41.10841546147969,0 174.2257386724922,-41.10829878490082,0 174.2257587884645,-41.10813081165343,0 174.225826514503,-41.10799150440977,0 174.2256683475867,-41.1076728245222,0 174.2256881300577,-41.107368645368,0 174.2258290289357,-41.10740669934616,0 174.2260059710328,-41.10732698729187,0 174.2261452793233,-41.10732287975073,0 174.2262798080339,-41.10721039528576,0 174.2263276688006,-41.10719052987193,0 174.2264753576095,-41.10715130233287,0 174.2266317640334,-41.10717133499443,0 174.2267900977651,-41.10710143028692,0 174.2269895884517,-41.10706932686084,0 174.227128223667,-41.10701509696564,0 174.2270858954146,-41.1068546669661,0 174.2271872328434,-41.10658292599218,0 174.2271614165228,-41.10649692711667,0 174.2270789391877,-41.10647421247575,0 174.2271848017268,-41.10641520436058,0 174.2272653519102,-41.10639793676815,0 174.2274194956709,-41.10644504286192,0 174.2276750599957,-41.10632920521304,0 174.2277464735961,-41.10624035698369,0 174.2277609739487,-41.10601697864023,0 174.2278747174086,-41.10586174667542,0 174.2279729530453,-41.10586954161755,0 174.2282674932285,-41.10583023081787,0 174.2287454291543,-41.10566309563947,0 174.2290402196548,-41.10578320813755,0 174.2291806166367,-41.10589091610536,0 174.2293951942168,-41.10593072966435,0 174.2295766614997,-41.10602041564152,0 174.2297349126734,-41.10614547412328,0 174.2298578747568,-41.10620490187074,0 174.2300892995152,-41.10624530263352,0 174.2302627206633,-41.10630540088146,0 174.2302963316944,-41.10627891394472,0 174.230189294866,-41.10620498611927,0 174.2301203114672,-41.10610859449025,0 174.2301522475689,-41.10607238445972,0 174.2301528343093,-41.10597129821251,0 174.2302662408582,-41.1058622504264,0 174.2303169517685,-41.1057473342683,0 174.2303107495634,-41.10557508603273,0 174.2303426839998,-41.10551054467273,0 174.2303115034818,-41.10539269549642,0 174.2303424325287,-41.10529152569259,0 174.2303897073335,-41.10521483111097,0 174.2303181244287,-41.10514769221516,0 174.2303280998173,-41.10513176710029,0 174.2302884526293,-41.1050941317145,0 174.2302560995009,-41.10501584464033,0 174.2302725282461,-41.10491735818504,0 174.2303269256607,-41.10486044432562,0 174.2303241601786,-41.10482113324608,0 174.2302756286647,-41.10476388549612,0 174.2302881177032,-41.10471878974111,0 174.2302757972652,-41.10468417286784,0 174.2301743763163,-41.10456548477186,0 174.2302770537103,-41.10447957093564,0 174.2303270103189,-41.10445585046501,0 174.2303597830436,-41.10446724931002,0 174.2304257488439,-41.10444570794726,0 174.2305188714919,-41.10432567895973,0 174.2305833292689,-41.10416239982798,0 174.23051820071,-41.10410246948858,0 174.2305642176443,-41.10400138345376,0 174.2306562510387,-41.10392192265406,0 174.2307241452733,-41.1039038177098,0 174.2307589301826,-41.10381329342206,0 174.2307962285655,-41.10377255715121,0 174.2308481971122,-41.10374112500669,0 174.2309674710599,-41.1037176562832,0 174.2311087065773,-41.10358329384422,0 174.2312457512626,-41.10360718164294,0 174.23129193499,-41.10358044383079,0 174.2313253788689,-41.10353216402666,0 174.2313832978643,-41.10350634835614,0 174.2314312423911,-41.10350986775308,0 174.2314647705146,-41.103495870656,0 174.2315236940948,-41.10339813768415,0 174.2316296424683,-41.10327810939405,0 174.2317026484788,-41.10315346993228,0 174.2317310634075,-41.10313243109044,0 174.231801386981,-41.10312094818882,0 174.2317805998801,-41.1031048546413,0 174.2318939226405,-41.10303193186725,0 174.231922254071,-41.1029593449847,0 174.2320618961524,-41.10282707921083,0 174.2321048367701,-41.10276335193409,0 174.232074887781,-41.10269497972789,0 174.2319850338522,-41.10265659104069,0 174.2319343236879,-41.10260235965632,0 174.231800129881,-41.10254377029178,0 174.231779593998,-41.10244788123405,0 174.2319024727534,-41.10233363571528,0 174.2318283765963,-41.10226758751576,0 174.2318333218838,-41.10217211689479,0 174.2317890654584,-41.10211922705167,0 174.2317018942225,-41.10212417206371,0 174.2316262050932,-41.10200758002323,0 174.2315706334111,-41.10196156330584,0 174.2315928445505,-41.10196919145836,0 174.2316400354101,-41.10195251075177,0 174.2316664380433,-41.10191646933897,0 174.2317510965129,-41.10186743465437,0 174.2320437082502,-41.10188084575171,0 174.2321204860251,-41.10186592561888,0 174.2321563613965,-41.10181261663202,0 174.232135322018,-41.10177498190637,0 174.2322060653231,-41.10173131212988,0 174.2322689285811,-41.10171731539361,0 174.2325715997342,-41.10177204799538,0 174.2326006846587,-41.10173466523561,0 174.2325884478498,-41.1017028977661,0 174.2324402565049,-41.10165956316327,0 174.2324009443339,-41.10155336478458,0 174.2324028723237,-41.10151941811152,0 174.2325581891559,-41.10133074116795,0 174.2327861765488,-41.10126955285892,0 174.2329099765799,-41.10121222114634,0 174.2329886840723,-41.1012241230036,0 174.2330462674038,-41.10121322699505,0 174.2333946194652,-41.10108925921504,0 174.2336506023152,-41.10104860629229,0 174.2337068449223,-41.10101667129582,0 174.2337406234183,-41.10096906187748,0 174.2338728898129,-41.10085942748876,0 174.2339359219297,-41.1007807214567,0 174.2339253606045,-41.10076990812717,0 174.2339466511543,-41.10073638007092,0 174.2340211665013,-41.10068625703297,0 174.2340295484135,-41.10063370225156,0 174.2342649114252,-41.10054376381038,0 174.2343483962366,-41.10048484022729,0 174.2346130963928,-41.10037939509178,0 174.2346997649032,-41.10030362318678,0 174.2347472913862,-41.10023338177096,0 174.2347184565483,-41.10018401283883,0 174.2346545034662,-41.10013958902578,0 174.2344732856267,-41.10011167740728,0 174.2343382539965,-41.09998376875564,0 174.2341720415833,-41.09996683762374,0 174.234130383028,-41.09993238770947,0 174.2341190664841,-41.09986583594625,0 174.2341680172001,-41.0998131978535,0 174.2343401816756,-41.0997644155098,0 174.234459288497,-41.09969635369006,0 174.2344783989081,-41.09966089780509,0 174.2344197259556,-41.09953835482367,0 174.2344188040458,-41.09947532274794,0 174.23442819178,-41.09943911351135,0 174.234510250368,-41.0993603230818,0 174.2345339707592,-41.09930760118933,0 174.234497006616,-41.09922680012814,0 174.2344704363443,-41.09922596247671,0 174.2346040434905,-41.09907072891934,0 174.2348239848764,-41.09896670876889,0 174.234862373644,-41.09893334947214,0 174.2348611169022,-41.09888272291781,0 174.2347664014284,-41.0987638668886,0 174.2347626284318,-41.09868239488186,0 174.2347786390731,-41.09864383835479,0 174.2348728523535,-41.09858281767866,0 174.2349021883741,-41.0985278331035,0 174.2350130805288,-41.09845365329098,0 174.2351106459521,-41.09841274872415,0 174.2351433362113,-41.0983746123362,0 174.2350979889295,-41.09825885830577,0 174.2351372167205,-41.0982481292148,0 174.2351201182999,-41.09820839808491,0 174.2351967281153,-41.09815802302335,0 174.2352175153836,-41.09810571976431,0 174.2352698175455,-41.09807445589056,0 174.2352516300458,-41.0980361497795,0 174.2352212029289,-41.09804310666566,0 174.2353388844552,-41.0979612160268,0 174.235342741086,-41.097929365438,0 174.2353802914028,-41.09788460568405,0 174.2353912718964,-41.09784898190176,0 174.2352887618807,-41.09776524749287,0 174.2352265683903,-41.09754840667087,0 174.2351963932146,-41.0975107731503,0 174.2351612726354,-41.09729694967535,0 174.2352082951622,-41.09720013863987,0 174.2352103916028,-41.09705781546897,0 174.2352847375249,-41.09695144782216,0 174.2353200254569,-41.09683795671343,0 174.235490848859,-41.09675003103536,0 174.2355041762453,-41.09669789599266,0 174.2355942824698,-41.09663075742972,0 174.2355857314406,-41.0965926191414,0 174.235550779996,-41.09655515223476,0 174.2353910206142,-41.09644451123977,0 174.2352903543849,-41.09639799076842,0 174.235218270069,-41.09628743448116,0 174.2351644584718,-41.0961236524219,0 174.2351036050722,-41.09603480334562,0 174.23510612031,-41.09587604993366,0 174.2351271577626,-41.09584126506597,0 174.2349648848478,-41.09581192868851,0 174.2348714268631,-41.09565895925937,0 174.2348324514096,-41.0956359090042,0 174.2346578558395,-41.09561621110751,0 174.2346104139704,-41.0955511679643,0 174.2344360710763,-41.09543340179359,0 174.2342618106987,-41.09539786308636,0 174.2340078386472,-41.09543641949542,0 174.2339962723871,-41.09541697303398,0 174.2340421204639,-41.09540364581878,0 174.234181595588,-41.09539207919505,0 174.2342571167387,-41.09526542843597,0 174.234325512812,-41.09520532973292,0 174.2343999449844,-41.09521756832561,0 174.234626088387,-41.09519812208321,0 174.2345627210251,-41.09518999062426,0 174.2345094122136,-41.09516115771432,0 174.234434059188,-41.0950528626596,0 174.2343064027147,-41.09499930266509,0 174.2342380058269,-41.09499033404223,0 174.2340251896063,-41.09505336604217,0 174.233608609181,-41.09505629977406,0 174.233605339869,-41.09507700318208,0 174.2335899173069,-41.09505655126876,0 174.2335894974233,-41.09502889100401,0 174.2336951095168,-41.09502268869507,0 174.233666778544,-41.09500173366396,0 174.2337398696434,-41.09493920516997,0 174.2338863019978,-41.0949098676762,0 174.2339546980999,-41.09482152342652,0 174.2342011265255,-41.09474591779573,0 174.2342732104548,-41.09473661424499,0 174.2344079912601,-41.09465195699704,0 174.2344946555753,-41.09462683611782,0 - - -
- - Queen Charlotte Endeavour Inlet To Resolution Bay - - - - - - - - - - - - - - -
Queen Charlotte Endeavour Inlet To Resolution Bay
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)11.272
NAMEQueen Charlotte Endeavour Inlet To Resolution Bay
ISLANDSouth
LEGALSTATDOC
TA_NAMEQueen Charlotte Walkway
Fromkm1703.679
Tokm1714.95
categoryWalking Track
CycleCycleway
walkidQueen Charlotte Track
GuidebookNelson Marlborough
colourred
mapNamemap076
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 174.1772248063815,-41.08581944246325,0 174.1775468359282,-41.0858083786837,0 174.1775848899927,-41.0858046072922,0 174.1777233350184,-41.08578564939019,0 174.1779849595723,-41.08580452326614,0 174.1781131991581,-41.08580716374699,0 174.1782532624894,-41.08579982949122,0 174.1784352339631,-41.08578801109283,0 174.1785641485877,-41.08578692122601,0 174.1786104165844,-41.08577644380888,0 174.1788649751334,-41.08585238418391,0 174.1789093990083,-41.08585229984656,0 174.1790889395018,-41.08587778063312,0 174.1792408188274,-41.08598875663361,0 174.1794784465529,-41.08606914045348,0 174.1795776037267,-41.08623459828584,0 174.1797317469168,-41.08627483079788,0 174.1797445710804,-41.0862617561198,0 174.1797498520216,-41.08625680988288,0 174.1798403764137,-41.0863014859827,0 174.1800044937149,-41.08641933472652,0 174.1801552009595,-41.08651229141742,0 174.1802608972822,-41.08656953894566,0 174.1804199004716,-41.08658336921288,0 174.1804176377075,-41.08658479401678,0 174.1804188122325,-41.08658496213963,0 174.1804203197881,-41.08658504578133,0 174.1804240924656,-41.08658563227016,0 174.1804256010561,-41.08659082874861,0 174.1804391802163,-41.08660038475792,0 174.1805161263985,-41.08663776797072,0 174.1806317115902,-41.08667942575153,0 174.1806307895126,-41.08672016234055,0 174.1806364063477,-41.08672460419973,0 174.1806265150174,-41.0868276183158,0 174.1807532496221,-41.08689484126423,0 174.1808845944258,-41.08698427608191,0 174.18090261497,-41.0870084161443,0 174.1811263388644,-41.08714669819985,0 174.1812265057051,-41.08746625119681,0 174.1812112365992,-41.08766966418519,0 174.181284397775,-41.08786946184789,0 174.181424136662,-41.08798289601963,0 174.1815868303592,-41.08810502045959,0 174.181749941424,-41.08817844582977,0 174.1818850578608,-41.08822513283643,0 174.1820623347186,-41.08830065449003,0 174.1823035594831,-41.08823302739334,0 174.1824947970293,-41.08838480236442,0 174.1826056991634,-41.08850878827055,0 174.1827608827689,-41.08867188819468,0 174.1828638974155,-41.08878361949186,0 174.182845875899,-41.08892066324802,0 174.1830166985376,-41.08921729922509,0 174.1830432849901,-41.08945881899777,0 174.1831962394186,-41.08959649586152,0 174.1833550304178,-41.0896941358073,0 174.183567221889,-41.08987712203949,0 174.1836591720662,-41.09010879835488,0 174.1836373789533,-41.09039914741001,0 174.1837294965276,-41.09053602350526,0 174.183900068299,-41.09081497286009,0 174.1840980475264,-41.09087264124111,0 174.1845973577494,-41.09105813205348,0 174.1849397588033,-41.09115913418149,0 174.1854288425467,-41.09122157870112,0 174.1856615250268,-41.09122417824668,0 174.1858763558005,-41.09128270332693,0 174.1860199353887,-41.09141738137831,0 174.1861889979054,-41.09150446883886,0 174.1867096822393,-41.09173379666337,0 174.1871219869169,-41.09170043746767,0 174.1874918402309,-41.09184629002853,0 174.1876093953617,-41.09192054587341,0 174.187873844199,-41.09205239377675,0 174.1879319308177,-41.09217837374365,0 174.1878935419265,-41.09240602623873,0 174.18812625318,-41.09252747696924,0 174.188074591378,-41.09268522693621,0 174.1881495254222,-41.09285948703427,0 174.1879914409428,-41.0929265230921,0 174.1880838108888,-41.09299410030116,0 174.1880867445241,-41.09310365204939,0 174.1881346887506,-41.09314556105391,0 174.1881375391929,-41.09315897223195,0 174.1881378735193,-41.09315796711513,0 174.1881806217467,-41.09318428579051,0 174.1882076944866,-41.09333976989768,0 174.1882040908433,-41.09339266047802,0 174.1882203514266,-41.09342870242976,0 174.1881407212846,-41.09359267431329,0 174.1881747544439,-41.09374905767757,0 174.1881656174666,-41.09376070894921,0 174.1881254691479,-41.09391166717153,0 174.188245832972,-41.09408953108268,0 174.1882461810052,-41.09408928608197,0 174.1882712298092,-41.09424283632171,0 174.1881385446016,-41.09445338988449,0 174.1882295725262,-41.09458967895564,0 174.1883455783425,-41.09473812309208,0 174.1884480880661,-41.09480584940994,0 174.1885029896931,-41.09485798421574,0 174.1885775885986,-41.09501087004908,0 174.1885800195151,-41.09507398620486,0 174.1886307304692,-41.0951262047156,0 174.1886306459928,-41.09519569102984,0 174.1886269581693,-41.09526324901161,0 174.1886439725918,-41.09532779016345,0 174.1886209225987,-41.09540255599995,0 174.1885429714082,-41.09545787735919,0 174.1884913394992,-41.09561939600722,0 174.1884329172891,-41.09577110940368,0 174.1885697932675,-41.0959273468392,0 174.1886711633182,-41.09600782715906,0 174.1886727235317,-41.09609766767974,0 174.188584042947,-41.09620001069536,0 174.1884258763192,-41.09647032677296,0 174.18830232647,-41.09657208344562,0 174.1882310811051,-41.09679805884001,0 174.1883933536183,-41.09695077818132,0 174.1884091114293,-41.09711523083757,0 174.1882849759869,-41.09728848498322,0 174.1882741644953,-41.09728957384605,0 174.1882720676798,-41.0972821144782,0 174.1882721517805,-41.09728043815751,0 174.1882723204209,-41.09727876186254,0 174.1881019164441,-41.09719770866168,0 174.1880082060524,-41.09716669638411,0 174.1878944643927,-41.09718304021232,0 174.187827910431,-41.0972323263256,0 174.1877874268458,-41.0972956930698,0 174.1875518113371,-41.0974919973654,0 174.1873243263291,-41.09764639227308,0 174.1871966701196,-41.09786365139568,0 174.1871131026846,-41.09801326765473,0 174.187122826244,-41.09816171089462,0 174.1872403403702,-41.09827361019539,0 174.1870915614187,-41.09839925395684,0 174.1869290360479,-41.09852313940491,0 174.1868886351838,-41.09856513212497,0 174.1868150425045,-41.09866202712145,0 174.1867923196878,-41.09874231008021,0 174.1864631698986,-41.09880016074077,0 174.1861803636761,-41.09884894435235,0 174.1861464185659,-41.09886168411121,0 174.1859136520891,-41.09897182204549,0 174.1858542242844,-41.09919402609612,0 174.185894458531,-41.09938664316595,0 174.1858555664561,-41.09951932780522,0 174.1856883472888,-41.09959233501866,0 174.1854679863146,-41.09966576002316,0 174.185279644434,-41.09970356165552,0 174.185213008509,-41.09971588442028,0 174.1850369046351,-41.099772125764,0 174.1849943248164,-41.09983080018589,0 174.1848962568309,-41.09998519398142,0 174.184809253574,-41.10019717347045,0 174.1846768187172,-41.10038534581678,0 174.1846312208041,-41.10045734667633,0 174.184570786745,-41.10054778773349,0 174.1844609845978,-41.10061442425307,0 174.1843450371245,-41.10062933520299,0 174.1842558538681,-41.10068001028667,0 174.184206704285,-41.10068817666562,0 174.1841590971334,-41.10070391895798,0 174.1841045448403,-41.10075405239017,0 174.1841034625501,-41.10083414389985,0 174.1841027911518,-41.10093711013941,0 174.1841147211214,-41.10103994685107,0 174.1841646880221,-41.10117861931928,0 174.1842181605788,-41.10123560709177,0 174.1842223514551,-41.10124457543123,0 174.1842505988205,-41.10132688582654,0 174.1842381094988,-41.10142545701847,0 174.1841734015601,-41.10153148838424,0 174.1841588170899,-41.10160969101228,0 174.1841694620339,-41.10165788690001,0 174.184175915961,-41.1016964442666,0 174.1841853040733,-41.10172041574813,0 174.1842444805481,-41.10184974877777,0 174.1842122927506,-41.10202736064249,0 174.1841466632649,-41.10222710163561,0 174.1841492654013,-41.10256955646838,0 174.1841434158419,-41.1026662001698,0 174.1840916237051,-41.102809217207,0 174.1841141415335,-41.10294610178648,0 174.1840714779078,-41.10318389616079,0 174.1840956171353,-41.10330509948589,0 174.1841228589947,-41.10340484312541,0 174.1841159844128,-41.10343820305721,0 174.1840916783354,-41.10358991564163,0 174.1841340073427,-41.10367155524006,0 174.1841735689445,-41.103841624123,0 174.1841811132108,-41.10388093503345,0 174.1841907523694,-41.10390063331984,0 174.1841632588002,-41.10413264367137,0 174.1840977424959,-41.10423413071582,0 174.1841402932355,-41.10435367469165,0 174.184244982502,-41.10450915881049,0 174.1842849649064,-41.10459423551634,0 174.1843645930969,-41.1047606162733,0 174.1844049104845,-41.10490109742926,0 174.1843612400791,-41.105026071265,0 174.1843305623465,-41.10514031562479,0 174.1843153907292,-41.10538171514016,0 174.1843305620802,-41.10555882474468,0 174.1843229345284,-41.10568648075543,0 174.1842834560024,-41.10584389270757,0 174.1842920052232,-41.10601194997149,0 174.1843478295949,-41.10611680796173,0 174.1845103541974,-41.106137762788,0 174.1845349967217,-41.10614094768838,0 174.1847334805445,-41.10624044084578,0 174.1848386728471,-41.10632250015404,0 174.1848894664318,-41.10642065195892,0 174.1848705241759,-41.10650514184464,0 174.1848800801425,-41.10653389105958,0 174.1848640696696,-41.10654755393393,0 174.1847903931385,-41.10665878163037,0 174.1847468498055,-41.10677573912314,0 174.1847902399976,-41.10686046439875,0 174.1849532535823,-41.10698408273807,0 174.1849815010548,-41.10715641507806,0 174.1848389245349,-41.10726504473583,0 174.1847728755299,-41.10744114925263,0 174.184552096105,-41.10752228478084,0 174.1843510143252,-41.10757492386434,0 174.1843140498894,-41.10762052126351,0 174.1842751581434,-41.10769738294507,0 174.1842361816632,-41.10776091842864,0 174.1842261242421,-41.10788002483621,0 174.1842098624579,-41.1079872299516,0 174.1842910832023,-41.108126621306,0 174.1843309808896,-41.10817146364982,0 174.1843097839859,-41.10824891808741,0 174.1842635062677,-41.10833900708024,0 174.1842453179654,-41.10857295739201,0 174.1840991379956,-41.10868535780011,0 174.1838308328052,-41.10881561267171,0 174.1836648704443,-41.10889775593005,0 174.1834613586513,-41.1090303572896,0 174.1834255674803,-41.10906874691034,0 174.1833719236295,-41.10922565633649,0 174.1833915375419,-41.10927770731924,0 174.1834395662254,-41.10950267835158,0 174.1834389793318,-41.10965807799231,0 174.1834848275771,-41.10984139048386,0 174.1835595948545,-41.11003878409269,0 174.1835927865948,-41.11012134638526,0 174.1835305090969,-41.1102256173869,0 174.1834404880747,-41.1103085141115,0 174.1834146717536,-41.11035034042013,0 174.1833800534633,-41.11038981782773,0 174.1832549961588,-41.11043097364743,0 174.1830640565649,-41.11048998202171,0 174.1829193012276,-41.11060154477563,0 174.1827960024679,-41.11079240071524,0 174.1826972635079,-41.11101468931199,0 174.1826235036926,-41.11114796211599,0 174.1825322251258,-41.11134342711173,0 174.1825133657571,-41.1114745202678,0 174.1824727965347,-41.11160913401956,0 174.1824747252661,-41.1116880081411,0 174.1824634091027,-41.11185371829347,0 174.1824744728935,-41.11187710337371,0 174.1824561173017,-41.11209721182004,0 174.1824785811152,-41.11231556090114,0 174.1825817619073,-41.11252737133709,0 174.1825735475422,-41.11274538494521,0 174.1824930812218,-41.11291243636566,0 174.1824089275847,-41.11317370030472,0 174.182370118421,-41.11332130498288,0 174.1822692013521,-41.1134250728739,0 174.1821647621024,-41.11354577274706,0 174.1820511041741,-41.1136388122958,0 174.1820221020641,-41.11372631887895,0 174.1820154797777,-41.11386235682833,0 174.1819758345121,-41.11396143142287,0 174.1820476670438,-41.11416988873977,0 174.1821355933224,-41.11432109934789,0 174.1821552068292,-41.11442042431435,0 174.1821910806825,-41.11450214782003,0 174.1821802689126,-41.11463701270424,0 174.1822957715687,-41.11475720917726,0 174.1825135325418,-41.11484505107835,0 174.1827880404554,-41.11500799612605,0 174.1828021220075,-41.11501612609869,0 174.1829051357861,-41.11514177108463,0 174.1829778914033,-41.11524570624682,0 174.1830354740073,-41.11529842933888,0 174.1830754562981,-41.11533405170198,0 174.1831244895967,-41.11537537400756,0 174.1832301015498,-41.11540295116947,0 174.183275281476,-41.11543782017204,0 174.1832703355026,-41.1155952317376,0 174.1832701682864,-41.11577141869918,0 174.1832560021383,-41.11596252673973,0 174.1832060456659,-41.11612404606738,0 174.1832196253697,-41.11625304321247,0 174.1833590164403,-41.11633091149448,0 174.1834795483109,-41.11642856080154,0 174.183685658229,-41.11648287513258,0 174.1839643573896,-41.11651422443175,0 174.1840573121539,-41.11653475890428,0 174.1839372835878,-41.11667515576571,0 174.1838527103232,-41.11670306814466,0 174.1837382132522,-41.11687757900466,0 174.1835808845673,-41.11698997973179,0 174.1834630350077,-41.1171639887979,0 174.1834398171655,-41.11718033325808,0 174.183327835218,-41.11729868581339,0 174.1832824044999,-41.1175006063376,0 174.1832918772659,-41.11765902363725,0 174.1833328643592,-41.11769439596851,0 174.1833986438351,-41.11784814529448,0 174.1834168511483,-41.11789070021461,0 174.1834395659546,-41.11808239404901,0 174.1834179407888,-41.11810837849264,0 174.1832736039906,-41.11817283466906,0 174.1831953169572,-41.11830283844115,0 174.1831646384328,-41.11837919730846,0 174.1830839217212,-41.11850207647232,0 174.1830912146019,-41.11853627441103,0 174.1830994279129,-41.11854750564091,0 174.1831483791393,-41.11861933903585,0 174.183307298798,-41.11877457102744,0 174.1833093110391,-41.11897439626632,0 174.1833279191659,-41.11903281790173,0 174.1833731812109,-41.11922442782037,0 174.1834903595743,-41.11934780982613,0 174.1836092161117,-41.11944629675341,0 174.1838103815287,-41.1194856924657,0 174.1840698014738,-41.11948602668861,0 174.1843171515425,-41.11948259125366,0 174.184541954542,-41.11935510219178,0 174.1846218328193,-41.11933599135789,0 174.1846603058003,-41.11937069185083,0 174.1847505794522,-41.11940623236721,0 174.1850326299831,-41.11942299517206,0 174.1853381505564,-41.1193589582419,0 174.1855056211227,-41.11927589273303,0 174.1856227159365,-41.11922073996526,0 174.1856488683627,-41.11918285426816,0 174.1857246394144,-41.1192147888442,0 174.1857281605083,-41.11930849934827,0 174.1858023413876,-41.11941771543286,0 174.1858041849017,-41.11941729651235,0 174.1858285759701,-41.11945652295523,0 174.1858864945964,-41.11955199296412,0 174.1859714027424,-41.11949700814856,0 174.1860790275778,-41.11947286804077,0 174.1861824601381,-41.11952517145087,0 174.1862714760742,-41.11954009138434,0 174.1864340014194,-41.11954042630637,0 174.1864340852629,-41.11953992280868,0 174.1864788445856,-41.11950991626402,0 174.1864801006169,-41.11951821390939,0 174.1864858853442,-41.11952491917457,0 174.1864682834685,-41.11957629983397,0 174.1863971195986,-41.11974771052146,0 174.1864278816731,-41.11990612800629,0 174.1864817784441,-41.12010771301222,0 174.1865098570279,-41.1201993266383,0 174.1865473235274,-41.1203204458438,0 174.1866137928705,-41.12045941786146,0 174.1866463139159,-41.12054952282332,0 174.1866997075202,-41.12069553575311,0 174.1867930806492,-41.12083894967764,0 174.186868854012,-41.12097473690864,0 174.1869561929074,-41.12105671221382,0 174.1870113463848,-41.12121538170411,0 174.1870401796742,-41.12137564382756,0 174.1871139412843,-41.12143708335427,0 174.1871447025767,-41.12145988211318,0 174.1872343890296,-41.12148871500811,0 174.187321057909,-41.12141093127825,0 174.1875838296916,-41.12123323551376,0 174.1877212926692,-41.12106132162072,0 174.1879362045761,-41.12106861414119,0 174.1879476888941,-41.12106676981757,0 174.1881432381884,-41.12101865837754,0 174.1882628479525,-41.12104958780738,0 174.1884666964194,-41.12092385931719,0 174.188673896515,-41.12092159620173,0 174.1888740572289,-41.12087817763554,0 174.1890196496848,-41.12085370237624,0 174.189099362569,-41.12085839591618,0 174.1891369971147,-41.12083987205028,0 174.1891547673688,-41.12082193516503,0 174.1891954190413,-41.12076803899559,0 174.1893177952508,-41.12071355669009,0 174.1894816604518,-41.1206594943817,0 174.1894992635847,-41.12065513480087,0 174.1895014414759,-41.12065555369541,0 174.1895063867829,-41.12065697900413,0 174.1894910478109,-41.12074985091288,0 174.1895774656559,-41.12090282047232,0 174.1896726000828,-41.12100231441244,0 174.189739404454,-41.12107666109674,0 174.1897436792904,-41.12108554636141,0 174.1899135804657,-41.12117548437131,0 174.1900566584804,-41.12123256411536,0 174.1901145785866,-41.12124052672307,0 174.1902923584323,-41.1213318059995,0 174.1903096251494,-41.12138377363277,0 174.1903955395891,-41.12153213397005,0 174.1904572297639,-41.12163749372349,0 174.1906340052997,-41.1216161198122,0 174.1907902431664,-41.12141353040329,0 174.1909547802659,-41.12126852279229,0 174.191150498477,-41.12114815939469,0 174.1912566133949,-41.12109535288539,0 174.1913973448862,-41.12102125687746,0 174.1914981792383,-41.12099896097971,0 174.1916867718141,-41.12090516676453,0 174.1918376458772,-41.12101287475277,0 174.1918964866902,-41.12106928520802,0 174.1919648002562,-41.12115369107603,0 174.1920952214065,-41.12129266288524,0 174.1921787057171,-41.12137656572676,0 174.1922398095375,-41.12141344622805,0 174.1924111356221,-41.12145275736911,0 174.1925716486948,-41.12134806740857,0 174.1927521965189,-41.12117229925832,0 174.192854036282,-41.12108772547026,0 174.1929909123015,-41.12104841406166,0 174.1930194940986,-41.12104640207082,0 174.1931137064666,-41.12103273974005,0 174.1932766512901,-41.12092293691831,0 174.1933751388388,-41.12075529880814,0 174.193419143699,-41.12055773733288,0 174.193338510148,-41.12043284745841,0 174.1932654189486,-41.1202480262863,0 174.1932612286594,-41.1201186927082,0 174.193246812366,-41.12007393374179,0 174.1932484039202,-41.1200556611814,0 174.1932653364906,-41.1199250710956,0 174.1931085937115,-41.11980512651683,0 174.1929957736341,-41.11970026887064,0 174.1929540320556,-41.11950446838787,0 174.19288597088,-41.1193654958124,0 174.1928349251602,-41.11920959162002,0 174.1927710549447,-41.11905989143681,0 174.1927056764896,-41.11899845249437,0 174.1926853080196,-41.11897800042792,0 174.1926744108699,-41.11889434896096,0 174.1926695496724,-41.11887565678993,0 174.1925722356449,-41.11874992926436,0 174.1926675385675,-41.11862344611621,0 174.1929555399196,-41.11840492923038,0 174.1930381863338,-41.11840291851192,0 174.1930298879771,-41.11842102272867,0 174.1931744754221,-41.11844910225114,0 174.1932887204809,-41.11851456475361,0 174.1933851132206,-41.11856636531741,0 174.1934167973331,-41.11858094946022,0 174.1934468045099,-41.11859436014079,0 174.193511428512,-41.11860986677951,0 174.1937700100359,-41.11865043463016,0 174.1939602784103,-41.11869854778364,0 174.194117859133,-41.11873039902265,0 174.1943445058041,-41.11880776373086,0 174.1944256420029,-41.11877742107927,0 174.1945258899294,-41.11881053009132,0 174.1946402185287,-41.11885822342101,0 174.1947942792271,-41.11883584284169,0 174.1948578964198,-41.11876468086014,0 174.1949485057726,-41.11842479515726,0 174.1951618247779,-41.11827735681872,0 174.1954622323531,-41.1181489458543,0 174.1956582855151,-41.11813377503282,0 174.195842603078,-41.11807526945228,0 174.1961178646078,-41.11799932874647,0 174.1962755291712,-41.11785013140221,0 174.1963341182292,-41.11790469743106,0 174.1965732536316,-41.11791877899334,0 174.1968594963616,-41.11800251424235,0 174.1969894154293,-41.11805850517028,0 174.1972367652855,-41.11806680347179,0 174.1975229224393,-41.11799497082124,0 174.1976278654424,-41.1180357074629,0 174.19769190242,-41.11807216816223,0 174.19783514867,-41.11816713496812,0 174.1979780609848,-41.11830325712973,0 174.1979987640965,-41.11831524286375,0 174.1980834207205,-41.11836293598712,0 174.1982748643619,-41.11853912406106,0 174.1983211322138,-41.11867482693064,0 174.1984181113614,-41.11870382837584,0 174.1986387217314,-41.118741797836,0 174.198782220124,-41.11888973919228,0 174.198815579462,-41.11891605776548,0 174.1989429847875,-41.11891253839602,0 174.1990436521667,-41.11895344074335,0 174.1992324125416,-41.11908151663731,0 174.1992875654042,-41.1190827737325,0 174.1993058374934,-41.11907975595652,0 174.1994042424001,-41.11911236195205,0 174.1994686980025,-41.11914873982225,0 174.1996863761258,-41.11921545910842,0 174.199760890539,-41.11930464286117,0 174.199838927283,-41.11931612568681,0 174.2000036313022,-41.11942249350192,0 174.2000617178293,-41.11945694216184,0 174.2001322934278,-41.11949013380179,0 174.2004053755449,-41.11958392836702,0 174.2005022715399,-41.11972315081869,0 174.2006376386225,-41.1198596094681,0 174.2006624485991,-41.11987662419564,0 174.2008265672509,-41.11997863174112,0 174.2009207791985,-41.12014643736571,0 174.2010010785765,-41.12022857985946,0 174.2010760114696,-41.12028750484515,0 174.2011023305446,-41.12031063893833,0 174.2011996448987,-41.12040250522404,0 174.2012075239357,-41.12040887533542,0 174.2013650202446,-41.12054273419936,0 174.2014063430935,-41.120615740047,0 174.2014293933111,-41.12063401332657,0 174.2014556282396,-41.12065689509571,0 174.2014856782408,-41.12064266645689,0 174.2015472428038,-41.12062345207038,0 174.2016026471247,-41.1205135647535,0 174.201739356579,-41.12031784714564,0 174.2017149651664,-41.12015155047089,0 174.2017391885013,-41.11996446561581,0 174.2017667644656,-41.11985734566395,0 174.2016516804468,-41.11967948238546,0 174.2016479091022,-41.11963866243924,0 174.2016977821914,-41.119501952646,0 174.2016936751915,-41.11936013105757,0 174.2017089305847,-41.11932769343485,0 174.2017871332597,-41.1191515888843,0 174.2019037245777,-41.11902527420146,0 174.2020057330093,-41.11887523824165,0 174.202010259043,-41.11873140521129,0 174.2019232547802,-41.11858623024902,0 174.2018930800915,-41.11837844281366,0 174.2018774894578,-41.11822815480556,0 174.2019960934526,-41.1180788734902,0 174.2021806632828,-41.11799136630913,0 174.2022025400095,-41.11797938013847,0 174.202442010704,-41.11791307947572,0 174.2025172803695,-41.11790008731364,0 174.2026075535427,-41.11788240214476,0 174.2026559166673,-41.11783110414851,0 174.2026275862462,-41.11768014574933,0 174.2025893653407,-41.11755374671959,0 174.2025511434935,-41.11737286590851,0 174.2025458631719,-41.1173489774425,0 174.2025779647993,-41.1172095864742,0 174.2027448488431,-41.11715669616347,0 174.2029662985866,-41.11718024964428,0 174.2031945375935,-41.11716817987043,0 174.2032549722512,-41.1171619773049,0 174.2033041728772,-41.11717060987514,0 174.203329402762,-41.11717052738223,0 174.203496202925,-41.11710212996339,0 174.2036750733554,-41.11699584826178,0 174.2037385244986,-41.11693440792607,0 174.2038987860519,-41.11676291481171,0 174.2039924948485,-41.11663182249879,0 174.2040903960581,-41.1164342601881,0 174.2041358265088,-41.11629470242879,0 174.2041330600331,-41.11620811609956,0 174.2041198154626,-41.11608196901641,0 174.2041511651099,-41.11600787297308,0 174.2042557707605,-41.11586739211172,0 174.2042548489616,-41.11579539171599,0 174.2041782374423,-41.11567955439248,0 174.2041137812345,-41.11562699935556,0 174.2040221674058,-41.11546900016501,0 174.2040276146546,-41.11541284094339,0 174.2040102645255,-41.11525526173547,0 174.2040333151064,-41.11520388091111,0 174.2040396845381,-41.11518091384632,0 174.2040287889322,-41.11510891409846,0 174.2038629110251,-41.11504672038765,0 174.20382217541,-41.11495091501292,0 174.20383173008,-41.11484588977293,0 174.2037723024812,-41.11472351397819,0 174.2036824495245,-41.11467867081425,0 174.2037080135118,-41.11460474251703,0 174.2037156409625,-41.11454866681019,0 174.2037897373706,-41.11440466602058,0 174.2037997952299,-41.11437985616049,0 174.2037689502117,-41.11428363122843,0 174.2037223472535,-41.11415564014099,0 174.2037191610937,-41.11402915726164,0 174.2035494284104,-41.11395405465885,0 174.2033702231606,-41.11385414332737,0 174.2032024166923,-41.1137874234599,0 174.2031478509541,-41.1137497877411,0 174.2031645313912,-41.11366974146603,0 174.203237705113,-41.11361425306679,0 174.2032051824186,-41.11351903364295,0 174.2031726612414,-41.11349472710872,0 174.2031575741024,-41.11349028440623,0 174.2031961315419,-41.11347402347937,0 174.2034270520082,-41.11349078712421,0 174.2035348426725,-41.11350771892753,0 174.2036353421046,-41.11360662472018,0 174.2038217563532,-41.11369329362594,0 174.203906580749,-41.11371207026429,0 174.204085785557,-41.11366144351842,0 174.2041221625107,-41.11363562709621,0 174.2042610508071,-41.11359371676132,0 174.204351156939,-41.11360737998802,0 174.204425420779,-41.11362246716595,0 174.2046163603016,-41.11363411835471,0 174.2046503071682,-41.11362640580289,0 174.2047480397917,-41.11358600619211,0 174.204790787854,-41.11353605051722,0 174.2048088094627,-41.11351584943181,0 174.2048603579658,-41.11342758794658,0 174.2048965666301,-41.1134371430152,0 174.2049149238255,-41.11345164451281,0 174.2049156774334,-41.11345332018281,0 174.2049692384557,-41.11346958108424,0 174.2050227992108,-41.11356052462684,0 174.2051093001223,-41.11369941339904,0 174.2051410678207,-41.11379689391783,0 174.2053341869178,-41.11399445624555,0 174.2053704795382,-41.11403351528801,0 174.2055355195265,-41.11408447749954,0 174.2056421382805,-41.11402211593456,0 174.2057050858198,-41.11401515886277,0 174.2059620749389,-41.11402169726379,0 174.2059808499466,-41.11401683648041,0 174.2059992972187,-41.11402823367216,0 174.2060738061587,-41.11415647843318,0 174.2062127785908,-41.11425404323175,0 174.2062411080574,-41.11426452080622,0 174.2063535097055,-41.11428396709323,0 174.2063831825673,-41.1142952818006,0 174.206604213442,-41.11439209302986,0 174.2066412614124,-41.11440164866367,0 174.206695239963,-41.11440936049637,0 174.2067758737312,-41.11439946929635,0 174.2067690851055,-41.11439754248741,0 174.2069263288304,-41.11438521999854,0 174.2069591023839,-41.11436904273378,0 174.2070471114353,-41.11433400720702,0 174.2071166818618,-41.11429905403364,0 174.2072685618259,-41.11428757096035,0 174.207353637584,-41.11426628119229,0 174.2074418163593,-41.11425781475089,0 174.2075131455369,-41.1142526181343,0 174.2076495199493,-41.11432235635114,0 174.2077374454509,-41.11433132510388,0 174.2079142203255,-41.11426913117415,0 174.2079713009212,-41.11424750485257,0 174.2080875576638,-41.11424365002329,0 174.2081867995871,-41.11423015503979,0 174.2081712094595,-41.11418447432997,0 174.2081977799699,-41.11409596079619,0 174.2082997881133,-41.11399814365443,0 174.2083789125275,-41.11396788524883,0 174.2085576987196,-41.11389647138451,0 174.2087825018546,-41.11380628227723,0 174.2088500599479,-41.11377526936026,0 174.2089208874578,-41.11367317679046,0 174.2090121665361,-41.11353143884916,0 174.2090289293595,-41.1134523141829,0 174.2089902891461,-41.11330060163444,0 174.2089381535137,-41.11317596307936,0 174.2089368960125,-41.11314637488854,0 174.2089643887209,-41.11295870368549,0 174.2090524827291,-41.11282492868068,0 174.2090624574129,-41.11280070474142,0 174.209081652402,-41.11274236702009,0 174.2090808972598,-41.11272711215334,0 174.2090813159659,-41.11272669340045,0 174.2090819025928,-41.11272627378711,0 174.2090759522945,-41.11268084421278,0 174.2091652185521,-41.11272702789641,0 174.2091730134229,-41.11274848639518,0 174.2092087208812,-41.1127867910205,0 174.209465039727,-41.11290623315346,0 174.2096525424037,-41.11306356167938,0 174.209814648938,-41.11317143723687,0 174.2098430638048,-41.11316230037357,0 174.210021430681,-41.11306884208974,0 174.2101151396272,-41.1129938236409,0 174.2101986245383,-41.112974965276,0 174.2102451440216,-41.11298267634536,0 174.210273391234,-41.11301058836053,0 174.2102849583733,-41.11309273133713,0 174.2102546150956,-41.11320923885544,0 174.2102392754501,-41.11330085335689,0 174.2103002130848,-41.11342348107564,0 174.2103249384954,-41.11344879440185,0 174.2103847863941,-41.11350637839445,0 174.210560974421,-41.11370662118357,0 174.2106916484239,-41.11387652191083,0 174.2107763044392,-41.11405790737572,0 174.2109674115224,-41.11430944786778,0 174.2110980022078,-41.11449451989654,0 174.2112313578574,-41.11468923164681,0 174.2112418364566,-41.114703397005,0 174.2112523972611,-41.1147161382639,0 174.2114756905365,-41.11497270807789,0 174.2116178483983,-41.11512676744835,0 174.2117515394904,-41.11526372705299,0 174.2119586563027,-41.11530270293496,0 174.2120103725893,-41.11530857145846,0 174.2121316589206,-41.11528292204129,0 174.2122085208707,-41.11526054230733,0 174.2122539514509,-41.11525324984409,0 174.2123620771472,-41.11527387023335,0 174.2124916611255,-41.11531686878433,0 174.2125387678764,-41.11530169747332,0 174.2125889747177,-41.11529214229005,0 174.2125799235746,-41.11528359280099,0 174.212597776483,-41.11525685443652,0 174.2125446351239,-41.11514889527071,0 174.2124908236014,-41.11508360037894,0 174.2124638325688,-41.11496114083132,0 174.2124707071828,-41.11479601707871,0 174.2125039829441,-41.11476609428642,0 174.2125389351773,-41.11473491347002,0 174.2127411066506,-41.11457833871419,0 174.2127951705276,-41.11452729262289,0 174.2127837708414,-41.11439930215501,0 174.2127497922096,-41.11434766695763,0 174.2126857022505,-41.11425027212923,0 174.2126006259262,-41.11410459396363,0 174.2125164719196,-41.11397710534845,0 174.2125087603354,-41.11384626378897,0 174.2126451338687,-41.11386420133361,0 174.212770610488,-41.11390200300473,0 174.2128372471452,-41.11391692273979,0 174.2129432779564,-41.11389353820491,0 174.2130061434375,-41.11387945645701,0 174.2130174584623,-41.11387350476987,0 174.2130559310542,-41.11384693383713,0 174.2131182921334,-41.11378113645034,0 174.2130985954598,-41.11370142411337,0 174.2129604606013,-41.11363839287093,0 174.2129176304058,-41.11360151198455,0 174.2128792410733,-41.11357611518784,0 174.212799948075,-41.11351962088295,0 174.212671118401,-41.11341543384167,0 174.2126407754532,-41.11337855380981,0 174.2125921604133,-41.11331661098836,0 174.2125302183115,-41.1132681642605,0 174.212554442117,-41.11317252585523,0 174.2126845295104,-41.11312525191028,0 174.2128659975153,-41.11323103220277,0 174.2129722798273,-41.11323773820283,0 174.2130724429443,-41.11329783642606,0 174.2131777197735,-41.11333195000047,0 174.2132120864683,-41.11334335043002,0 174.2132753691473,-41.11335215111623,0 174.2134802225563,-41.11332516071075,0 174.2136330249618,-41.11331065994608,0 174.2136497048205,-41.11330822866696,0 174.2138837277256,-41.11338835975341,0 174.2140443244518,-41.1133501389828,0 174.2140660337236,-41.11333010567676,0 174.2140898385573,-41.11323815735505,0 174.2140742484041,-41.11306766919486,0 174.2141123025163,-41.11291805238447,0 174.2141304906382,-41.11283976499816,0 174.2141945290098,-41.11275108398449,0 174.2141996417093,-41.11266768376856,0 174.2142226077052,-41.11263843212875,0 174.2143325792234,-41.11262854078228,0 174.2143928454743,-41.11263080417907,0 174.2144311497062,-41.11262108092067,0 174.2145660986361,-41.11258503945678,0 174.2146368418943,-41.11261454350184,0 174.214764749977,-41.11273591321451,0 174.2147957629549,-41.11280204650567,0 174.2148898078901,-41.11285828928659,0 174.2150842675108,-41.11288511095225,0 174.2152354773352,-41.11287765093221,0 174.2154314465221,-41.11280221413718,0 174.2154701710124,-41.11277924825851,0 174.2155169418651,-41.11260867608508,0 174.2155262454885,-41.11253206489979,0 174.215605981971,-41.11235965764846,0 174.2155796382687,-41.11236208038969,0 174.2155855063662,-41.11222830511144,0 174.2155499661874,-41.11221397222322,0 174.2155244853608,-41.11218698173618,0 174.2156144230929,-41.11212571117208,0 174.2155620360526,-41.11197567362624,0 174.2154530715795,-41.11194239831873,0 174.2153273428228,-41.11182287187338,0 174.2152940673002,-41.11175430796217,0 174.215324409086,-41.11166445407622,0 174.2154343796374,-41.11166009607479,0 174.2154971596252,-41.11169898775778,0 174.2155454401673,-41.11170862739288,0 174.2156851662925,-41.11170267606335,0 174.2158058661366,-41.11173720909109,0 174.2158302573662,-41.11172832400401,0 174.2159825558707,-41.11176193602754,0 174.2159955476791,-41.11176956270244,0 174.2160591665734,-41.11180283967555,0 174.2160901802621,-41.11181817771891,0 174.2161610074653,-41.11184785019209,0 174.2162341808659,-41.11188112708903,0 174.2162439040197,-41.11188665879978,0 174.2163434808021,-41.11196888530064,0 174.2163931023403,-41.11203082672705,0 174.2164121293292,-41.11209788334229,0 174.216504917377,-41.11225646830744,0 174.216589658173,-41.11230307233868,0 174.2166299750992,-41.11231807507824,0 174.2167085975713,-41.11232293671085,0 174.2169332320738,-41.11231924876398,0 174.2171474727143,-41.11227901572484,0 174.2171511615614,-41.11227851284959,0 174.2171520828282,-41.11227809416096,0 174.2171618899548,-41.11227507562263,0 174.2172219050095,-41.11225479190881,0 174.2172509062593,-41.11216032800049,0 174.2171992727553,-41.11209545185355,0 174.2171696849366,-41.11201683016712,0 174.2170758923705,-41.11189336418892,0 174.2170223304534,-41.11185631626018,0 174.2169634904386,-41.11183083511508,0 174.2168163045811,-41.11171474645364,0 174.2168107723777,-41.11164006279314,0 174.2168827728233,-41.11152707514698,0 174.2170347365079,-41.11154526439031,0 174.2171998604866,-41.11162816141658,0 174.2174286861832,-41.11167166324836,0 174.2174602863269,-41.11167895527733,0 174.2176438502174,-41.11174114875533,0 174.2177368054594,-41.11177350308113,0 174.2178009260092,-41.11179018325132,0 174.2180150841645,-41.11171390842775,0 174.2181331852082,-41.11154543103068,0 174.2182124774195,-41.11141945099186,0 174.2183115515047,-41.11132926220181,0 174.2184956189918,-41.11128743611576,0 174.218508778262,-41.1113026912239,0 174.2185920936017,-41.11135541434423,0 174.2188368454211,-41.11136974704633,0 174.2189559525062,-41.11136924433136,0 174.2191370860866,-41.111367064504,0 174.219225262994,-41.11135415634047,0 174.2192550194698,-41.11148709265093,0 174.2192794100228,-41.11157191842166,0 174.21928821047,-41.11160049974919,0 174.2193550154827,-41.11158189327629,0 174.2195188810932,-41.11160879889914,0 174.219706720021,-41.11166654983275,0 174.2198073028474,-41.11181088575281,0 174.2198145112607,-41.11184114493625,0 174.2198153487944,-41.11185061585979,0 174.2198157675208,-41.11186738031454,0 174.2198163544547,-41.11188808389327,0 174.2198478709589,-41.11198020064362,0 174.2199425030652,-41.11206477425922,0 174.2200830675515,-41.11212177131851,0 174.2203060260212,-41.11216963167195,0 174.2203940359181,-41.11220508716549,0 174.2205281455861,-41.11229904793387,0 174.2206697175415,-41.11238613580105,0 174.2207970377699,-41.11239041105359,0 174.2208351745639,-41.1123512680241,0 174.2208990445895,-41.11232645747478,0 174.2209719681894,-41.11212839342729,0 174.2209834511532,-41.11196637124039,0 174.220993327815,-41.11193658681379,0 174.2210410351906,-41.11190026800151,0 174.2210390227426,-41.11189797433278,0 174.2210033165322,-41.1118823838017,0 174.2209387755695,-41.11182069347989,0 174.2208298955194,-41.11171072200403,0 174.220725036566,-41.1116181018383,0 174.2207129675137,-41.11160611606479,0 174.2206407987383,-41.11150276703611,0 - - -
- - Queen Charlotte Kenepuru Saddle To Endeavour Inlet - - - - - - - - - - - - - - -
Queen Charlotte Kenepuru Saddle To Endeavour Inlet
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)10.544
NAMEQueen Charlotte Kenepuru Saddle To Endeavour Inlet
ISLANDSouth
LEGALSTATDOC
TA_NAMEQueen Charlotte Walkway
Fromkm1714.95
Tokm1725.494
categoryWalking Track
CycleCycleway
walkidQueen Charlotte Track
GuidebookNelson Marlborough
colourred
mapNamemap076
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 174.1426854954504,-41.12963039307034,0 174.1426124360024,-41.12953953739172,0 174.1425031893689,-41.12929092592934,0 174.1425011771121,-41.12928975325588,0 174.1424964831503,-41.12928782530346,0 174.1424047855032,-41.12919914416695,0 174.1423461955124,-41.12915463582213,0 174.1423228936968,-41.1291225343399,0 174.142181658485,-41.12895355518358,0 174.1421369845163,-41.12891466291679,0 174.1420084892697,-41.12891482985476,0 174.1419933174199,-41.12891893738893,0 174.1419807454479,-41.12892279305714,0 174.1419684241741,-41.1289226251544,0 174.1419596234651,-41.1289213684402,0 174.141897764309,-41.12892807364793,0 174.1417209905438,-41.12889588724552,0 174.1416139529412,-41.12884433809931,0 174.1415242658047,-41.12879195214048,0 174.141441871471,-41.12863663476021,0 174.1413865515771,-41.12849087384723,0 174.141360316253,-41.12831016003207,0 174.1413813549525,-41.12813824681053,0 174.1413777505732,-41.12799935892306,0 174.1414552829383,-41.12781847711779,0 174.141597633455,-41.12763873553414,0 174.1416106845013,-41.1276222570437,0 174.1417337304271,-41.12742142749508,0 174.1417047293678,-41.12724062944273,0 174.1416673462097,-41.12716007932907,0 174.1416591308071,-41.1271439863563,0 174.1415332346087,-41.12703602714255,0 174.1414196605795,-41.12693997019423,0 174.1413932575208,-41.12687031601419,0 174.1414051600737,-41.12684558967614,0 174.1414160556089,-41.1268367891898,0 174.1414424587129,-41.12682128187034,0 174.1416086720454,-41.12680275771552,0 174.1416897250286,-41.12680116622278,0 174.1417613897453,-41.12678976636216,0 174.141785027554,-41.12678448589526,0 174.1417934935491,-41.12678012688087,0 174.1419330525622,-41.12676269337074,0 174.142122818128,-41.12677903746918,0 174.1421692542395,-41.12677166086027,0 174.1421852627986,-41.12677317036863,0 174.142393470541,-41.12679169389929,0 174.1424893588774,-41.12683083839571,0 174.1425713342646,-41.12685975464152,0 174.1427774445387,-41.12689118663369,0 174.1428865767263,-41.12687149020398,0 174.1429632716768,-41.12684818813126,0 174.1430991420748,-41.12677878601073,0 174.1431291491004,-41.12677182876671,0 174.1432948598809,-41.12672061607785,0 174.1432973740509,-41.12671852023315,0 174.143359232515,-41.12669262047322,0 174.1434504281158,-41.126657416273,0 174.1435346654345,-41.12657234005677,0 174.143484625531,-41.12641467613764,0 174.1434809383431,-41.12638626071436,0 174.1434843747631,-41.12637704135653,0 174.1434905773851,-41.12634703426511,0 174.1434846261975,-41.12633923944847,0 174.1434775845852,-41.12633094110384,0 174.1434750708949,-41.12632448675127,0 174.1434251977164,-41.1262105774096,0 174.1433334159626,-41.12608887251203,0 174.1432980450418,-41.12604059229345,0 174.1432916748972,-41.12602609081325,0 174.1433484203171,-41.12594889376635,0 174.143533743955,-41.1258559385027,0 174.1435644223301,-41.12582324911767,0 174.1435411199903,-41.12589893785862,0 174.1435157230496,-41.12592953183592,0 174.1434387765044,-41.12599776045615,0 174.143500049079,-41.1260300306782,0 174.1435130409624,-41.12600689669545,0 174.1436939214163,-41.12585132795698,0 174.1437463931415,-41.1257427827786,0 174.1437418675384,-41.12573448469354,0 174.1438067425956,-41.12569467102571,0 174.1438222495514,-41.1256867919587,0 174.1438512499894,-41.12557732409421,0 174.1440033821517,-41.12552292494861,0 174.1441075686949,-41.12542276209362,0 174.1442086549317,-41.12537339247898,0 174.1443288504858,-41.12524841786769,0 174.1443849258272,-41.12519008028063,0 174.1444118315533,-41.12515915133895,0 174.1444292664687,-41.12503099174518,0 174.1444373971642,-41.12499645794442,0 174.1444400793851,-41.12497709605901,0 174.1444189565899,-41.12488766121708,0 174.1444202982899,-41.12487609448737,0 174.1444514780969,-41.12477023134682,0 174.1444265843722,-41.12468322644062,0 174.144467152617,-41.12450854772435,0 174.1447289190874,-41.12448591606197,0 174.1450570708971,-41.12444736021411,0 174.1451804524701,-41.12444668946931,0 174.1452110475018,-41.12440997578499,0 174.1452759220646,-41.12415952475463,0 174.1453638493944,-41.12404678808061,0 174.1454475844995,-41.12393556130125,0 174.1454609950671,-41.12392868741272,0 174.1455728934409,-41.123706316101,0 174.145650677051,-41.12356273379091,0 174.1456799304494,-41.12336701594832,0 174.1457189895522,-41.12321798617368,0 174.1457087636388,-41.12305202369809,0 174.1457481595117,-41.12288798986924,0 174.1457719639956,-41.12284616498936,0 174.1458384319724,-41.12267525822623,0 174.145994334915,-41.12233763532201,0 174.1460739627954,-41.12219304709794,0 174.1461703549877,-41.12204049576204,0 174.1463228223824,-41.12194385263709,0 174.1464349723708,-41.12181527436332,0 174.1464628001314,-41.12178694441857,0 174.1466369757278,-41.12165551468487,0 174.1466383170288,-41.12162383170626,0 174.1466409995325,-41.12157236685557,0 174.1465148517239,-41.12141721820581,0 174.1464673258654,-41.12139198835849,0 174.1463190503999,-41.12126382909921,0 174.1462030445077,-41.12108177375286,0 174.1461791561819,-41.12095654807233,0 174.1462125165488,-41.12084037488947,0 174.1461361564982,-41.12063585675282,0 174.1461104254696,-41.12055614509445,0 174.1460356577249,-41.12050199810902,0 174.1460026332948,-41.12050903927145,0 174.1459271962034,-41.12052446073906,0 174.1459230884677,-41.12049286169064,0 174.1459427865172,-41.12042538735871,0 174.1460269411832,-41.12031072305474,0 174.1461732894433,-41.12020402072254,0 174.1462146955292,-41.12015984882079,0 174.1462835953993,-41.12008742868244,0 174.1463958285192,-41.11999405388614,0 174.1463493935138,-41.11981719646877,0 174.1463273483253,-41.11976707303251,0 174.1463631395102,-41.11971376448449,0 174.1463841774682,-41.11969423428495,0 174.1464581901862,-41.11965609640345,0 174.1465105774292,-41.1197631327027,0 174.1466359699024,-41.11993454350708,0 174.146723435959,-41.12003245151791,0 174.1467289245206,-41.12014752741779,0 174.1467689911219,-41.1200712522283,0 174.1467741884993,-41.11997745808004,0 174.1467239797572,-41.11985156220004,0 174.1467215484938,-41.11978333337358,0 174.1467761990819,-41.11965550906209,0 174.1469408194625,-41.11966271849411,0 174.1471555644451,-41.11966523180934,0 174.147181716241,-41.11966925638757,0 174.1472871594175,-41.11961133729976,0 174.147311551208,-41.1195939858431,0 174.1475548775612,-41.11954218584032,0 174.1475799401638,-41.11952232077423,0 174.1477188283194,-41.11952491942103,0 174.1478189076777,-41.11950354570693,0 174.147857297119,-41.1194618867206,0 174.1479587182953,-41.11935032418752,0 174.1477828665881,-41.11920942529336,0 174.1477534448187,-41.11918042326076,0 174.1476745715579,-41.11912669476256,0 174.1476449838536,-41.11909383811263,0 174.1476817794072,-41.11895830311114,0 174.1476156470901,-41.11892427200796,0 174.1475848847012,-41.11879628120619,0 174.1475586501359,-41.1186219370603,0 174.1475501001223,-41.11856996883037,0 174.1475407966639,-41.11851741538965,0 174.1474247904291,-41.1183737488544,0 174.1475027424433,-41.11824793592192,0 174.1475292304553,-41.1181950466604,0 174.1476767512806,-41.11793855972955,0 174.1478096041919,-41.11764670187188,0 174.1479051579458,-41.11746406137024,0 174.1479141272282,-41.11743296442035,0 174.1479707879006,-41.11731553430084,0 174.1480737174289,-41.11711218867173,0 174.148158124134,-41.11709718534841,0 174.1483014544697,-41.1169231770029,0 174.1483172119766,-41.11688218933973,0 174.1483765562747,-41.11671002514416,0 174.14844143237,-41.1165036616673,0 174.1484548431711,-41.11646376480138,0 174.1485190482772,-41.1162851457114,0 174.1486177870585,-41.11608523819369,0 174.1486138475254,-41.11602815715901,0 174.1486648941394,-41.11594274506587,0 174.1486396635978,-41.1157884352555,0 174.1486336294422,-41.11578323846478,0 174.1486798125577,-41.115707045705,0 174.1486766283685,-41.11555139368346,0 174.1486702573991,-41.11554183867587,0 174.148597503307,-41.11539289304655,0 174.1485216471575,-41.11525442375301,0 174.1484788148059,-41.11521159167858,0 174.1485763815828,-41.11509751416368,0 174.1485034580818,-41.1150540119779,0 174.1484083239252,-41.11497144990504,0 174.1482718662042,-41.11485686975024,0 174.1482069895632,-41.11476617811221,0 174.1482031350074,-41.11474203776753,0 174.1481579555228,-41.11464992110775,0 174.1479971906211,-41.11457582527618,0 174.1479806787743,-41.11456618482075,0 174.1477354237825,-41.11436677976868,0 174.1475484240356,-41.1142439007542,0 174.1475023235804,-41.11416058552491,0 174.1473491021494,-41.1140574039752,0 174.1471255574241,-41.11398808567423,0 174.1470991543295,-41.11399303085275,0 174.1470544795294,-41.11383612182255,0 174.1469579193281,-41.1137336951878,0 174.1469752705509,-41.11368189505121,0 174.1470145805564,-41.1135714209707,0 174.1471895955882,-41.11338626473729,0 174.147255979093,-41.11333689569474,0 174.1473588255768,-41.11321661516167,0 174.1474729869205,-41.11317856135056,0 174.1475270499476,-41.11311770920467,0 174.1475603256488,-41.11306356234947,0 174.1475629248392,-41.11305140833462,0 174.147557056821,-41.11295861965222,0 174.1475030785383,-41.11282216290869,0 174.1474530384087,-41.11273599717475,0 174.1474934387773,-41.11253952526005,0 174.1474716454529,-41.11237792235822,0 174.1473465044807,-41.11224389483446,0 174.1473152402488,-41.11219637021445,0 174.1472878309217,-41.11217399033886,0 174.1472237091887,-41.11209201464563,0 174.1471936185995,-41.11200216138638,0 174.1471174271612,-41.11189034673014,0 174.14704869548,-41.1117160029555,0 174.1470201970115,-41.11164567894859,0 174.1469975649829,-41.11157443267349,0 174.1468778722662,-41.11147594475395,0 174.1468424154764,-41.11145423580174,0 174.14660185656,-41.11136312474588,0 174.1464679966902,-41.11128969933514,0 174.1463314557797,-41.11116682139986,0 174.1461938248163,-41.11107436814275,0 174.146100031093,-41.11102776526878,0 174.1459567841081,-41.11101360049161,0 174.1458633258536,-41.11103497337862,0 174.1457259470295,-41.11108903731005,0 174.1456887312109,-41.11109716677268,0 174.1456454807528,-41.11108736041644,0 174.1456768284899,-41.11094914348141,0 174.1456868034136,-41.11067404911006,0 174.1457498351695,-41.11057036467759,0 174.1456127075348,-41.1105044832725,0 174.1456464028213,-41.11040348130775,0 174.1458230087917,-41.1102821947002,0 174.1457474047576,-41.11012260298639,0 174.1456928376473,-41.10999603725119,0 174.1456796784697,-41.10997131014275,0 174.1456747325992,-41.10995940775676,0 174.1456635022754,-41.10992587974275,0 174.1456611544347,-41.10986838005879,0 174.1455976194953,-41.10978154416414,0 174.1454276347226,-41.10969998777319,0 174.1452664509777,-41.1096843142029,0 174.1452611696026,-41.10967174134865,0 174.1453173293404,-41.10953394168332,0 174.1453757511325,-41.1093343690862,0 174.1453556338608,-41.10917310121646,0 174.1452270563691,-41.10900588190952,0 174.1451689689012,-41.10888250092754,0 174.1449413169361,-41.10861620813143,0 174.1448768600693,-41.10832611047425,0 174.1448999943479,-41.10825117598957,0 174.1449145793294,-41.10793065162338,0 174.1448984024562,-41.10775404468556,0 174.1448040212292,-41.1075183462188,0 174.1447097244353,-41.10731969510423,0 174.1446620314642,-41.1071367183627,0 174.1445958987101,-41.10692708689816,0 174.1446324441081,-41.10680320220128,0 174.1445560014344,-41.1066077361515,0 174.1445427573884,-41.1065897151681,0 174.1444430135012,-41.10650438680666,0 174.144470505105,-41.1064901380561,0 174.1446072978571,-41.10643154779506,0 174.1447746015011,-41.10628394332015,0 174.1450501136651,-41.1061393553718,0 174.1452148179086,-41.10611722717288,0 174.1452748327042,-41.10610959994752,0 174.1453958674805,-41.10601136433166,0 174.145618826331,-41.10589024495478,0 174.1457507575402,-41.10574716594444,0 174.145888053373,-41.10562361732956,0 174.1459140373024,-41.10561783347088,0 174.1460048124755,-41.10561649181673,0 174.1460276117905,-41.10561104407784,0 174.1460276948853,-41.10561096037835,0 174.1460288689627,-41.10560978668749,0 174.1461024614282,-41.10563644105901,0 174.1461379164367,-41.1056433144058,0 174.1462245020672,-41.10572093091292,0 174.1462700159143,-41.10573090551799,0 174.1463691744865,-41.1058680331186,0 174.1464550895302,-41.10590918794525,0 174.146494147456,-41.10594564935664,0 174.1465472900711,-41.10595436699744,0 174.1466006816002,-41.10595486970442,0 174.146729176913,-41.10602326624987,0 174.1467346251301,-41.10603215138447,0 174.1467917895674,-41.10606064879657,0 174.1468964803291,-41.10609333909431,0 174.1469718327468,-41.10610063108077,0 174.1469922854444,-41.10612183724569,0 174.1470986510176,-41.10625443897835,0 174.1471189347962,-41.10637924488749,0 174.1471465963971,-41.10645300564959,0 174.1471548937959,-41.10647169803364,0 174.1472251343078,-41.10654311250275,0 174.1472542189722,-41.10654344710596,0 174.1472667920419,-41.10664335917847,0 174.1472470111849,-41.1067086539078,0 174.1472822989736,-41.10687595699339,0 174.1473352717777,-41.10705834678591,0 174.1474846374978,-41.10726429033838,0 174.1476181624564,-41.10755019718784,0 174.1477432201123,-41.10770920226576,0 174.1478176504253,-41.10777667602611,0 174.1480979423815,-41.10777701228536,0 174.148058965469,-41.10784649701594,0 174.1481196512324,-41.1078849699546,0 174.1481033903593,-41.1079540373446,0 174.1481265245303,-41.10807708421865,0 174.1482773134507,-41.10825226521241,0 174.1483202300139,-41.10827313642061,0 174.1485630534241,-41.10848519911085,0 174.1486731077289,-41.10857429800431,0 174.1486731077698,-41.10857689676276,0 174.1486987555944,-41.10862509228455,0 174.1486551707692,-41.1086468024419,0 174.1484661592159,-41.10871871820019,0 174.1483196432385,-41.10877764325404,0 174.1483166257501,-41.10881628444959,0 174.1484112570111,-41.10903153149824,0 174.1485570180104,-41.10926211706253,0 174.1486116685883,-41.10933839175849,0 174.1488401595374,-41.10936194596659,0 174.1488654728645,-41.1093664721724,0 174.14909262147,-41.10950837678158,0 174.1493527954637,-41.10951013839535,0 174.1495153205337,-41.10946093566942,0 174.1497177438379,-41.10942556418021,0 174.1497239466451,-41.10944953603357,0 174.1498639253974,-41.10961222894464,0 174.1498724740621,-41.10962429876601,0 174.1499365120101,-41.10966620887859,0 174.1499449776162,-41.10968020629652,0 174.1500591392299,-41.1098226990101,0 174.1501003774723,-41.10987642700104,0 174.1501344094197,-41.10989830411928,0 174.1501387669117,-41.1098945322801,0 174.1501498320903,-41.10989151408153,0 174.1502312205255,-41.10989151397902,0 174.1502380088794,-41.10992445534791,0 174.1501973571975,-41.11000492091178,0 174.1503857821821,-41.11013542824061,0 174.1504196445822,-41.11017507398125,0 174.1504861139827,-41.11031220184675,0 174.1506498958626,-41.11036383378341,0 174.1507648118657,-41.11046500389142,0 174.150892132904,-41.11053960300433,0 174.1510776234601,-41.11064588584922,0 174.1512767778912,-41.1106463053113,0 174.1513784505794,-41.11072970501455,0 174.1514454222706,-41.11073423134253,0 174.1514672150493,-41.11074512735848,0 174.1515069451649,-41.11084746977169,0 174.1516620115616,-41.11105416773008,0 174.1518028274523,-41.11114544670253,0 174.1518153997916,-41.1112529031275,0 174.1519104503811,-41.11144208246776,0 174.1520207508492,-41.11151780623321,0 174.1520652645619,-41.11154836506834,0 174.152105831513,-41.11164794249464,0 174.1521713784457,-41.11175388901222,0 174.1522955155523,-41.11185983675441,0 174.1524862031671,-41.11197827269442,0 174.1524878802315,-41.1119779379427,0 174.1526427765802,-41.11202839751108,0 174.1528290231111,-41.11207625696079,0 174.1529721017028,-41.11215144279282,0 174.1532926255783,-41.11216971619385,0 174.1535127349147,-41.11206142107913,0 174.1537238753967,-41.11195681488616,0 174.1539625082036,-41.1118866589393,0 174.1540407114977,-41.11185950066323,0 174.1541716361325,-41.11187006220567,0 174.1541977876356,-41.11190183017124,0 174.1542008046089,-41.1119497737509,0 174.1542564610699,-41.11206678607019,0 174.1542560417525,-41.11218019322069,0 174.1542742315818,-41.11225738987313,0 174.1544118616332,-41.11238714197435,0 174.1544643325196,-41.11242779445503,0 174.1546364965485,-41.11248361808613,0 174.154685866328,-41.11258001035829,0 174.1547593747578,-41.11276902216575,0 174.1548085766729,-41.11293858741237,0 174.1548554322779,-41.11300287664823,0 174.1549291094072,-41.1130798231771,0 174.1550958250682,-41.11317143741262,0 174.1553725117038,-41.11324226374519,0 174.1555773654128,-41.1133287647687,0 174.1556307578582,-41.11344007733536,0 174.1558651154504,-41.11362003604396,0 174.155984139351,-41.113792787024,0 174.1560773456615,-41.11395279780385,0 174.1561525316523,-41.11408246640014,0 174.1562462414706,-41.1142157377033,0 174.1562642624721,-41.11423577124658,0 174.156418488635,-41.11429922167645,0 174.1567074129546,-41.11422847951929,0 174.1569659261622,-41.11419672519939,0 174.1570172087466,-41.11419042532117,0 174.1572871903651,-41.114159075748,0 174.157461869052,-41.11410861735387,0 174.1575396528054,-41.11412110608966,0 174.1576029359689,-41.11410610272723,0 174.1576383083931,-41.11423132781688,0 174.1575610272822,-41.11438840517803,0 174.1575231404351,-41.1144383612478,0 174.1575218826101,-41.11449225678441,0 174.1575570867666,-41.11452586788187,0 174.1575635412875,-41.11452838285806,0 174.1577533074319,-41.11451673208484,0 174.1578913567602,-41.11451413393177,0 174.1579563167944,-41.11449510684865,0 174.1582656090686,-41.11451673198039,0 174.1582669505586,-41.11451648068529,0 174.1583007295452,-41.11451514027532,0 174.1583107876071,-41.11456694032534,0 174.158454956386,-41.11475285028492,0 174.1584265418741,-41.11488947548209,0 174.1585107797269,-41.11501134799556,0 174.1585660166217,-41.11509625673831,0 174.1586077593847,-41.11524277313919,0 174.1586334906393,-41.11530320623177,0 174.1586418732126,-41.1153317054901,0 174.1586452265525,-41.1153410092545,0 174.1586788374688,-41.11550110290541,0 174.1587090118763,-41.11569564722971,0 174.1589208231087,-41.11580511511614,0 174.1591497315519,-41.11591022374065,0 174.159419378186,-41.11593855373372,0 174.1595902851756,-41.11603737678166,0 174.15970176453,-41.11613108691098,0 174.1597041945418,-41.1161300814971,0 174.1597667245583,-41.11615598086313,0 174.1598047777167,-41.11616017191079,0 174.1598293158669,-41.11616675277037,0 174.1599222922248,-41.11608984840677,0 174.159965039708,-41.11598432031685,0 174.1600298317214,-41.11589664528577,0 174.1600613482685,-41.11581676468042,0 174.160109963474,-41.11574266872949,0 174.160296544449,-41.11567578205227,0 174.1605172396743,-41.11561434162262,0 174.1608255256543,-41.11555701028596,0 174.16095477539,-41.11556120073241,0 174.160999617841,-41.11556933233562,0 174.1611126898102,-41.11557025367633,0 174.1613216513043,-41.11556656640934,0 174.1614995985358,-41.11552088362603,0 174.1617819010963,-41.11538115790381,0 174.1620446736715,-41.11539163545887,0 174.1622991490906,-41.11548400410354,0 174.1624555553743,-41.11557209768457,0 174.1624564770743,-41.11557134344031,0 174.1624987216187,-41.11561719202594,0 174.1625177494977,-41.11573378527386,0 174.1626798551218,-41.11572179838673,0 174.1627675291155,-41.11570210066062,0 174.1628469897898,-41.11568081122478,0 174.1628833671006,-41.11565767678984,0 174.1630090115755,-41.11554242632506,0 174.1630540226958,-41.11552683517807,0 174.1632270244213,-41.11541476891097,0 174.1632867874172,-41.1153201383702,0 174.1634022066668,-41.11516146772767,0 174.1635562670368,-41.11505409615818,0 174.163568503636,-41.11504185796409,0 174.1636563458631,-41.11499600910805,0 174.1636633867482,-41.11498611948137,0 174.1636786416158,-41.11485762399612,0 174.1636262547974,-41.11465612344102,0 174.1636098268023,-41.11440944401149,0 174.1636579389604,-41.11433115671098,0 174.1637524868793,-41.11418899975702,0 174.1638403289781,-41.11412278321332,0 174.1638931353507,-41.11410400709135,0 174.1640994144969,-41.11389605208524,0 174.164109556092,-41.11379194908502,0 174.1641676433203,-41.11375699730065,0 174.1644539678213,-41.11380536050584,0 174.164720178335,-41.11377853824045,0 174.1649878963116,-41.1137907759762,0 174.1651441338568,-41.11375465001369,0 174.1651356688553,-41.11364006897428,0 174.1651358356097,-41.1136400690874,0 174.1651359198822,-41.11363998536236,0 174.165136087519,-41.11363990079848,0 174.1651361718074,-41.11363981797528,0 174.1651362551817,-41.11363981802972,0 174.1651366742679,-41.11363805727173,0 174.165171459339,-41.11366010244468,0 174.1652002927326,-41.11366295182597,0 174.1653333977816,-41.11353345137484,0 174.165500114362,-41.11327813828507,0 174.1655757188979,-41.11321837491263,0 174.165596672797,-41.1131344731808,0 174.1656184657971,-41.11309080351978,0 174.1656783971414,-41.11299684199548,0 174.1657422675379,-41.11290916676074,0 174.165728437244,-41.11280280111917,0 174.1657487206693,-41.11275116849592,0 174.1658283492096,-41.11264807091501,0 174.1657752079466,-41.11252778970111,0 174.165689879732,-41.11246408791173,0 174.1656216510141,-41.1124126230978,0 174.1655488130055,-41.11222863968465,0 174.1655478849567,-41.11217536519388,0 174.1659825589346,-41.11204009922141,0 174.1660038254167,-41.11204364112606,0 174.166200856355,-41.11193925222413,0 174.1663760224373,-41.11179068577951,0 174.1664166752993,-41.11172036186823,0 174.1663261503176,-41.11155372870115,0 174.1663175165177,-41.11142163103717,0 174.1662947182646,-41.11126229123364,0 174.1663034351592,-41.1111493027169,0 174.1663572849804,-41.11109430440946,0 174.1664019131199,-41.11108050568328,0 174.1666734133818,-41.11108861800463,0 174.1668385354075,-41.11103505703838,0 174.1668910912848,-41.11105081531196,0 174.166940041037,-41.1110737821102,0 174.1670122930332,-41.11110529814192,0 174.1670723906053,-41.11111803798062,0 174.1670837073833,-41.11111594341418,0 174.1672807649422,-41.11108417514004,0 174.1672833641708,-41.1110309504908,0 174.1674087643497,-41.11107359283466,0 174.1675390657642,-41.11112625519466,0 174.1676124189118,-41.1111120153378,0 174.1676346492286,-41.11106087428371,0 174.1677328848829,-41.11094495242732,0 174.1679078149258,-41.11075485013828,0 174.1681015214981,-41.11039752989976,0 174.1681960684615,-41.11017339819787,0 174.1683146731611,-41.10998153611992,0 174.1683507147137,-41.10992772365528,0 174.1685051935655,-41.10982923730349,0 174.1686564869581,-41.10969688577472,0 174.1687219503614,-41.10957627095945,0 174.1688656163765,-41.10947987914064,0 174.1689433997307,-41.10933730336143,0 174.1691386984209,-41.10925239377734,0 174.1691733988139,-41.109227834915,0 174.1692037411328,-41.10917083811565,0 174.169258558672,-41.1091508050527,0 174.1693003004558,-41.10915097318634,0 174.1693194777854,-41.10912783383533,0 174.1693203656555,-41.10912430997437,0 174.1693501730555,-41.1090059663671,0 174.1694086794853,-41.10889012835254,0 174.1694938390659,-41.10872332827599,0 174.16953323346,-41.10859936009384,0 174.1695239301547,-41.1085860329064,0 174.1695433762009,-41.1085631502137,0 174.1695971882469,-41.10852165978544,0 174.1695985295426,-41.10852409088726,0 174.1696020494017,-41.10852459291732,0 174.1696340675423,-41.10849743627161,0 174.1696825994102,-41.10845276110153,0 174.1697326397307,-41.10841940152176,0 174.1698277734433,-41.10830238877141,0 174.1698160401505,-41.10827078871542,0 174.1698304557642,-41.10815386236041,0 174.16975351042,-41.10806233074544,0 174.1696847788644,-41.10798345812813,0 174.1696477304139,-41.10789452634144,0 174.1696826831881,-41.10773124625991,0 174.1696336494568,-41.10757877975153,0 174.1697481464137,-41.10742463572504,0 174.1698231645331,-41.10723587641274,0 174.1699039176596,-41.10703483340539,0 174.1699577765033,-41.10687268807021,0 174.1700179599803,-41.10674226614982,0 174.1700537498716,-41.10646951807512,0 174.1700340526988,-41.10629500707805,0 174.1699783967939,-41.10626357477457,0 174.1699502336045,-41.10623356841465,0 174.1699957475244,-41.10594170969102,0 174.1700027930953,-41.10581499186519,0 174.1699917523185,-41.10575428773339,0 174.1700351600101,-41.10570794395031,0 174.1701282645291,-41.10567516468693,0 174.1703449374652,-41.10563292124661,0 174.1705786246112,-41.10564096719532,0 174.1707421561235,-41.10558757533693,0 174.1708310875836,-41.10555421547609,0 174.1708686384972,-41.10552353694369,0 174.1710112145606,-41.10542169746592,0 174.1711939405154,-41.10525472938733,0 174.1713211777334,-41.10506228091723,0 174.1713801863846,-41.1048694127133,0 174.1714298911225,-41.10469515284281,0 174.1713136343223,-41.10451846299801,0 174.171169130475,-41.10428896633083,0 174.1711658610423,-41.10413934910718,0 174.1712338378707,-41.10391337342229,0 174.1712454045993,-41.10376987479739,0 174.1713207960071,-41.10366289530321,0 174.1714375166729,-41.10350246288735,0 174.1713720789082,-41.1033629765376,0 174.1712648052965,-41.10317698746713,0 174.1712079147229,-41.10299083648537,0 174.1711030390007,-41.10284597959306,0 174.1711534953473,-41.10266312138749,0 174.1712461851507,-41.10238182240823,0 174.1712894830288,-41.102231424525,0 174.1712912763017,-41.10205194530103,0 174.1713140308885,-41.10190678622998,0 174.1713323595298,-41.10159512206055,0 174.1714191622643,-41.10149871512847,0 174.1715106925118,-41.10141866690229,0 174.1715219235614,-41.10139704201687,0 174.1716291295004,-41.10130626631042,0 174.1716656737091,-41.10126888331444,0 174.1716913225982,-41.10122705676073,0 174.1717188147015,-41.10121088014356,0 174.1718286755966,-41.10101761238452,0 174.17191114058,-41.10084669236052,0 174.1718862524247,-41.10069363331182,0 174.1718799990824,-41.10046639894811,0 174.1719022860378,-41.10008142022592,0 174.171766540835,-41.09992779168309,0 174.171721749526,-41.09984529961589,0 174.1716610644302,-41.09972761797713,0 174.1715350002179,-41.09967917142108,0 174.1713438933245,-41.09964337998732,0 174.1713070120518,-41.09963172862489,0 174.1711043378205,-41.09951589197469,0 174.1709488535591,-41.09936065882413,0 174.1711328780555,-41.09919691944488,0 174.1712862254334,-41.0990371173181,0 174.1715587209857,-41.09900409286259,0 174.171702890222,-41.09895816044438,0 174.171922747063,-41.098971655426,0 174.1719879575197,-41.09895447170852,0 174.1720531695486,-41.09891306499567,0 174.1721094124966,-41.09889998902543,0 174.1722764629946,-41.09885531388381,0 174.1724448561953,-41.09882287637977,0 174.1726082340276,-41.0988213892199,0 174.172723386385,-41.09884005862261,0 174.1728787837504,-41.09889888403266,0 174.1729876686311,-41.09896724558328,0 174.1731089473382,-41.0989312756218,0 174.173184643603,-41.09882510245005,0 174.1731133111929,-41.09864257276412,0 174.1730723547018,-41.09847650269959,0 174.1729634615365,-41.09822967647531,0 174.172892627292,-41.09798605679264,0 174.1728615333885,-41.09784024750896,0 174.1728197259269,-41.09762627606181,0 174.1727229120488,-41.09752425441612,0 174.172605453645,-41.09741885049508,0 174.1724090853785,-41.09723879094902,0 174.1723003820105,-41.09709137608483,0 174.1724001272744,-41.09691309333381,0 174.1724457010473,-41.0968048319762,0 174.1724878108784,-41.09667983687758,0 174.172399943299,-41.0965465829243,0 174.1722195497464,-41.09648968932843,0 174.1721484725846,-41.09645088076077,0 174.1720489784958,-41.09633705490498,0 174.1721858553773,-41.0962044533852,0 174.1723338788109,-41.09608635167697,0 174.1724824905263,-41.09599004363843,0 174.1725697463251,-41.09588124720283,0 174.172534710185,-41.09580203764185,0 174.172503110582,-41.09571084331191,0 174.1724670680555,-41.09559290940569,0 174.1724547458042,-41.09551051498642,0 174.1724434310415,-41.09536089839558,0 174.1724451065579,-41.09533265080395,0 174.1726605218786,-41.0952915796633,0 174.1727945488791,-41.09520432390564,0 174.1729583988452,-41.0951862417465,0 174.1730788823197,-41.09510596319534,0 174.1731445787164,-41.09506097751535,0 174.1731896715965,-41.09502386186522,0 174.1732901709566,-41.09490391704217,0 174.1733453234472,-41.0948448251694,0 174.1734342557622,-41.09482370221762,0 174.1735572179378,-41.09486502523835,0 174.1738005449998,-41.09491104178439,0 174.1740651606669,-41.09496418315018,0 174.1742436117953,-41.09504079290313,0 174.1743482174209,-41.09513953250993,0 174.1745580170862,-41.09524112070449,0 174.1747552758706,-41.09526734628261,0 174.1749282099286,-41.09519850866854,0 174.1750605405074,-41.09516122680501,0 174.1752544700582,-41.09514690791877,0 174.1753255474993,-41.09512352272821,0 174.1754046731572,-41.09506501672564,0 174.1754459954872,-41.09499293334857,0 174.1756318232654,-41.09481783468657,0 174.1757425961108,-41.09460607869084,0 174.1760349928809,-41.09465329851343,0 174.1762914792475,-41.09461901570104,0 174.1763851880704,-41.09462622537325,0 174.1765949044832,-41.09463779187178,0 174.1766702794514,-41.09457071002301,0 174.1766330021023,-41.09445442045131,0 174.1766677653696,-41.09433629163998,0 174.1767056292133,-41.09423998594641,0 174.1767179730323,-41.0941653173789,0 174.1766549177273,-41.09409129099808,0 174.1764359571275,-41.09397294109806,0 174.1764022042206,-41.09377772397195,0 174.1763651126473,-41.0936761313728,0 174.1763250972884,-41.09349987928829,0 174.1764312049573,-41.09337405179063,0 174.1763564330737,-41.09318962869956,0 174.176338837326,-41.09297666596411,0 174.1763004465691,-41.09284406362468,0 174.1762658301012,-41.09266024923977,0 174.1761437065747,-41.09256360613394,0 174.1760839427858,-41.09245363518819,0 174.1761687675826,-41.09231701039904,0 174.1761093144164,-41.09219727450473,0 174.1758902396783,-41.0920879361035,0 174.1758878899837,-41.09194141705955,0 174.1758904891086,-41.0919207139501,0 174.1760519238347,-41.09173119876945,0 174.1761065737301,-41.09166297044236,0 174.1762221597477,-41.09154746841119,0 174.1761997815839,-41.09137278907293,0 174.176048570567,-41.09124102489282,0 174.1758876392809,-41.09110289209131,0 174.1757726387828,-41.09100348251346,0 174.1756985428791,-41.090961824388,0 174.1757290524496,-41.09090021742583,0 174.1757475771658,-41.09080089175117,0 174.1757920010758,-41.0906159867448,0 174.1757173777843,-41.09043467022909,0 174.1757285496169,-41.09029831270836,0 174.1759268655525,-41.09010687012923,0 174.1760037276613,-41.08995624744103,0 174.1759698647352,-41.08979632027019,0 174.1759232621918,-41.08970462235428,0 174.1758101060154,-41.08958090612821,0 174.1757149708489,-41.08940052674338,0 174.1757194140174,-41.0894017839334,0 174.1757220958122,-41.08929055571758,0 174.1756453569634,-41.08915229203943,0 174.1756351771838,-41.08904082123765,0 174.1756765838866,-41.0888358442259,0 174.1757199250994,-41.08873932343865,0 174.1758011373096,-41.08861304698769,0 174.1758266175174,-41.08859108706108,0 174.1760080865772,-41.08839193348072,0 174.1761342338807,-41.08820334037943,0 174.1761675497828,-41.08800891557629,0 174.1761732984568,-41.08797536484276,0 174.1761776761504,-41.08776146774981,0 174.1764546452058,-41.08721316204102,0 174.1766567784789,-41.08683298202536,0 174.1768755294625,-41.08653458703125,0 174.1769040280234,-41.08644892410734,0 174.1769135842221,-41.08640760120392,0 174.1769937148652,-41.08627323868157,0 174.1770704088644,-41.08614759386695,0 174.1771335245369,-41.08599554612869,0 174.1772248063815,-41.08581944246325,0 - - -
- - Queen Charlotte Torea To Kenepuru - - - - - - - - - - - - - - -
Queen Charlotte Torea To Kenepuru
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)21.736
NAMEQueen Charlotte Torea To Kenepuru
ISLANDSouth
LEGALSTATDOC
TA_NAMEQueen Charlotte Walkway
Fromkm1725.494
Tokm1747.231
categoryWalking Track
CycleCycleway
walkidQueen Charlotte Track
GuidebookNelson Marlborough
colourred
mapNamemap076
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 174.0329958114922,-41.20535032312948,0 174.0331507009339,-41.20549818428206,0 174.0331739195811,-41.20551796499321,0 174.0332802849227,-41.20566431295521,0 174.0332994802267,-41.20572986013374,0 174.0334216042614,-41.20583002449369,0 174.0334392059515,-41.2058311969663,0 174.0335349271719,-41.20595927346786,0 174.0335499306389,-41.20598307681736,0 174.0335718074242,-41.20605247950564,0 174.0336840409846,-41.2060917068541,0 174.0338012194907,-41.20611417047009,0 174.0338434653063,-41.20612699380666,0 174.0339429583933,-41.2061654669393,0 174.0340042305855,-41.20619388198431,0 174.0340200714185,-41.20619865975501,0 174.0342775645055,-41.20628591463112,0 174.0343550968809,-41.20636646514003,0 174.0343696810152,-41.20640602844667,0 174.0344503992592,-41.20655782384139,0 174.0343556833098,-41.20668883349936,0 174.0342863644345,-41.20680743742589,0 174.0342744624326,-41.2068320804499,0 174.0342530890718,-41.2068734034639,0 174.034244120387,-41.20707037831209,0 174.0342868680969,-41.20726399987698,0 174.0343830085291,-41.2073970198031,0 174.0344740363448,-41.20753967969987,0 174.0345537476657,-41.20761109376644,0 174.0346049608032,-41.20765065672725,0 174.0347436817828,-41.20770622914089,0 174.0349445121252,-41.20783866270047,0 174.034978878083,-41.2078604560573,0 174.0350344498592,-41.20791393170095,0 174.0350412390862,-41.20794041911651,0 174.0350414072429,-41.20800353466971,0 174.0350859981873,-41.20810118373772,0 174.0351750139142,-41.20823370223731,0 174.0352731660851,-41.20830285302116,0 174.0354736606765,-41.20842447399095,0 174.0357460735086,-41.2085298346806,0 174.0358360950786,-41.20853838394359,0 174.0359448077662,-41.20849764771517,0 174.0360997059746,-41.20858188592057,0 174.0363090862515,-41.20873007839662,0 174.0364343947996,-41.20878967430502,0 174.036435987411,-41.20878984102649,0 174.0364628102193,-41.2088225309008,0 174.0364052259601,-41.20889855365716,0 174.0363820084413,-41.20910391150531,0 174.0363956712244,-41.20913425442276,0 174.0364366576157,-41.20918018607085,0 174.0364981821718,-41.20922880089121,0 174.0365224045428,-41.20927968001372,0 174.0365993509315,-41.20949174233174,0 174.0366819128361,-41.20966809700837,0 174.0367140155715,-41.20979818381384,0 174.0368689972372,-41.20989507873802,0 174.0370378915184,-41.20994872283637,0 174.0370712522013,-41.20995425487958,0 174.0373012521382,-41.21001183948029,0 174.0374622684666,-41.21000303769334,0 174.037495377275,-41.21008140914176,0 174.0374863242565,-41.21016304833319,0 174.037464783168,-41.21032498667964,0 174.0374364520049,-41.21047217301847,0 174.0374803727248,-41.21061139592646,0 174.03752370641,-41.21073821508358,0 174.037524628966,-41.21080619246418,0 174.0376013240036,-41.21099470114843,0 174.0376021621693,-41.21100735843766,0 174.0376671224381,-41.21113350524475,0 174.0378369393689,-41.21127147091156,0 174.0379329116706,-41.21143852309372,0 174.0379229366201,-41.21146844563656,0 174.0378879853836,-41.2115161394221,0 174.037879099711,-41.21153265137701,0 174.0378841287577,-41.2117144554836,0 174.0379076819323,-41.21172543526377,0 174.0379334984444,-41.21176550125102,0 174.0379968661438,-41.21185133108911,0 174.0380344169946,-41.21196113434306,0 174.0380561256397,-41.21200430085197,0 174.038122007806,-41.21206414773773,0 174.0381620726332,-41.21208124706687,0 174.0381975291778,-41.21215173878655,0 174.0381717115684,-41.21232943512145,0 174.0381559534269,-41.21250729927198,0 174.0381698674361,-41.21263453650514,0 174.0381703713344,-41.21280854465704,0 174.0381918287208,-41.21291591673402,0 174.0381986179399,-41.21305069819213,0 174.038126617727,-41.21328547475127,0 174.0381250250958,-41.21329368882738,0 174.0381210021953,-41.21330240582123,0 174.0380646755866,-41.21338513596511,0 174.0380716324815,-41.21349099937179,0 174.03806777658,-41.21350047150636,0 174.0380286333865,-41.21359778513208,0 174.0380399491003,-41.21363642526843,0 174.0380328234361,-41.21366475568676,0 174.0380051639182,-41.21375980662881,0 174.0380275440257,-41.21382594032652,0 174.0380347521635,-41.21382795162496,0 174.0380361765818,-41.21382954395518,0 174.0380309798568,-41.21383750677799,0 174.0380474929808,-41.21388218295883,0 174.0380812724487,-41.21399449997667,0 174.0381303057839,-41.21413649046248,0 174.0382297148356,-41.21420455086549,0 174.0382971891103,-41.21424830451046,0 174.0383006255367,-41.2142473817612,0 174.0384452138337,-41.21434151093161,0 174.0386178811901,-41.21444871534813,0 174.0387139380465,-41.21453856908242,0 174.0387290251771,-41.21455625472676,0 174.0387692577159,-41.21464853962914,0 174.0388255010518,-41.21468885695224,0 174.0388870238132,-41.21473118577233,0 174.0389229818694,-41.21487250478723,0 174.0389008541894,-41.21495003737102,0 174.0389795595361,-41.2150334366692,0 174.0390633784721,-41.21510074434518,0 174.0391058744307,-41.21511951934896,0 174.0391171908253,-41.2151206089457,0 174.0392323582577,-41.21493838593381,0 174.0393858311719,-41.21487920997576,0 174.0394445036838,-41.21481877731814,0 174.0394396427462,-41.2144564268535,0 174.0394547300635,-41.21435257504889,0 174.0396409755629,-41.21422097910884,0 174.0396929437063,-41.2141563552145,0 174.0398077754514,-41.2140561074568,0 174.0398280599461,-41.21404395304202,0 174.0398559721054,-41.21400900150016,0 174.0399616678112,-41.21381940219302,0 174.0400057564009,-41.21371622067449,0 174.0401249473424,-41.21365109390088,0 174.0402022280094,-41.21336845642321,0 174.0401674433303,-41.21312211173786,0 174.0401984555173,-41.21289630294695,0 174.0402159750218,-41.21278373391266,0 174.0403187364645,-41.21259086663353,0 174.0403608985382,-41.2125284208056,0 174.0403753154584,-41.2124190378728,0 174.0403382665411,-41.21221845929782,0 174.0403319796424,-41.21211452301682,0 174.0403443851877,-41.21210413044178,0 174.0403736383664,-41.21186591582936,0 174.0403257780609,-41.21155813239115,0 174.0402900713874,-41.21135361428332,0 174.0402726363367,-41.21119108897049,0 174.0402636681127,-41.21097232139074,0 174.0401719695015,-41.21084248483245,0 174.0401555408419,-41.21077878298777,0 174.0400850495333,-41.210567894375,0 174.0400162342432,-41.21041023064054,0 174.0399371928398,-41.21021141200992,0 174.0398854765941,-41.2101514814559,0 174.0398459140582,-41.21011317583085,0 174.0397081987485,-41.20998166372794,0 174.0396715705598,-41.20986951425839,0 174.0397024986457,-41.20982475492904,0 174.0397062704281,-41.20982483887542,0 174.0397082829898,-41.20982726899994,0 174.0397164129445,-41.20978619789407,0 174.0397372706917,-41.20960353404663,0 174.0397444087485,-41.20954102723776,0 174.0397581544846,-41.20946953051572,0 174.0396933629403,-41.20932133786118,0 174.0396861552663,-41.20930742387174,0 174.0395632761286,-41.20899804824203,0 174.0396371200737,-41.20863787744144,0 174.0395795368852,-41.20846311532253,0 174.0396431550971,-41.20817779542377,0 174.0396674631553,-41.20803656019645,0 174.0396719045828,-41.20803479872061,0 174.0396903457373,-41.20802717203037,0 174.0397835525654,-41.20803991226504,0 174.039962924533,-41.20792516365816,0 174.0403401108623,-41.20761603924053,0 174.0403978625377,-41.20743649904361,0 174.0404246843106,-41.20728864187866,0 174.0404526794059,-41.20720423705905,0 174.0404091774769,-41.20704011951158,0 174.0404678513015,-41.20702528331564,0 174.0404918232839,-41.2070474950215,0 174.0404938346422,-41.20708026763074,0 174.0405764797031,-41.20717062485787,0 174.0406701064057,-41.20714120538293,0 174.0407243368382,-41.20710767677036,0 174.0407634806197,-41.20709954662318,0 174.0408198075205,-41.20708940466496,0 174.0409994305021,-41.20706157752096,0 174.0410717675332,-41.20699695165934,0 174.041207805474,-41.20691749237001,0 174.0413250683542,-41.20686393144168,0 174.0414048635488,-41.20675630805805,0 174.0413935477447,-41.2066498581304,0 174.0414117371805,-41.20650401184306,0 174.0416626068811,-41.20621584325178,0 174.0416852380197,-41.20608064169134,0 174.0418733283993,-41.20587377668563,0 174.0418812904712,-41.20585952830103,0 174.0419213574974,-41.20581258866984,0 174.0419985542983,-41.20574603743645,0 174.0421047529899,-41.20574268395867,0 174.042172897469,-41.20566640872819,0 174.0421907507803,-41.20564855509174,0 174.0422186626699,-41.20561997320115,0 174.04224280275,-41.20559407281055,0 174.0422446464409,-41.2055436984796,0 174.0423984546391,-41.20539056045442,0 174.0426152109383,-41.20529291091923,0 174.0426285378377,-41.20528821703587,0 174.0429193903658,-41.20521613278565,0 174.0431594483023,-41.20514497095734,0 174.0432422612916,-41.20510758724538,0 174.0433653906765,-41.20505955947458,0 174.0434482882513,-41.20503592242429,0 174.0434793014457,-41.20502452316864,0 174.0437305068813,-41.20499099516443,0 174.0439502801711,-41.20491002598977,0 174.0440962084079,-41.2048940996262,0 174.0443683698694,-41.2047483386289,0 174.0445333247472,-41.20452563184135,0 174.0445745643149,-41.20444474587669,0 174.0444864712274,-41.20425447685133,0 174.0445418750598,-41.20420628113489,0 174.0446385179371,-41.20418960131079,0 174.0448765638942,-41.20406856671269,0 174.0449528396835,-41.20402757945111,0 174.045368582551,-41.20357453709034,0 174.0453674088056,-41.20354545191247,0 174.0454228965008,-41.2034260940297,0 174.0455159355526,-41.20333280311391,0 174.0455582637561,-41.2032768961156,0 174.0456239790464,-41.2031707811981,0 174.045631355127,-41.20315628025342,0 174.0457990770755,-41.20303004888671,0 174.0458921159717,-41.20299082109739,0 174.0459937879865,-41.2029442176603,0 174.0460404748789,-41.20293759625817,0 174.0460694770031,-41.20290230898979,0 174.0461259708517,-41.20288210850364,0 174.0463958685214,-41.20281740031535,0 174.0464580619779,-41.2028168126281,0 174.0466886482819,-41.20276735975631,0 174.0467252765661,-41.2027624977358,0 174.0468547774764,-41.20274590200804,0 174.046966843041,-41.2027121229961,0 174.04709441566,-41.20266443006463,0 174.0472712738113,-41.20267708727709,0 174.0472983477957,-41.20266057490849,0 174.047330283565,-41.20264364269439,0 174.047401276547,-41.2025757498538,0 174.0474705114773,-41.20250374923204,0 174.0475332923309,-41.20245580474269,0 174.0476804784651,-41.20237265580943,0 174.0477327816626,-41.2024051779159,0 174.0479655470379,-41.20243459767626,0 174.0480443366235,-41.20240735738786,0 174.0481621033381,-41.20236058573644,0 174.0483059356091,-41.20235446721824,0 174.0484320836818,-41.20231708430496,0 174.0486241126362,-41.20233225498586,0 174.0487300602408,-41.20229621318833,0 174.0488651774044,-41.20229277747522,0 174.0489578810357,-41.20229009367698,0 174.0490101842537,-41.20226134379824,0 174.0492025478704,-41.20227282811346,0 174.0493319649767,-41.20230342180422,0 174.0495042134455,-41.20232253198667,0 174.0498580967457,-41.20240140612011,0 174.0499341215501,-41.20242822794925,0 174.049934121091,-41.20242864681419,0 174.0499406587587,-41.20242697122114,0 174.0499941353538,-41.20239897494849,0 174.0501475237444,-41.20240199270381,0 174.050454385427,-41.20234658787587,0 174.0508039954054,-41.20226830078154,0 174.0510196605016,-41.20220577189158,0 174.0511377620761,-41.2021669641742,0 174.0513980195923,-41.20209806531261,0 174.0517042113629,-41.20204492421059,0 174.0517642254633,-41.20203788332013,0 174.0520835764913,-41.20198742422596,0 174.0524130684456,-41.20191181929728,0 174.0526129764476,-41.20182573662646,0 174.0528109579657,-41.20165156132651,0 174.0530190796866,-41.2015416738196,0 174.0533111898562,-41.20145374781018,0 174.0535832663968,-41.2013401729166,0 174.0537912214703,-41.20123171146469,0 174.0538779742589,-41.20115661016878,0 174.0539228174816,-41.2010980198035,0 174.0541487095904,-41.20096256945191,0 174.0542924592203,-41.20087707270587,0 174.0544659637488,-41.20078378277039,0 174.0545336901205,-41.20076483908068,0 174.0546864920275,-41.2005996325038,0 174.0547426507191,-41.20055193930804,0 174.0547392977063,-41.20052620703841,0 174.0547802858179,-41.2004418850657,0 174.054897883674,-41.20032889683345,0 174.0550022384888,-41.2001965461137,0 174.0551603205682,-41.20007844503822,0 174.0553179013346,-41.20004290589785,0 174.0556010417779,-41.19989546841005,0 174.0556245952314,-41.19985096063687,0 174.0556767295022,-41.19980628542911,0 174.055926594488,-41.19962481745974,0 174.0560058876862,-41.19954971539919,0 174.0561600312361,-41.1994718469213,0 174.0562426756047,-41.19938920241886,0 174.056314090541,-41.19931259064637,0 174.0565064550164,-41.19906934784864,0 174.0567056931762,-41.19887606062704,0 174.0569281481474,-41.19874966208492,0 174.0570748321843,-41.1986241847775,0 174.0571884074712,-41.19857070910409,0 174.0572459904561,-41.19853148147044,0 174.057291252963,-41.19848538144174,0 174.0574127064511,-41.19845252395394,0 174.0576580445903,-41.19825161007774,0 174.0577680144236,-41.19824062934571,0 174.0579732041427,-41.19828547283755,0 174.0582052155622,-41.19827575022639,0 174.0584902835131,-41.19822327884767,0 174.0586319376511,-41.19821783134218,0 174.0587383045095,-41.19817340651278,0 174.0589046848638,-41.19823124208021,0 174.0590729094471,-41.19816569519752,0 174.0591810356837,-41.19813610751317,0 174.0591940285597,-41.19813275423222,0 174.0593926788409,-41.19810853098814,0 174.0594210945463,-41.19812982144418,0 174.0596189915341,-41.19811967840263,0 174.0598432913993,-41.1980708119411,0 174.0600349854843,-41.19807441611226,0 174.0602045508742,-41.19805480271857,0 174.0603363135798,-41.19804021848105,0 174.0606270814083,-41.19810207567983,0 174.0609344469712,-41.19814834539511,0 174.0611071141379,-41.19816527614711,0 174.0613227802267,-41.19824406630896,0 174.0616850461293,-41.19837641563085,0 174.0619754790883,-41.19852377017402,0 174.0620714520894,-41.19855696216472,0 174.0622384186657,-41.1985811859967,0 174.062471435771,-41.19866710118429,0 174.0625669062342,-41.1987543563227,0 174.0626382355017,-41.19882467985154,0 174.0627720105463,-41.19895845570832,0 174.0628880174421,-41.19903171310499,0 174.0630668871267,-41.19912458538008,0 174.0632428224235,-41.19922910713022,0 174.0632545577406,-41.19923765699214,0 174.0634418926505,-41.19933731800183,0 174.0636629243158,-41.19944795863149,0 174.0637715524538,-41.19948685128423,0 174.0640215864294,-41.1996019343332,0 174.0640940886739,-41.19962892439288,0 174.0643921492562,-41.1997222154412,0 174.0645230750442,-41.19978683899748,0 174.0646595325069,-41.19987317300532,0 174.0648451905418,-41.19994433508472,0 174.0650637082544,-41.2000347757298,0 174.0652651244391,-41.20016067179304,0 174.0652973114432,-41.20016687399814,0 174.0654049355867,-41.20021557298037,0 174.0654561475957,-41.2002386237063,0 174.0655234304346,-41.20028381350129,0 174.065545964557,-41.20031906836536,0 174.065587459001,-41.20032953779992,0 174.0656561254464,-41.20034686285195,0 174.0657948276696,-41.20037769620202,0 174.0660692900249,-41.20036762247086,0 174.0661025614673,-41.20036854310141,0 174.0661315624224,-41.20035471348713,0 174.0662133691375,-41.20032168773069,0 174.0663437915868,-41.20027114481474,0 174.0665590390006,-41.2003356022086,0 174.0665981835284,-41.2003552160549,0 174.0666417685218,-41.20034172143453,0 174.0667030397416,-41.20032504088054,0 174.0668928058704,-41.2003242872288,0 174.0669513955328,-41.20030383463342,0 174.0670954807267,-41.20029914145838,0 174.0672642091134,-41.20029796691769,0 174.0674299185655,-41.20030308047746,0 174.0675604246626,-41.20034389976188,0 174.0676453341824,-41.20035815003992,0 174.0677924354219,-41.20035337217863,0 174.067841303481,-41.20034339697447,0 174.0680134671182,-41.20033182970499,0 174.0681907442022,-41.20034465537913,0 174.0682406157102,-41.20033845213429,0 174.068441698397,-41.20030065031359,0 174.0686301238331,-41.20029168129577,0 174.0688478850841,-41.20034381644452,0 174.0689503962524,-41.20036183785279,0 174.0691017731037,-41.20036586150158,0 174.0692045355189,-41.2003737403625,0 174.0692831579548,-41.20039327048051,0 174.0692944731198,-41.20041455962959,0 174.0694027665017,-41.20042855813933,0 174.069652128765,-41.20045630175454,0 174.0698875771484,-41.200491170394,0 174.0701353465151,-41.20051371770199,0 174.0703203335381,-41.20052302209043,0 174.0705231757585,-41.20055378321143,0 174.0707393457992,-41.20060927143003,0 174.0708767255126,-41.20062544818933,0 174.0710543377261,-41.20065486935118,0 174.0712060500416,-41.20065637846153,0 174.0713472854634,-41.20065579147383,0 174.0714539868972,-41.20065805409931,0 174.0716319340001,-41.20067976335297,0 174.0719327608797,-41.20070717170277,0 174.0721182525852,-41.20070080229132,0 174.0722468310434,-41.20067649402505,0 174.0722388685578,-41.20061648041826,0 174.0722499315919,-41.20061086378382,0 174.0723014815971,-41.20062033548953,0 174.0723612445555,-41.20068009821014,0 174.0723920050744,-41.20069946117751,0 174.0727069140241,-41.20072753984831,0 174.0729479767236,-41.20076542605156,0 174.0731752109537,-41.20081739447009,0 174.0733916308759,-41.20087397250693,0 174.0734992549368,-41.20089668745733,0 174.0736620311218,-41.20095360021364,0 174.0738239700326,-41.20101654850607,0 174.0741071112342,-41.20111360967638,0 174.0744400394168,-41.20119625627667,0 174.0746537779821,-41.20129021733101,0 174.0749798342452,-41.2013688387935,0 174.0752504025066,-41.2013863584247,0 174.0753240794135,-41.20141804145096,0 174.0755281779809,-41.20148224744555,0 174.0758247301379,-41.20155148130399,0 174.0761430745333,-41.20158115335831,0 174.0763620102698,-41.20167377274744,0 174.0766086065333,-41.20182867093714,0 174.0767285510769,-41.20183872893512,0 174.0770079201871,-41.20176832075941,0 174.0770715374471,-41.20174074404925,0 174.0772236695944,-41.20175809486421,0 174.0773626416177,-41.20181366671046,0 174.0774480535031,-41.20182565311166,0 174.07747445552,-41.20181970239562,0 174.0776035382604,-41.20173219525413,0 174.0777736897717,-41.20171534739681,0 174.0778105708407,-41.2016882736296,0 174.077861196876,-41.20162767331097,0 174.0779680675522,-41.20152247985667,0 174.0779906979967,-41.20149892723285,0 174.0782037657665,-41.2013514047861,0 174.0784779374713,-41.20136171475289,0 174.0785555544658,-41.20127110617441,0 174.0788317381689,-41.20120547588384,0 174.079059222831,-41.20113800251152,0 174.0793274438306,-41.2010991102674,0 174.0794225776133,-41.20109056019214,0 174.0796966657889,-41.20104563277154,0 174.079893641303,-41.20103968181931,0 174.0798943955642,-41.20103775430157,0 174.0800073003773,-41.20107161742288,0 174.0800555796481,-41.20106457637434,0 174.0800882686651,-41.20105644567119,0 174.0801391468563,-41.20103817281753,0 174.0803789527584,-41.2009769848501,0 174.0805488551728,-41.20092007164271,0 174.0807235327453,-41.20086106411637,0 174.0809422166144,-41.20085645425882,0 174.0810620779458,-41.20088159914311,0 174.0811631638102,-41.20090146421534,0 174.0813084227102,-41.20093574651051,0 174.0813846974262,-41.20095577950772,0 174.0815347337856,-41.20098344012273,0 174.0815833486246,-41.20098469678514,0 174.0818643934675,-41.20094169767755,0 174.0819995943064,-41.20082560793292,0 174.082138482223,-41.20077481448774,0 174.0822649648704,-41.20077053887408,0 174.0823233031946,-41.20075536835555,0 174.0826051866723,-41.20077825094629,0 174.0828071914741,-41.20087112173919,0 174.0829315783398,-41.20092317408098,0 174.0830750762219,-41.20100213091738,0 174.0832047443745,-41.20103775367791,0 174.0834150462556,-41.20102660630867,0 174.0834903155147,-41.20101470423758,0 174.0835223351984,-41.20100665722878,0 174.0835512519944,-41.20099509037095,0 174.0835825168615,-41.20098184669411,0 174.0838364882377,-41.2008714568574,0 174.0840600339057,-41.20071723043773,0 174.0842495485143,-41.20065595928027,0 174.0844005910531,-41.20055713576816,0 174.084592200547,-41.2003930177303,0 174.0846896822272,-41.20027642615958,0 174.0847149114448,-41.20024474170184,0 174.084776937954,-41.20015564316886,0 174.084792779831,-41.20009051502505,0 174.0848799521991,-41.19988130316244,0 174.0849993944574,-41.19969581164065,0 174.0850166601016,-41.19959581471549,0 174.0850148997222,-41.19935500299172,0 174.0850514455289,-41.19911142526082,0 174.0851993854428,-41.19879417043575,0 174.0853178220627,-41.19859157968971,0 174.0854251112388,-41.19854564700039,0 174.0855660944918,-41.19849133197854,0 174.0856525950047,-41.1983861387542,0 174.085760553562,-41.19831933488207,0 174.0858410943852,-41.19826235293021,0 174.0859261805672,-41.19820215644454,0 174.0860350621343,-41.19813920791754,0 174.0862503930144,-41.19803762008711,0 174.0863123355033,-41.19799193776507,0 174.086438818495,-41.19782036096374,0 174.0864875168344,-41.19758617030956,0 174.0864946414062,-41.1975650484645,0 174.0866174358233,-41.19731049028556,0 174.0867191929393,-41.19718710803954,0 174.086883058618,-41.19716204599118,0 174.0869560651817,-41.19712281920945,0 174.0870743334561,-41.19703019886653,0 174.0871293193844,-41.19695777932329,0 174.0871811192386,-41.19687379239997,0 174.0872992201994,-41.19659081882354,0 174.0874090224564,-41.19653214616857,0 174.0875314830758,-41.19652200361846,0 174.0877845323954,-41.19649953985145,0 174.0879517511334,-41.19645168031812,0 174.0880273557709,-41.19640365119513,0 174.0881618019082,-41.19637540362585,0 174.0883679130654,-41.19637607524038,0 174.0886256562622,-41.19629745261725,0 174.0888000844639,-41.19622587124971,0 174.088812021054,-41.1962172551054,0 174.0889051712394,-41.19618824683666,0 174.0889962709231,-41.19616540024745,0 174.0891248413996,-41.19614533928308,0 174.0892702499848,-41.19613768286227,0 174.0893825016364,-41.19613662100743,0 174.0894737064041,-41.1961200541201,0 174.0896067989715,-41.19612193495933,0 174.089710059122,-41.19608012860387,0 174.0898135795715,-41.19605402193962,0 174.0898875811879,-41.19600306934957,0 174.0899623629588,-41.19599922056635,0 174.0900122017007,-41.19599560873862,0 174.090074615542,-41.19599815802854,0 174.0901456054688,-41.19601633104643,0 174.0902414366344,-41.19602798685827,0 174.0903577937177,-41.19602374419495,0 174.0904285231439,-41.19602621545809,0 174.0904702027046,-41.19603210275947,0 174.0905616664754,-41.19603123660489,0 174.0906282393294,-41.19603374620728,0 174.0907072831191,-41.19603613855429,0 174.0907697503665,-41.19604182885296,0 174.0908447928141,-41.19605368107353,0 174.0909071557956,-41.19605309030602,0 174.0909439476053,-41.19601505259018,0 174.090976633747,-41.19598019384696,0 174.0910176353971,-41.19594525721755,0 174.0910710035923,-41.19590392142075,0 174.091116215039,-41.19587208495266,0 174.0911740028423,-41.19584641128228,0 174.0912979447851,-41.19579812555063,0 174.0913722045625,-41.1957628727063,0 174.0914050468609,-41.19573743533448,0 174.0914544679559,-41.19570869982562,0 174.0914953114604,-41.19566434155117,0 174.091561674094,-41.19565429045253,0 174.0916069894879,-41.19562873479006,0 174.0916775619919,-41.19562178470741,0 174.091740392977,-41.19564945525445,0 174.091802807739,-41.19565200449733,0 174.0918771192877,-41.19561989273286,0 174.0919472741963,-41.19558781942887,0 174.0920130637134,-41.19554322442624,0 174.0920872706306,-41.19550483153464,0 174.0921408477866,-41.19547605631714,0 174.0922654147817,-41.19546545278794,0 174.0923315694369,-41.19544284016187,0 174.0924346700724,-41.19539160901218,0 174.0925089287897,-41.19535635634738,0 174.0925956605726,-41.1953209843938,0 174.0926786013342,-41.19530763436879,0 174.0927408579193,-41.19530076254203,0 174.0928570927829,-41.1952698313675,0 174.0929127479105,-41.19526019187017,0 174.0929764509772,-41.19522163507291,0 174.0930710834077,-41.19515826836773,0 174.0932303387755,-41.19506908542691,0 174.0934719054653,-41.1950089029055,0 174.0935752539063,-41.19499758695788,0 174.0936508590637,-41.19493095141528,0 174.093805755606,-41.19487035001225,0 174.0938845464051,-41.19482718337754,0 174.0939675273792,-41.19478686565366,0 174.0940697855637,-41.19471461433957,0 174.0942663417825,-41.19458167731325,0 174.0944257664841,-41.1944726291077,0 174.0944964249282,-41.19445167399264,0 174.0945335570725,-41.19444211788309,0 174.0947534143289,-41.19441781136503,0 174.0951430055235,-41.19442099609542,0 174.0952954714051,-41.19444186714698,0 174.0953124038972,-41.19444035764281,0 174.0954119806535,-41.19444622570865,0 174.0956290724156,-41.19444396227248,0 174.0957914286296,-41.19446407920884,0 174.0958090310446,-41.19447413726404,0 174.096030480982,-41.1945080840383,0 174.096142463298,-41.19453029589293,0 174.096320495104,-41.19450850311402,0 174.0963352467451,-41.19450322287253,0 174.0965188106126,-41.19443205989198,0 174.0965472252243,-41.19441479267302,0 174.0966132747514,-41.19436466994061,0 174.0966592922363,-41.19433826698343,0 174.0967545934296,-41.19427724640212,0 174.0968612955046,-41.19423483427451,0 174.0968736175113,-41.19422988877544,0 174.0971032810419,-41.19417590934201,0 174.0972762005055,-41.19417825581732,0 174.0974654631457,-41.19413617878244,0 174.0975237173072,-41.19409083274139,0 174.0975284108766,-41.19408739570572,0 174.0975363743628,-41.19407867870864,0 174.097661600413,-41.1940647653451,0 174.0977516213144,-41.19406828588593,0 174.0978358590856,-41.19408597117464,0 174.0979790215318,-41.19412528328485,0 174.0980189203168,-41.1941534464934,0 174.0981694593301,-41.19425486736603,0 174.0984205805766,-41.1944338200702,0 174.0987089178209,-41.19458150898826,0 174.0989488082848,-41.194742357689,0 174.0991238229316,-41.19487705510196,0 174.0992148498155,-41.19508048382173,0 174.0992326196939,-41.19510856417917,0 174.0992489636582,-41.19513345770618,0 174.0993487093286,-41.19521048796458,0 174.0994425865785,-41.19534644225091,0 174.0995009237453,-41.19558306275721,0 174.0994994160065,-41.19572320918418,0 174.0996113134529,-41.19588900314494,0 174.0998207784803,-41.19601196492913,0 174.1000540463157,-41.19620265309878,0 174.1001025774732,-41.19627096603603,0 174.1001405470001,-41.19632536385753,0 174.1001691304311,-41.19643818525293,0 174.1001406305932,-41.19658688023305,0 174.1000545494847,-41.19672157692816,0 174.1000067718801,-41.19689793223452,0 174.099950613434,-41.19702148241822,0 174.0998958797934,-41.19718484473684,0 174.0998815473031,-41.19726304782444,0 174.0999066921928,-41.19731786636068,0 174.1000217761156,-41.19743470947851,0 174.1000367789691,-41.19744191824993,0 174.1000406354567,-41.19743990602196,0 174.1000796955209,-41.19744024089083,0 174.1002124642261,-41.19736941405716,0 174.1002890750993,-41.19735944016905,0 174.1003039938221,-41.19736354746042,0 174.1004254480055,-41.19743638610722,0 174.1004834504344,-41.19748189902952,0 174.1005339935659,-41.19752464668058,0 174.1005538592977,-41.19754392608044,0 174.100707331516,-41.19773628973109,0 174.1009343135766,-41.19790996291393,0 174.10095610716,-41.1979256369384,0 174.1010747100804,-41.19799738609403,0 174.1013371474674,-41.198009373445,0 174.1013454460396,-41.19800207980649,0 174.1015287583738,-41.19796545131496,0 174.1017987385567,-41.19788825403671,0 174.1019694793918,-41.19777249984692,0 174.1019935346287,-41.19776487342389,0 174.1021522043211,-41.19777811582086,0 174.1022825426424,-41.19781968999838,0 174.1025172361553,-41.19789739020744,0 174.1026087660168,-41.19790309036392,0 174.1026230995921,-41.19790585630125,0 174.1026285477249,-41.19791021521009,0 174.1028360843338,-41.19793242701447,0 174.1029894717597,-41.19793368364896,0 174.1030220783639,-41.19797517428091,0 174.1030302085546,-41.19799252540966,0 174.1030472243198,-41.19814004642956,0 174.1032814982611,-41.19825932144397,0 174.1035177837231,-41.19831128915305,0 174.1036689104708,-41.19839862794484,0 174.1037689062284,-41.19844699209721,0 174.1038279140584,-41.19846903581646,0 174.1039096375363,-41.19848747575333,0 174.1041678004342,-41.19852200966976,0 174.1042018307231,-41.19851815414422,0 174.1044896646119,-41.19844707574944,0 174.1046124595991,-41.19837130331892,0 174.1047868035548,-41.19826954711202,0 174.1048148826696,-41.19828044276661,0 174.104882609536,-41.19833509304804,0 174.1050023028662,-41.19847222089736,0 174.1050894739832,-41.19853231969015,0 174.105269853596,-41.19874161645929,0 174.1053213176858,-41.19877371775981,0 174.1055261716462,-41.19884387502554,0 174.1055363140898,-41.19883859372081,0 174.105584593187,-41.19881713685859,0 174.1057020235203,-41.19880925808342,0 174.1058815640573,-41.19875410482128,0 174.10603495302,-41.19868478563616,0 174.1061086294363,-41.19865100708524,0 174.1061205323527,-41.19862845997194,0 174.1061859107043,-41.19853533726737,0 174.106152551425,-41.19850197701751,0 174.1061471873204,-41.19850524609669,0 174.1061260642613,-41.19844087278008,0 174.1061438344802,-41.19822814012648,0 174.1062608451026,-41.19804809699115,0 174.1063281524866,-41.19789889893584,0 174.1063976385812,-41.19774291241072,0 174.1064552220797,-41.19751517585321,0 174.1065401302401,-41.1973730192082,0 174.1065103748487,-41.19714427615033,0 174.1065085313015,-41.19695140919158,0 174.1065013217039,-41.19672451133587,0 174.1064567313464,-41.19657925187256,0 174.1064059354667,-41.19633005805239,0 174.1064280641148,-41.19617884927258,0 174.1064248792136,-41.19615755863347,0 174.1065327536572,-41.19599830266449,0 174.1067680342684,-41.19594147292074,0 174.1068645098689,-41.19590174314976,0 174.1069237704951,-41.1957740874057,0 174.1069671879902,-41.19562824243963,0 174.1068773336989,-41.19550905144552,0 174.1067140546342,-41.19532858943422,0 174.106582458919,-41.19509448178503,0 174.106509034132,-41.19491770847453,0 174.1065901700559,-41.19469784966954,0 174.1067445651296,-41.19455342980202,0 174.1069267874214,-41.19443465921744,0 174.1071077529953,-41.19424438913613,0 174.1071975226642,-41.1939142258574,0 174.1072510830411,-41.19361935066083,0 174.1073061533196,-41.19341055839504,0 174.1074423595962,-41.19327845936394,0 174.1075671651708,-41.1931436783343,0 174.1077175364725,-41.19299498294749,0 174.1078386551056,-41.19288878431974,0 174.1078544129248,-41.19287755233909,0 174.1079670662311,-41.19274126278619,0 174.1081730084428,-41.19240606974184,0 174.1084097980761,-41.19216886164268,0 174.1085242108843,-41.19198856814401,0 174.1087458275598,-41.19187901585677,0 174.1088229415465,-41.19183408874636,0 174.1090069252883,-41.19182352824276,0 174.1090429675281,-41.19181623619335,0 174.1091449735347,-41.19181874965675,0 174.1092448875865,-41.19177709224648,0 174.1092820185117,-41.19162068589477,0 174.1093156301554,-41.19153787310128,0 174.1093309692237,-41.19149579624415,0 174.1094735452931,-41.1912938759075,0 174.109703544477,-41.19110628917631,0 174.1098357264392,-41.19103068370903,0 174.1099507272992,-41.19088039590994,0 174.1099937258886,-41.19085348977849,0 174.1101432592509,-41.19079473317366,0 174.1102462732397,-41.19073228764228,0 174.1103869208763,-41.19066405920717,0 174.1105239646599,-41.19057621683397,0 174.110691602731,-41.19041528519273,0 174.1107130614908,-41.19039013946986,0 174.110807608702,-41.19030749332995,0 174.1109325835717,-41.19024320404841,0 174.1109953626197,-41.19019132019613,0 174.1110750744342,-41.19011060229063,0 174.1112211714342,-41.19000582911516,0 174.1112754033891,-41.18995511841791,0 174.111393504385,-41.18985948146902,0 174.1114126974204,-41.18983802271905,0 174.1115126114609,-41.18974389431472,0 174.1115855331482,-41.18969804469247,0 174.1116818409628,-41.1896385342652,0 174.1118336375697,-41.18954063311881,0 174.1120403348773,-41.18942035342313,0 174.1122517273475,-41.18929571421908,0 174.1124285848141,-41.18918549179379,0 174.1126204467255,-41.18909010575894,0 174.1128070284173,-41.18897812327531,0 174.113043313874,-41.18882641078889,0 174.1132376899026,-41.18868710393618,0 174.1133782548998,-41.18862851450378,0 174.1135404448091,-41.18854343849351,0 174.1136712022358,-41.1884819989123,0 174.1137858666121,-41.18846917363734,0 174.1139436138149,-41.18840245451074,0 174.1140759644771,-41.18834000911534,0 174.1142222289795,-41.18829105941702,0 174.1143655594174,-41.18823800068176,0 174.1145338678798,-41.18816650445029,0 174.1146470233188,-41.18810447836899,0 174.1148350289923,-41.18802317350301,0 174.1149685530052,-41.18797698906116,0 174.1150969637229,-41.18789467899332,0 174.1152003132601,-41.18785402624688,0 174.1153229397727,-41.18782494087515,0 174.1154427171938,-41.18778487644756,0 174.1155106107814,-41.18773743363573,0 174.1156241020908,-41.18766719371572,0 174.1159051468532,-41.18756644335365,0 174.1161211495513,-41.18755487575558,0 174.1161623875988,-41.187532916103,0 174.1162470452619,-41.18749360467891,0 174.1163462026316,-41.18744230748941,0 174.1165079739498,-41.18728112337421,0 174.1166020181282,-41.18718766538689,0 174.1166928782261,-41.18707777839941,0 174.1169143279942,-41.18691408014148,0 174.1170283225204,-41.18688449207593,0 174.1171864054124,-41.18679304538131,0 174.1172785225803,-41.18673881431558,0 174.1172905079808,-41.18673093518638,0 174.1174011485696,-41.18664921200966,0 174.1175690388765,-41.18653974427537,0 174.1178097672867,-41.18643287513892,0 174.1180623136593,-41.18629859738624,0 174.118206733753,-41.18621821370342,0 174.1182545106452,-41.18617923818986,0 174.1183006949687,-41.1861528348779,0 174.1184081514946,-41.1861093334676,0 174.1185538285046,-41.18602375410386,0 174.1186390720465,-41.18597555812755,0 174.1188047826351,-41.18583842995,0 174.1189657153454,-41.18575176144461,0 174.1190554024584,-41.1857023924109,0 174.1190712433307,-41.18569400993112,0 174.1192532135751,-41.18553684937967,0 174.1193808707355,-41.18542754932976,0 174.1196719738954,-41.1853686238348,0 174.1199123664635,-41.18524683499416,0 174.120222162194,-41.18508221533681,0 174.1204294473328,-41.18500485014553,0 174.1204983465099,-41.18498180011094,0 174.1206648955491,-41.18492295887378,0 174.120822810003,-41.18488079814959,0 174.1208832424952,-41.18487476299691,0 174.1210315191801,-41.18485079049859,0 174.1212063660103,-41.18482472334683,0 174.12121575302,-41.18483218312539,0 174.1214779384452,-41.18481474851807,0 174.1214944524681,-41.18480846244736,0 174.1217459918361,-41.18475682862329,0 174.1220004665911,-41.18465750402014,0 174.1221475686594,-41.18456471626722,0 174.1222817644957,-41.18448491982324,0 174.1224177182714,-41.18444259170204,0 174.1224732894518,-41.1844266657839,0 174.1226177944985,-41.18439188091275,0 174.122737319594,-41.18436782527995,0 174.1229295164466,-41.18428836517394,0 174.1231442616804,-41.18416498299923,0 174.1234274863606,-41.18406901036154,0 174.123628484079,-41.18408703122197,0 174.1238154014929,-41.1840734531445,0 174.1239600720108,-41.18404780420374,0 174.1241837853268,-41.1839934893128,0 174.1243167223643,-41.18397630731948,0 174.1243827724478,-41.18396423706535,0 174.1245460514581,-41.18398209042538,0 174.1247851031026,-41.18408787006256,0 174.1249478788309,-41.18413606575491,0 174.125182404896,-41.18413573012733,0 174.1252065451187,-41.18415064974801,0 174.125362615875,-41.18409767624568,0 174.1253885157042,-41.1840701000435,0 174.1254169314454,-41.18401746230168,0 174.1255506222803,-41.18395769924915,0 174.1257122251076,-41.18388678818931,0 174.1259590720994,-41.18384429243587,0 174.126294850431,-41.18383238947636,0 174.1265686045936,-41.18376022087042,0 174.1266627119039,-41.18373479923441,0 174.1268069021051,-41.18369584792283,0 174.1271001015381,-41.18364597644992,0 174.127255082165,-41.18364639528653,0 174.1272938072145,-41.18351463147928,0 174.1275015941018,-41.18345109622155,0 174.1277600075545,-41.18332411079258,0 174.127921602553,-41.18324984674213,0 174.1280662030337,-41.18321983089609,0 174.1282555331454,-41.18322274303867,0 174.1282827765397,-41.1833042283564,0 174.1284192331877,-41.18334781463837,0 174.1285776632457,-41.1833552914724,0 174.1287543532329,-41.18337725187454,0 174.1288269401442,-41.18340223039828,0 174.1289360729519,-41.18340541495714,0 174.1290171258054,-41.18335822521748,0 174.1291513202905,-41.18321866631322,0 174.1292211407072,-41.18316971566615,0 174.1294663120265,-41.18306427210516,0 174.1294946427758,-41.18301800444996,0 174.1295336193948,-41.18298657076311,0 174.1297224630123,-41.18278875822597,0 174.1298923643693,-41.18270628136546,0 174.1299116431535,-41.18270158745277,0 174.1300580742492,-41.18260569843683,0 174.1301657815477,-41.18254442579665,0 174.1302506905506,-41.18243495762892,0 174.1303480881241,-41.18228961609505,0 174.1303787654242,-41.18215626020141,0 174.1304137195901,-41.18208995899472,0 174.1304376913548,-41.18201158804776,0 174.1304475814335,-41.18198191592905,0 174.1304549572389,-41.18196917597369,0 174.1304644289433,-41.18195719010731,0 174.1305643411924,-41.18187320318612,0 174.1305859666985,-41.18183464592899,0 174.1306280436761,-41.18175887427731,0 174.1306634991793,-41.18169131599765,0 174.1307065820288,-41.18164270081247,0 174.1307876353325,-41.18158880537962,0 174.1309292055026,-41.18147657163299,0 174.1310723682013,-41.18135997945404,0 174.1311748795072,-41.18128211063569,0 174.1311872839065,-41.18127289099661,0 174.1313409251347,-41.18108740000951,0 174.1313664062294,-41.18098832601102,0 174.131381995958,-41.18091473292952,0 174.1314058006742,-41.18070593885479,0 174.1314086499347,-41.18069068421379,0 174.1314514817821,-41.18048943541486,0 174.1315213873255,-41.18028701171135,0 174.13161953908,-41.18014267502788,0 174.1317019326317,-41.18003429699495,0 174.1318989915613,-41.17988903941247,0 174.1321108855826,-41.17982835416416,0 174.1321134853701,-41.1798250011551,0 174.1323944458087,-41.17969667391611,0 174.1324582314974,-41.17963481582317,0 174.1324715599998,-41.17960832906938,0 174.1326055864399,-41.17949475411716,0 174.1327132943198,-41.17958720662546,0 174.1327804328416,-41.17966666721502,0 174.132880847806,-41.17972173630234,0 174.1329808440171,-41.17976121525077,0 174.1330163830735,-41.17977361964228,0 174.1330691053595,-41.17979289899424,0 174.1332485617828,-41.17985249380141,0 174.1333942392346,-41.17985350037745,0 174.1334089076014,-41.17985945063823,0 174.1334638924697,-41.17988962579715,0 174.1337328675277,-41.17990144366218,0 174.1340599303871,-41.17988484783827,0 174.1343538004006,-41.17986657562285,0 174.1346269656291,-41.17980630999506,0 174.1348259516996,-41.1797581136228,0 174.1348358435072,-41.17961796774244,0 174.1348365974072,-41.17946784847769,0 174.1349427121195,-41.17919610728652,0 174.1349111115906,-41.1790086041519,0 174.1348878945649,-41.17897038169388,0 174.1348272933337,-41.17885353892633,0 174.1348989587803,-41.17879553640633,0 174.1350942567742,-41.17884071391075,0 174.1353013742754,-41.17893970468853,0 174.1354663305129,-41.17897080164482,0 174.1355408445645,-41.1789283053533,0 174.1355897946574,-41.17888388122499,0 174.135776627514,-41.1786565638424,0 174.1359311901586,-41.1784651206348,0 174.1359693277862,-41.17839119281555,0 174.1359843309216,-41.17836705275904,0 174.135996568558,-41.17831810299799,0 174.1360341196365,-41.17826529684103,0 174.1360611929341,-41.17822715951302,0 174.136208966102,-41.17800520619048,0 174.1363294134348,-41.17787034231905,0 174.1364985613495,-41.17770949326363,0 174.1366721505836,-41.17756456991184,0 174.1367350977249,-41.17753447894748,0 174.1368760820287,-41.17743674608498,0 174.137072973554,-41.17733054688353,0 174.1372847840678,-41.17732912195231,0 174.1372972729893,-41.17733356373424,0 174.1374403520065,-41.17736600169394,0 174.1376494795492,-41.17740539675711,0 174.1377617976265,-41.17739533889851,0 174.1378240751415,-41.17739458489486,0 174.1379704231455,-41.17738167745959,0 174.1381478685262,-41.17733012835442,0 174.1381742706024,-41.17727514282019,0 174.1382176059784,-41.17723650196955,0 174.1383335270149,-41.17707389281812,0 174.1384459293619,-41.1769008909891,0 174.1384642849404,-41.1768663567868,0 174.1384719958051,-41.17681153883616,0 174.1384890945475,-41.17668983402346,0 174.138488928517,-41.17652672203619,0 174.1384758522599,-41.17646612124145,0 174.1385316764024,-41.17638666082638,0 174.1385993177646,-41.1762533894167,0 174.1386543869162,-41.17610653792483,0 174.1388359390313,-41.1759903644868,0 174.1389164052953,-41.17591299950355,0 174.1389335036201,-41.1758926314908,0 174.1389666132937,-41.17585315288141,0 174.1390431393862,-41.17566288344431,0 174.1390902464665,-41.17558082466329,0 174.1391289702363,-41.17551611569003,0 174.1390964484582,-41.17537571871559,0 174.1389687079593,-41.17527446612173,0 174.1389278040484,-41.17524160872546,0 174.1388959532608,-41.17522174370854,0 174.1388889960629,-41.1752191462233,0 174.1389014014125,-41.17521210470924,0 174.1388590727416,-41.17516533363708,0 174.1388376147066,-41.1750960152119,0 174.1387827972129,-41.17492921627993,0 174.1387952855083,-41.17476769598945,0 174.1388091787246,-41.17475302194184,0 174.1388266522,-41.17465322011854,0 174.1389024239351,-41.17465723770653,0 174.1389877355214,-41.17485822108123,0 174.1391850451733,-41.1750347440592,0 174.1393479047972,-41.1751219149067,0 174.13944278743,-41.17522752674289,0 174.1394717057844,-41.17534294572894,0 174.1395924886992,-41.17548183421742,0 174.1396623935644,-41.17557051529474,0 174.139715702662,-41.17534822751085,0 174.1396760566329,-41.17513851200314,0 174.1396854455332,-41.17496894597687,0 174.1396919818081,-41.17482360382257,0 174.1396585395466,-41.17478881905203,0 174.1396237539778,-41.17455286815595,0 174.1396018769739,-41.17434709238815,0 174.1395974346418,-41.17414953118119,0 174.1396094206909,-41.1740108098103,0 174.1396014579317,-41.17386077395959,0 174.1396014574238,-41.17379581475048,0 174.1397361552896,-41.17359347530171,0 174.1398869446245,-41.17333128942643,0 174.1400111648875,-41.17327571714993,0 174.1402184499693,-41.17326624632501,0 174.1403984094327,-41.17318133667132,0 174.1405781165451,-41.17306692443444,0 174.1406919435893,-41.17289568165047,0 174.1408959591637,-41.17276676801044,0 174.1410432290625,-41.17267255643031,0 174.1412397845677,-41.17257800850556,0 174.141282196808,-41.17254724569029,0 174.1413548674352,-41.17240584373865,0 174.1413292194266,-41.17225882518204,0 174.1413456479453,-41.17212915737532,0 174.1414141281849,-41.17199513009973,0 174.1414541104425,-41.17184844743025,0 174.1414771601246,-41.17180863271445,0 174.1415632424666,-41.17170235033068,0 174.1417131108715,-41.1717150068381,0 174.1417600490227,-41.17170025524992,0 174.1417939121399,-41.17171358244909,0 174.1418031323649,-41.17170880431734,0 174.1418470540959,-41.17166966084566,0 174.1418834311813,-41.17157067095721,0 174.141968675572,-41.17144008111656,0 174.1420344733824,-41.17131343036272,0 174.1420772208012,-41.17117093836784,0 174.1421485513413,-41.17099299041462,0 174.1421885318823,-41.17083926615084,0 174.1422850915301,-41.17059065897296,0 174.1423009336539,-41.17054539563668,0 174.1423051252692,-41.17053676339396,0 174.1424663917665,-41.17036317375612,0 174.1425982395097,-41.17027658867233,0 174.1427792884119,-41.17014834631301,0 174.1429133987391,-41.17001976690286,0 174.1430833003018,-41.16986847400956,0 174.1431458285158,-41.16979169572342,0 174.1432964518132,-41.16965691497735,0 174.1434956898659,-41.16958214816277,0 174.1436569582459,-41.169500759961,0 174.1438388454221,-41.16937880310809,0 174.1440994384884,-41.16930135408892,0 174.1442380755589,-41.16917202105219,0 174.1444472040361,-41.16910027190622,0 174.1445531515057,-41.1690499809853,0 174.1446490401729,-41.16901988979114,0 174.1447114844616,-41.16893816623954,0 174.1447577528954,-41.16890598021963,0 174.1448647904055,-41.16887546996162,0 174.1448977315753,-41.16886348379395,0 174.1449127346041,-41.16885744899197,0 174.1449765211948,-41.16884018208578,0 174.1450468448944,-41.16881579079178,0 174.1451394651273,-41.16875418390765,0 174.1453035825407,-41.16868377612,0 174.1454665264347,-41.16861965365772,0 174.1456332426681,-41.16854689915861,0 174.1458751449915,-41.16844749014746,0 174.1459699445765,-41.16841018989332,0 174.1460219114796,-41.16839334267672,0 174.1460058190089,-41.16837590800757,0 174.1461561059763,-41.16829519126419,0 174.1462580305935,-41.16825026418038,0 174.1463910511619,-41.16818840551364,0 174.1464768815068,-41.16810852630338,0 174.1465581019974,-41.16804088398324,0 174.1466479557836,-41.16797198374283,0 174.1466918772803,-41.16787584380194,0 174.1467228074674,-41.16784483118421,0 174.1467496293082,-41.16781809309732,0 174.1467850000072,-41.16777492625436,0 174.1469240555755,-41.16767417545033,0 174.146973005731,-41.16761768149333,0 174.1470163414578,-41.16758121987427,0 174.1470848212685,-41.167528665914,0 174.1471957144998,-41.16730260587083,0 174.1472244636383,-41.16725373899832,0 174.1472491055807,-41.16719062316081,0 174.1472421491939,-41.16706606777652,0 174.1472320071316,-41.16701158645171,0 174.1472584099216,-41.16690530333317,0 174.1472733300707,-41.16687672089649,0 174.1473061869349,-41.16682165178761,0 174.1473424808612,-41.16677672537216,0 174.1474330886872,-41.16676498998417,0 174.1475259611111,-41.16675577033828,0 174.1476144730405,-41.16674763986858,0 174.1478511774785,-41.16665761771668,0 174.1479774095842,-41.16664035099694,0 174.1479949276152,-41.1666249289926,0 174.1480199894334,-41.16656441113864,0 174.148144376815,-41.16649065081281,0 174.1481842753237,-41.16647724047986,0 174.148287792197,-41.16644346081002,0 174.1483690955081,-41.16638528981378,0 174.148438079597,-41.16629962749401,0 174.1484477185725,-41.16628319945705,0 174.148532543418,-41.16622377087749,0 174.1486406695775,-41.16617540734654,0 174.1486821601316,-41.16615202201428,0 174.1487275898861,-41.16612779838823,0 174.1487643028181,-41.16610918974006,0 174.1487740254824,-41.16610315486132,0 174.1489368032693,-41.16599419135095,0 174.148987596608,-41.16595412536437,0 174.1490113174576,-41.16593945742341,0 174.1490728409281,-41.16589310503958,0 174.1491045243178,-41.16585681113514,0 174.1491856612022,-41.16575413310811,0 174.1492456763733,-41.16565204141299,0 174.149251458661,-41.16561683734054,0 174.1492517936545,-41.16560585717086,0 174.1492584996602,-41.16548012786137,0 174.1492610980048,-41.16546504100239,0 174.1492730013199,-41.16543612269534,0 174.1492993196953,-41.1653904421683,0 174.1493921082716,-41.16535431575684,0 174.1495408020801,-41.16528482962224,0 174.1495545484614,-41.16528164509725,0 174.1496264658643,-41.16527284370311,0 174.1497950261146,-41.16530461123824,0 174.1498802703248,-41.16537594094916,0 174.1500445546438,-41.1654469362537,0 174.1503032196861,-41.16550393288711,0 174.150373627551,-41.16554014333451,0 174.1504164594846,-41.16556310948801,0 174.1506332164491,-41.16555472699351,0 174.1508370636701,-41.16553385596382,0 174.151040157319,-41.16552203767041,0 174.151251297138,-41.16551793117807,0 174.1515524585211,-41.16550871131835,0 174.1517327541023,-41.16545892246126,0 174.1518335878202,-41.16542220920178,0 174.1518680380934,-41.16541910829059,0 174.1519126297024,-41.16539714823161,0 174.1519512705314,-41.16536496084331,0 174.1520267914849,-41.16532372199251,0 174.1520894879662,-41.16531257380444,0 174.1522634957318,-41.16530243239935,0 174.1524649964233,-41.16520738076503,0 174.1525825108257,-41.16515683790109,0 174.1527401755134,-41.16510545709094,0 174.1528974192437,-41.16505985963755,0 174.1529866032957,-41.16502700289711,0 174.153049886479,-41.16501786604102,0 174.1532694917695,-41.16496573104567,0 174.1533049483272,-41.16494913505036,0 174.1533886827837,-41.16490420816,0 174.1534695685163,-41.16489205375356,0 174.1535920275829,-41.16489121635554,0 174.1537815432846,-41.16484855163906,0 174.1539984654017,-41.16475660273322,0 174.1540305688747,-41.16474796871817,0 174.1541339177733,-41.16472525418401,0 174.1542604852491,-41.1647007791514,0 174.1542990407287,-41.16469533128844,0 174.1544603934616,-41.16466331201391,0 174.1547175494202,-41.16463254972049,0 174.1548778954449,-41.16453615808533,0 174.1550078984345,-41.16447161831678,0 174.1551627125794,-41.16441579404121,0 174.1552140094209,-41.164349913105,0 174.1553155152706,-41.16427112304215,0 174.1553420013684,-41.16424882713801,0 174.1553804743198,-41.16421027001891,0 174.1554033566373,-41.16418856152349,0 174.1555447601488,-41.16409677908294,0 174.1555939615015,-41.16405956269367,0 174.1556974774486,-41.1639975371347,0 174.1559008227735,-41.16389184176931,0 174.1559391277774,-41.16382788794186,0 174.155959832036,-41.16380475365461,0 174.1560030816894,-41.16377399231353,0 174.1561140591916,-41.1637068534651,0 174.1562568014581,-41.16362211246742,0 174.15630650748,-41.16360300075491,0 174.156474313192,-41.16350568707419,0 174.1565435467983,-41.1634762670916,0 174.1565968561584,-41.16342320945363,0 174.156656283968,-41.16336738622645,0 174.1567522572169,-41.16325817008659,0 174.1568503249349,-41.16312221498932,0 174.1569581155749,-41.1629878528851,0 174.1570794854239,-41.16294359734388,0 174.1572427660062,-41.16283354242722,0 174.157420042721,-41.16276187720686,0 174.1574572587445,-41.16274528116804,0 174.1575715041573,-41.1626334657352,0 174.1577064530516,-41.16248493913259,0 174.157817176749,-41.16235518661974,0 174.1578751641378,-41.16233682059149,0 174.1579745059469,-41.16225611327358,0 174.1579752602121,-41.1622556940358,0 174.1579990645338,-41.16221948410838,0 174.158094535215,-41.16205662362344,0 174.1581776100981,-41.16194910963569,0 174.1581894176638,-41.16193382907795,0 174.1582476719719,-41.16189619443206,0 174.1584130470521,-41.16175697135333,0 174.158494435256,-41.16171304979698,0 174.1585842884587,-41.16153988020508,0 174.158676154688,-41.16140157814877,0 174.1588739677105,-41.1612566549512,0 174.1589903085036,-41.16116872894832,0 174.1590197294857,-41.16116831037422,0 174.1591541750856,-41.16112698729189,0 174.159231958649,-41.16103361298918,0 174.1593074801121,-41.16094769819174,0 174.159338324876,-41.16089883240661,0 174.1593645614883,-41.16082716577415,0 174.1593756245768,-41.16073328927426,0 174.1594690828199,-41.1605428517852,0 174.1595083939397,-41.16045182467695,0 174.1594813206481,-41.1602963399456,0 174.1594816564081,-41.1602948322749,0 174.1594938934216,-41.16029407673739,0 174.1596198725281,-41.16017455119899,0 174.1596922930785,-41.16016608616395,0 174.1599012540134,-41.16017974816184,0 174.1600662103622,-41.16005594725827,0 174.1601499451633,-41.15988763916331,0 174.1601491906249,-41.15981924200429,0 174.1602213585142,-41.15978336773656,0 174.1603049264646,-41.15971882674661,0 174.1603781838313,-41.15961472400122,0 174.1603898354162,-41.1595397063651,0 174.1602014102233,-41.15936594922886,0 174.1601953755819,-41.1593561420414,0 174.1601058565602,-41.15924156186215,0 174.1600989833576,-41.15922177983718,0 174.1601074493908,-41.15915271419981,0 174.1601445815194,-41.15912212011061,0 174.1601729948735,-41.15909043562186,0 174.1601870771738,-41.15898935033818,0 174.1602361108244,-41.15882087376897,0 174.1602319196871,-41.1586927151418,0 174.1601388806303,-41.15863881864026,0 174.1599421580343,-41.15857595513722,0 174.1599336924298,-41.15857008717981,0 174.1598355401984,-41.15852792587063,0 174.1596839105789,-41.15847780324819,0 174.1595983316277,-41.15846397328627,0 174.1595051246493,-41.15841896229699,0 174.1595325339173,-41.15830873967536,0 174.1597197021134,-41.15813934092613,0 174.1597233898339,-41.15805476794953,0 174.1597295093195,-41.15793080035351,0 174.1596332841394,-41.15773927291296,0 174.1595424249809,-41.15762833496885,0 174.1594967427602,-41.15757255684414,0 174.1593809894185,-41.15746267016804,0 174.1592360663958,-41.15739142383389,0 174.159070272242,-41.15735001831744,0 174.1588596350505,-41.15727173118984,0 174.1588437092888,-41.1572663660814,0 174.1586743948533,-41.15719998181382,0 174.1585940963622,-41.15718296598531,0 174.158562748225,-41.15718673849437,0 174.1585289692378,-41.15719277297607,0 174.158465349792,-41.15719520364073,0 174.1583203426947,-41.15717642798838,0 174.1581719831957,-41.15717952964197,0 174.1580848116009,-41.15717416472756,0 174.1580348552389,-41.15717441751649,0 174.157987664422,-41.15717517122938,0 174.1579623515673,-41.15717642828898,0 174.157876437964,-41.15715748490784,0 174.1577943794888,-41.15703117004374,0 174.1577695685348,-41.15698448280641,0 174.1576936274588,-41.15689253306472,0 174.1576549045585,-41.15683285415069,0 174.1575345405561,-41.15665155440871,0 174.1575330309515,-41.15650126636352,0 174.1575208766973,-41.15635366151634,0 174.1575594345295,-41.15629959775243,0 174.1576599328045,-41.15615911714436,0 174.1576815574391,-41.1560991856469,0 174.1576269923464,-41.15594990467551,0 174.1574728489848,-41.1557766513743,0 174.1574979947988,-41.1556215023792,0 174.157500844513,-41.15549543826728,0 174.1574929650662,-41.15546777719857,0 174.1574474515449,-41.15532662562544,0 174.1573710088613,-41.15523576611307,0 174.1573772107697,-41.15522897680722,0 174.1575228888305,-41.15531514287763,0 174.1576440907097,-41.15546861564043,0 174.1576610232426,-41.15548605018611,0 174.1578647869822,-41.15562527308813,0 174.157988419729,-41.15574966115302,0 174.1581103756055,-41.15580523326115,0 174.1581833831081,-41.15584865149267,0 174.1583221875619,-41.15586642138968,0 174.1584448977785,-41.15592182521786,0 174.1585785054053,-41.1560058116612,0 174.1586338263433,-41.15602098267859,0 174.1588076671327,-41.15610086282678,0 174.1589982707962,-41.15611217822897,0 174.158970945423,-41.15604151901928,0 174.1588225871514,-41.15598980216044,0 174.1587379297661,-41.15592165818543,0 174.1587160534033,-41.15588251443231,0 174.1585133781949,-41.15575754045694,0 174.1584401207806,-41.15571110374951,0 174.1582765059477,-41.15562837463718,0 174.1581704754255,-41.155589398774,0 174.1580853152048,-41.15551706265489,0 174.1579688062335,-41.15532536925635,0 174.1578901001174,-41.15519553290828,0 174.1578863277654,-41.15505899178861,0 174.1578719955628,-41.15499528986801,0 174.1578859930978,-41.15484114641666,0 174.1578332709909,-41.15472849409704,0 174.1578125675787,-41.15471206491252,0 174.1576186105996,-41.15463076131637,0 174.1573607832408,-41.15456353788081,0 174.1572532435478,-41.15452590316303,0 174.1570178787522,-41.15440134773673,0 174.1569874532009,-41.15437293307744,0 174.1569612177936,-41.15434091375356,0 174.1569115973228,-41.15430151867537,0 174.1568135276203,-41.15421124622534,0 174.1567164665435,-41.15405861192921,0 174.1567015455919,-41.15403598118243,0 174.1566593011106,-41.15396917700527,0 174.1566485728085,-41.15375644426524,0 174.1566174756924,-41.15361244340749,0 174.1565778292006,-41.15358771712515,0 174.1565510065059,-41.15356768390463,0 174.1564868014365,-41.15349442633247,0 174.1562676988807,-41.15340222492253,0 174.1561342588405,-41.15326124112354,0 174.1561024918392,-41.15317758975279,0 174.1559908445558,-41.15308832301159,0 174.1559568980924,-41.15307155889986,0 174.1558911842984,-41.15302964868314,0 174.1558391317898,-41.1529460819142,0 174.1558198538963,-41.15289377910688,0 174.1555985718873,-41.1527957936809,0 174.1555089690875,-41.152709124706,0 174.1554765307474,-41.15266604179024,0 174.1553181964744,-41.15254383389994,0 174.1551889476261,-41.15249304027389,0 174.1551809014431,-41.15249463337646,0 174.155180063475,-41.15249530295008,0 174.1551793924485,-41.15249563846292,0 174.1551788897969,-41.15249572187078,0 174.1551741124596,-41.15249513473994,0 174.1551343818687,-41.15245448309054,0 174.1550997638162,-41.15237342993412,0 174.1550622973392,-41.15230981190803,0 174.1548504033754,-41.15209020639873,0 174.1548136064747,-41.15200102207693,0 174.1548105889701,-41.15195953199732,0 174.1547833474257,-41.15184453202333,0 174.1547747980868,-41.15180740041402,0 174.1547286134341,-41.15173053820627,0 174.1547200640175,-41.15170589493418,0 174.1547203163248,-41.15170614732662,0 174.1547095871637,-41.15168577936674,0 174.1546251815768,-41.15149735374642,0 174.1545500786181,-41.15140473404609,0 174.1544807609792,-41.15131152664794,0 174.1544717917485,-41.15129426041386,0 174.1543693646171,-41.15114950465537,0 174.1543485779556,-41.15108663979761,0 174.1542232693043,-41.15088170272442,0 174.154143221507,-41.15069780447986,0 174.1541313192044,-41.150638795047,0 174.1541499273548,-41.15046889438514,0 174.1540776750284,-41.15036244410954,0 174.1540438955598,-41.15032145679524,0 174.154015230026,-41.15029597642666,0 174.153902828655,-41.15019187217055,0 174.1538250448679,-41.15014032446256,0 174.1537442430666,-41.15007921997834,0 174.1535890941985,-41.14985123207415,0 174.1535775272492,-41.14982130796068,0 174.1535847355192,-41.1495963382221,0 174.1535877531391,-41.14955970948819,0 174.1534582532975,-41.14937295961756,0 174.1534151695327,-41.14935560976123,0 174.1533704095694,-41.14934345613197,0 174.1533202030348,-41.14931529349197,0 174.1530955683636,-41.1492181474181,0 174.1530572614937,-41.14920632810634,0 174.1530172810128,-41.14919291675184,0 174.1529251645712,-41.14913751336001,0 174.1528570191427,-41.14903768421091,0 174.1526947454352,-41.14892260112936,0 174.152558035665,-41.14882897521279,0 174.1523715395797,-41.14873199643319,0 174.1522199098117,-41.1486554692824,0 174.1521071743464,-41.14860601573564,0 174.1520719701365,-41.14858807941611,0 174.1520148048516,-41.14847643164123,0 174.1519668613377,-41.14842831970564,0 174.1519780083593,-41.14841490916425,0 174.1519746558113,-41.14837601746774,0 174.1518752462625,-41.14837584877718,0 174.1517706396537,-41.14830125041673,0 174.1515143224094,-41.14821743064383,0 174.1512189429323,-41.14820100315202,0 174.150877884316,-41.14826369880089,0 174.15049642273,-41.14826411832987,0 174.1503796626814,-41.14835128974377,0 174.1503377537603,-41.14840283905555,0 174.150118734616,-41.14856125684648,0 174.1499193288033,-41.14855254030969,0 174.1496824572882,-41.14831876831715,0 174.1496098691835,-41.14819220239121,0 174.1494776867588,-41.14809203840625,0 174.1492306725792,-41.14801173911305,0 174.1489687381008,-41.14799799333278,0 174.1488132531201,-41.147941750471,0 174.148700181081,-41.14789648823953,0 174.1485148577168,-41.14785407580947,0 174.1483374965459,-41.14779850442727,0 174.1481827671795,-41.14773128082106,0 174.148161476085,-41.14769859131066,0 174.1481626504366,-41.14766481221257,0 174.148161811825,-41.14766380629533,0 174.148342273614,-41.14758233448755,0 174.1484962494294,-41.14743984218985,0 174.1485353086501,-41.14738862911887,0 174.1486178710783,-41.14731838839123,0 174.1487181185422,-41.14725175178715,0 174.1488036984438,-41.14720154471871,0 174.1488812315735,-41.14715301312699,0 174.1490317693134,-41.14709383747024,0 174.1490668063854,-41.14705301695997,0 174.1491485294591,-41.14691387844847,0 174.1492385511623,-41.14682477806494,0 174.1494019984667,-41.14675504122475,0 174.1495272244897,-41.14671321514428,0 174.1495954515881,-41.14669091917435,0 174.1497200904748,-41.14660567501954,0 174.1497226894227,-41.1465356857856,0 174.1497848833859,-41.1464713971876,0 174.1498319895011,-41.14634147729138,0 174.1499257835814,-41.14615028616031,0 174.1499976160169,-41.14605448123889,0 174.1500516795517,-41.14599228690324,0 174.1501883040888,-41.14588902233825,0 174.150365245846,-41.14574552442583,0 174.1503919011813,-41.14574468621073,0 174.1505514925726,-41.14564628210976,0 174.1506152791329,-41.14560638548759,0 174.1506507345652,-41.14550739448325,0 174.1506997681317,-41.14544913964556,0 174.1507995135297,-41.14538024078188,0 174.1508518159952,-41.14531301841802,0 174.1508679925723,-41.14520338273196,0 174.1509015213184,-41.14515309065531,0 174.1508986707758,-41.14512861621822,0 174.1508179534706,-41.14509098119001,0 174.150550151479,-41.14505552582514,0 174.1504483955977,-41.14504613825582,0 174.1502498282616,-41.1449159666975,0 174.1501215853716,-41.14476760672531,0 174.1500498348751,-41.14474137192129,0 174.1499907427591,-41.14471287404949,0 174.1498075976578,-41.14446719969451,0 174.1497317420981,-41.14433786675463,0 174.1496601615761,-41.14428564800881,0 174.1495514472662,-41.14416453011122,0 174.149462935514,-41.14403854987992,0 174.1496184184136,-41.14393771542278,0 174.1496662795288,-41.14381173521161,0 174.1497334185391,-41.14365692235081,0 174.1497248695811,-41.14350286227457,0 174.1497032434317,-41.14347796809366,0 174.1495436523487,-41.14331703471969,0 174.1494352740459,-41.14309734583613,0 174.1494631862271,-41.14294739332117,0 174.1495146509213,-41.14292836604935,0 174.1496532041105,-41.14292266668858,0 174.1497230250892,-41.14281713916972,0 174.1496929345827,-41.14275058567291,0 174.1496148148902,-41.14265754679198,0 174.1495925187627,-41.14254590004352,0 174.1495469211774,-41.14238647624677,0 174.1495719826128,-41.14234766836785,0 174.1495963740433,-41.14229813081711,0 174.1496130537342,-41.14222076596177,0 174.1495696364565,-41.14211255568976,0 174.1494982220231,-41.1419807920509,0 174.1494618450124,-41.14198749834898,0 174.149194042689,-41.14184069023172,0 174.1493198555004,-41.14169773548728,0 174.1494014944404,-41.14164274991989,0 174.1494127275392,-41.14151433926001,0 174.1493671295808,-41.14149212712241,0 174.1492899325044,-41.14142356280554,0 174.149112821558,-41.14128082001415,0 174.1491165104846,-41.14124217950882,0 174.1491332737794,-41.14109750691264,0 174.1490606024598,-41.14098208930553,0 174.1489741854294,-41.14077388189634,0 174.1490137482827,-41.14064991412995,0 174.1490357087762,-41.14062979689246,0 174.1489907822656,-41.1405692804579,0 174.1488819849095,-41.14052250920472,0 174.1488459425034,-41.14040633605843,0 174.148979802596,-41.14016544005587,0 174.1489366354841,-41.14003032349055,0 174.1489466929948,-41.13992060397914,0 174.1491105585251,-41.1398100473385,0 174.1491751836615,-41.13975682242725,0 174.149254980245,-41.13972891017951,0 174.1493363675218,-41.13969697534778,0 174.1493527965252,-41.13968750368264,0 174.1495519496679,-41.1396707399287,0 174.1496506888485,-41.13970334534267,0 174.1497330824962,-41.13955951193944,0 174.1497602412876,-41.13941006311442,0 174.1498408746167,-41.13932087934517,0 174.1499624960969,-41.1392786338713,0 174.150094091896,-41.13917570509837,0 174.1501057425184,-41.13909993247881,0 174.1500859613048,-41.13905902932315,0 174.1499090187185,-41.13883104093693,0 174.1499578021563,-41.13873783419119,0 174.1500158884829,-41.13872291388842,0 174.1500686108859,-41.13869818810387,0 174.1501002107279,-41.13868863241603,0 174.1501805934503,-41.13863632873038,0 174.1502012958611,-41.13859534200682,0 174.1502108519405,-41.13855552770297,0 174.1502095944968,-41.1385107680201,0 174.1502097621352,-41.13849199324591,0 174.150120495193,-41.13836551017889,0 174.1500536911028,-41.13820105748405,0 174.1499797627972,-41.13806828775625,0 174.1498920037608,-41.13798346301635,0 174.1497616662374,-41.13784708926716,0 174.1496449903487,-41.13780593442162,0 174.149456563641,-41.13768565417817,0 174.1494300783403,-41.13767693682562,0 174.1492568243288,-41.13767743873667,0 174.1492360354117,-41.1376730810135,0 174.1490459349673,-41.1375790357238,0 174.1489361316735,-41.13744928407251,0 174.1489246486906,-41.13744098624989,0 174.1487971603444,-41.13729455370915,0 174.1486561761169,-41.13712951402389,0 174.1485467930493,-41.13693647906218,0 174.148583338216,-41.13686648993858,0 174.1486157755662,-41.13671368823243,0 174.1486147701336,-41.13666322947859,0 174.1485410927313,-41.13655761743163,0 174.1484747079019,-41.13648796373565,0 174.1483712762892,-41.13639928290152,0 174.1482073245076,-41.13623449503255,0 174.1480387645712,-41.13609434949582,0 174.1477616601758,-41.13594909068431,0 174.1477690364414,-41.13588614288513,0 174.1476672793586,-41.13562999189939,0 174.1475319965498,-41.13546377880362,0 174.1474344301341,-41.13535741225241,0 174.1472844775238,-41.13532715439141,0 174.1471740034322,-41.13514685870695,0 174.1470570764077,-41.13497042034711,0 174.1468957253123,-41.13484913385184,0 174.1467448505783,-41.13471242509645,0 174.1465457805187,-41.13461217746038,0 174.146457519583,-41.1346074837456,0 174.1462281066988,-41.1345724467283,0 174.1461493167527,-41.13455476118931,0 174.146057283606,-41.13449474737622,0 174.1460038914998,-41.13441880702477,0 174.1459315551928,-41.13436583309657,0 174.1459068285119,-41.13435208729455,0 174.145648582069,-41.13424119407681,0 174.145484547958,-41.13418067714399,0 174.1454099490094,-41.13416676331268,0 174.1451863195215,-41.13414388035641,0 174.1451618446755,-41.13412007650459,0 174.145100321428,-41.13398194215297,0 174.1450862402761,-41.1339163964799,0 174.1450009121865,-41.1337161522431,0 174.1449940387338,-41.13371422444202,0 174.1447858330451,-41.13361523374807,0 174.1446880998058,-41.13359712924501,0 174.1444937233059,-41.13351381285006,0 174.1444209676128,-41.13347819021657,0 174.1441980943297,-41.13331725712046,0 174.1441443663451,-41.1332429937676,0 174.1441649012879,-41.13323352168351,0 174.144180323817,-41.13310611731408,0 174.144272356503,-41.13295666832997,0 174.1443629657537,-41.13283454321299,0 174.1444452757887,-41.13269523615656,0 174.1444703381568,-41.132675705982,0 174.1445191195358,-41.13264058636178,0 174.1445734346675,-41.13262306789207,0 174.1445134206937,-41.13256900496459,0 174.1444117474992,-41.13258124245776,0 174.1443194635918,-41.1326228168178,0 174.1441868619434,-41.13262801281022,0 174.1441752112301,-41.13261820646258,0 174.1440956664118,-41.13244637675898,0 174.1440609656883,-41.13230572884698,0 174.1440732869559,-41.13213457112558,0 174.1440492307261,-41.13208377644319,0 174.143893411123,-41.13195578475776,0 174.1437024718597,-41.13182645170695,0 174.1435599790726,-41.13175813894902,0 174.1434706281574,-41.13159343491043,0 174.1434766627788,-41.13149863649725,0 174.1433449004368,-41.13133158437078,0 174.143272647521,-41.13129462014225,0 174.1432071005797,-41.13111105601665,0 174.1431986352961,-41.13096663618823,0 174.1431268036032,-41.13080059147507,0 174.1430663687455,-41.13072884244924,0 174.1429329292701,-41.13051518665166,0 174.1429533808169,-41.13030086226232,0 174.1429864058514,-41.13007974733321,0 174.142945836506,-41.13004479520719,0 174.1429447478743,-41.13004412412098,0 174.1429106325451,-41.13000665692376,0 174.1428061107018,-41.12994069129707,0 174.1427920284706,-41.1299238441177,0 174.1427867494507,-41.12993214222219,0 174.1426833158966,-41.12982074570584,0 174.1426885968625,-41.12966693843564,0 174.1426854954504,-41.12963039307034,0 - - -
- - Queen Charlotte Te Mahia To Torea - - - - - - - - - - - - - - -
Queen Charlotte Te Mahia To Torea
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)7.442
NAMEQueen Charlotte Te Mahia To Torea
ISLANDSouth
LEGALSTATDOC
TA_NAMEQueen Charlotte Walkway
Fromkm1747.231
Tokm1754.673
categoryWalking Track
CycleCycleway
walkidQueen Charlotte Track
GuidebookNelson Marlborough
colourred
mapNamemap077
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.9711402917792,-41.21946235090769,0 173.9713561254059,-41.21948020414011,0 173.9714965221004,-41.2194959623143,0 173.9715408629099,-41.2194854851422,0 173.9716049836191,-41.2194208604727,0 173.9716698602563,-41.2193850703151,0 173.9716817617215,-41.2193855733999,0 173.9718854435196,-41.21936587500754,0 173.9719730342252,-41.21934039415925,0 173.9720156135913,-41.21933125850849,0 173.9720434420435,-41.21932471998583,0 173.972090213237,-41.21930678350513,0 173.9721626319427,-41.21927593679162,0 173.9722948150948,-41.21916437433482,0 173.972412664317,-41.21914970633755,0 173.9724260750441,-41.21914643677773,0 173.9725853318697,-41.21916361970865,0 173.9727515445254,-41.21914937066129,0 173.9728976415707,-41.21911349625746,0 173.9729272294297,-41.21910075615242,0 173.9729871595248,-41.21905784050149,0 173.9730698054502,-41.21903194031021,0 173.9731115483575,-41.21901098508453,0 173.9731392081381,-41.21899598226763,0 173.9731826256128,-41.2189845817644,0 173.9732911720507,-41.21892859110312,0 173.9733288055949,-41.21891660529258,0 173.9734471585751,-41.21882750567799,0 173.973457468883,-41.21882658439628,0 173.9735681944706,-41.21882867936206,0 173.9735852925026,-41.21882532624397,0 173.973713283781,-41.21877939273625,0 173.9737923259887,-41.21874896729893,0 173.9739004517336,-41.21870906921038,0 173.9739495705493,-41.21864897129337,0 173.974082423057,-41.2185722772202,0 173.9742193002543,-41.21849155942446,0 173.9742547545909,-41.2184572769213,0 173.9742725255327,-41.21843464598462,0 173.9742944018146,-41.21842048000133,0 173.9744225609187,-41.21832123928357,0 173.9744336246701,-41.21831578966327,0 173.9745325314445,-41.21823515591061,0 173.9746811663427,-41.21816809554768,0 173.9748055609387,-41.21812093919753,0 173.9748497974938,-41.21809132832504,0 173.9749741596101,-41.21804192283879,0 173.9750527440586,-41.21801876784173,0 173.9751282176052,-41.21798664312195,0 173.9752096467627,-41.21795446881103,0 173.9752587509292,-41.2179518036962,0 173.9753302082503,-41.21795007429239,0 173.975333337015,-41.21796016796608,0 173.9753038068157,-41.21797728505284,0 173.9752757151106,-41.21799101655792,0 173.9752208210632,-41.21800497505761,0 173.9751514547148,-41.21804716829298,0 173.9750911893969,-41.21810052875806,0 173.9750517194118,-41.2181503406125,0 173.975053776998,-41.21818855556656,0 173.9750586949363,-41.21821887444673,0 173.9750815813673,-41.21825578795708,0 173.9751055556583,-41.21826570511162,0 173.9751508323429,-41.21826532168362,0 173.9751666072521,-41.2182651880888,0 173.9752202121317,-41.21826473410268,0 173.9752869187698,-41.21824392877178,0 173.9753461297401,-41.21821981349969,0 173.9753904162271,-41.21819357539194,0 173.9754451934514,-41.21817174595319,0 173.9754779360322,-41.21817034441492,0 173.9755136725618,-41.21817004166425,0 173.9755499736384,-41.21817192479603,0 173.9755509323317,-41.21817197522617,0 173.9755260362265,-41.21820029744432,0 173.9755171117967,-41.21821298836951,0 173.9755085355069,-41.21822518452078,0 173.9755046364737,-41.2182634499291,0 173.9755110599718,-41.21829488110171,0 173.9755367914704,-41.21832277440396,0 173.9755891750998,-41.21834032261474,0 173.9756416422989,-41.21836349181463,0 173.9757235395497,-41.21836279786875,0 173.9757874347824,-41.21835326040704,0 173.9758376780778,-41.21832697165254,0 173.9759083335245,-41.21827127351164,0 173.9759644655461,-41.21824043723274,0 173.9760280597473,-41.21821066183578,0 173.976075190658,-41.21817540334585,0 173.9761075988807,-41.21815151488044,0 173.9761666422705,-41.21811615536528,0 173.976203379473,-41.21808110203603,0 173.9762417688471,-41.21793910851891,0 173.9762859417591,-41.21777130205804,0 173.9763260909035,-41.21772151284693,0 173.9763340535049,-41.21771162331375,0 173.9763545902789,-41.2175738237848,0 173.9763383294331,-41.21739126612484,0 173.9763386641307,-41.2173736639955,0 173.9764949031183,-41.21730166363808,0 173.9766244870545,-41.21723393811491,0 173.9767269985023,-41.2171186867465,0 173.9767293445984,-41.21713469608991,0 173.9767141732499,-41.21715573530501,0 173.9765991739477,-41.21734323813941,0 173.9765857630527,-41.21743627735159,0 173.9766148477378,-41.21747072662259,0 173.9766730183441,-41.2173969662199,0 173.9768066255823,-41.21724542103146,0 173.9768737652788,-41.21718238920454,0 173.9768831520464,-41.21717241548554,0 173.977016172975,-41.21705632582385,0 173.977166963644,-41.21695523980289,0 173.9772479332667,-41.21692825009557,0 173.9772624335163,-41.21692112532982,0 173.9773761757343,-41.21684367716021,0 173.9774240372624,-41.21681794388498,0 173.977460916691,-41.21676505364564,0 173.9775920102514,-41.21658165774753,0 173.9776081031574,-41.21656757716397,0 173.9776794328886,-41.21649297849951,0 173.9778331575649,-41.21651887830551,0 173.9780885545322,-41.21651083075265,0 173.9781231705918,-41.21650496363699,0 173.9781784923031,-41.216488368064,0 173.978352415584,-41.21640345911843,0 173.9785482184089,-41.21627680863931,0 173.9785975034139,-41.21624395208071,0 173.978643185255,-41.21623163040643,0 173.9786847585449,-41.21621738085292,0 173.9787746133054,-41.216177147964,0 173.9788357167947,-41.2161325564653,0 173.9789345384617,-41.21608871890273,0 173.9790258178817,-41.21600556991491,0 173.9790905270971,-41.21596952838171,0 173.9791596769701,-41.21593801236775,0 173.9792118964663,-41.21592334420959,0 173.9793086241685,-41.21588847510877,0 173.9794716522696,-41.21581974312632,0 173.9795813707982,-41.21565696709855,0 173.9796881557921,-41.21555873104848,0 173.9797199240913,-41.21541162943673,0 173.9797216000667,-41.21533376141241,0 173.979778261785,-41.21533183265901,0 173.9797399572489,-41.21521389885955,0 173.9797797708579,-41.21512815334955,0 173.979828302401,-41.21503083888636,0 173.9798892379325,-41.2150063643071,0 173.980014966413,-41.2149965568202,0 173.9800717125085,-41.21499286890152,0 173.9803943318778,-41.2149648729614,0 173.9806627199847,-41.2150190200428,0 173.9807373189211,-41.21502195446099,0 173.9808454459317,-41.21495967645313,0 173.9810218008537,-41.21487929436346,0 173.9811768661324,-41.21480620410887,0 173.9813460125726,-41.21472724581398,0 173.9816574004178,-41.21471450566337,0 173.9816921015125,-41.21470754951546,0 173.9819284711861,-41.21462993227947,0 173.9820329943494,-41.21448601534759,0 173.9821337438957,-41.21440605202554,0 173.9821603144824,-41.21437839146638,0 173.9823013821193,-41.21429842819604,0 173.9824209081674,-41.21429013024901,0 173.9826415195991,-41.21433078231854,0 173.9827427735405,-41.21429080035698,0 173.982842267485,-41.21418233948366,0 173.9828660713767,-41.21414981748467,0 173.9829356412536,-41.21409927400254,0 173.9829664859757,-41.21407387734692,0 173.983109984986,-41.21401419844385,0 173.9831446020375,-41.21400724077223,0 173.9831967368804,-41.21398947107473,0 173.9832392328361,-41.21397119815624,0 173.9835395575481,-41.21391864406284,0 173.9838474234227,-41.21394094020956,0 173.9841334989735,-41.21388737944604,0 173.9843336585283,-41.21382962792444,0 173.9843510091111,-41.21382669441731,0 173.9844721279604,-41.21377799638809,0 173.9845901444514,-41.21372686565145,0 173.9847811679309,-41.21363156439973,0 173.9848932339951,-41.21355109743514,0 173.9850159460569,-41.21343173941598,0 173.9850471264952,-41.2134100297958,0 173.9851744473999,-41.21330165222876,0 173.9852546615169,-41.21330425013753,0 173.9853368055113,-41.21334507017059,0 173.9853554958657,-41.21342721293104,0 173.9853588494914,-41.21344473128314,0 173.9855088005482,-41.21354891767825,0 173.9856311775638,-41.21358881576207,0 173.9859118032852,-41.21367808319809,0 173.9861032465766,-41.21373239807761,0 173.9862966996438,-41.21379056784973,0 173.9863312342519,-41.21383231019559,0 173.9864473229012,-41.21395435136883,0 173.986461908491,-41.21397572515554,0 173.9865143781169,-41.21403079385266,0 173.9867107659686,-41.21414319490552,0 173.9868694359224,-41.21426666149233,0 173.9868857796343,-41.21428903983193,0 173.9869322161543,-41.21433354804449,0 173.9869896321982,-41.21436925525831,0 173.9870494784559,-41.21440378772709,0 173.9870915557858,-41.21446246185585,0 173.9871382429878,-41.21450537706625,0 173.9873465334367,-41.21460864203556,0 173.9873896166831,-41.2146287588747,0 173.987601259788,-41.21467142309552,0 173.9876368827736,-41.21468416344486,0 173.9878213693689,-41.21473638227415,0 173.9879138214901,-41.21476756293116,0 173.9881086159632,-41.21480469500323,0 173.9881737443692,-41.21479866031088,0 173.9881843048878,-41.21479405050894,0 173.9883304006433,-41.21468139723546,0 173.988391505742,-41.21462079574095,0 173.9884725588023,-41.21459414242784,0 173.9886723835499,-41.21455483045988,0 173.9888261067125,-41.21453748033618,0 173.9889492373989,-41.21447478305065,0 173.9889660005717,-41.2144684129434,0 173.9890470545398,-41.21443765079604,0 173.9891271854375,-41.21440580028261,0 173.9892072322242,-41.21436045415945,0 173.9893128436918,-41.21430085881802,0 173.9893913829123,-41.21426179940105,0 173.9895471195506,-41.21418854079511,0 173.9897031901058,-41.21413682468686,0 173.9897893565038,-41.21407831932377,0 173.9899424087074,-41.21404646834594,0 173.9900353638658,-41.21401662826654,0 173.9902074450915,-41.21394596928661,0 173.9904868978207,-41.21391118396914,0 173.9905514378535,-41.21389634794543,0 173.9905923424289,-41.21388603802237,0 173.9907855447076,-41.21381085295786,0 173.9910792472902,-41.21383901566949,0 173.9911211554345,-41.21382786821047,0 173.9912180514045,-41.21379710599869,0 173.9912843519778,-41.21379895022368,0 173.9914194682199,-41.21374823998772,0 173.9916154367066,-41.21366768993583,0 173.9917316944572,-41.21367598828817,0 173.9919342006574,-41.2136310609792,0 173.9919860015195,-41.21362318246459,0 173.9921441670356,-41.21361488384439,0 173.9922514561972,-41.21362393632381,0 173.992279954533,-41.21362050021249,0 173.9923341855384,-41.21359946103243,0 173.9925559699918,-41.21352720911037,0 173.9927500948423,-41.21350600329369,0 173.992894514808,-41.21349669888526,0 173.9928971980812,-41.21347314577139,0 173.9929417888245,-41.21341824382663,0 173.9929622404615,-41.2133739044019,0 173.992929384311,-41.21329385684992,0 173.9930225065746,-41.21329226384402,0 173.9931155463452,-41.21329846675663,0 173.993100374897,-41.21319235240647,0 173.9931378423883,-41.21312110605081,0 173.993214117255,-41.2131298234062,0 173.9933183043312,-41.21317349311432,0 173.9933583694602,-41.21313795341717,0 173.9933621421146,-41.21304977579187,0 173.9933690154207,-41.21300593805714,0 173.9934561029732,-41.21300610642562,0 173.9935397538336,-41.21303804129519,0 173.9935662415714,-41.21304223193879,0 173.9936037077166,-41.21305488878534,0 173.9937588571472,-41.21312169335075,0 173.9937695022726,-41.21313225401476,0 173.9939226397902,-41.2131465030446,0 173.9941676435785,-41.21320140419286,0 173.9944039291133,-41.2132967914548,0 173.9945180897136,-41.21334708199407,0 173.9947920108859,-41.21342897320571,0 173.9950436350296,-41.21343919913596,0 173.9952525120887,-41.21336116431389,0 173.9955386714629,-41.21334004104445,0 173.9956980935752,-41.21331305097021,0 173.9958223136457,-41.21323845213647,0 173.9959784689059,-41.21314608394998,0 173.9960472835375,-41.21309964841755,0 173.9961454367652,-41.21304835069527,0 173.9963097218429,-41.21299034825175,0 173.9964136564753,-41.21294533720913,0 173.9964792041337,-41.2129161677724,0 173.9967573150088,-41.21280041384112,0 173.9970173217592,-41.21268055263867,0 173.9972673541016,-41.21258064106669,0 173.9973975250411,-41.21251651901928,0 173.9976021269104,-41.21242088164834,0 173.9978425201868,-41.21231711415857,0 173.9981484597591,-41.21222935492174,0 173.9984166804847,-41.21221242447666,0 173.9987116394077,-41.21216690969663,0 173.9987521252668,-41.21216020450117,0 173.9990196745695,-41.21211720471725,0 173.9993260344599,-41.21206381308522,0 173.9995878845915,-41.21202785414138,0 173.9997818412615,-41.21203263242111,0 173.9998149494745,-41.21203581743676,0 173.9999553465168,-41.21205048524021,0 173.9999998549519,-41.21205861642056,0 174.000075124571,-41.21208711442097,0 174.0001690021601,-41.21209960346366,0 174.0001819104457,-41.21210128027591,0 174.0003290119697,-41.2121330472973,0 174.0004302646362,-41.21215224225972,0 174.0005732611223,-41.21217386681202,0 174.0006768606686,-41.21218400911806,0 174.0006906908714,-41.21218669123199,0 174.0008192699062,-41.21222046967892,0 174.0009418974224,-41.21224310131287,0 174.0011797749906,-41.21230605014539,0 174.0014598145896,-41.21236690232104,0 174.0017484867347,-41.21241082346947,0 174.0017567014552,-41.21241853467478,0 174.0017618147252,-41.21242037911129,0 174.0017637419962,-41.21242582732882,0 174.0019074918066,-41.21246446825436,0 174.0021569365862,-41.21262883683521,0 174.0023870209498,-41.21273863978885,0 174.002554575435,-41.21280846098073,0 174.0025702487675,-41.21281340577627,0 174.0028779488852,-41.21291030125472,0 174.0031672079235,-41.2129795362211,0 174.0032313304537,-41.21299453931236,0 174.0034407096928,-41.21302253496839,0 174.0035785925376,-41.21299738901713,0 174.003712031782,-41.21299026374329,0 174.0037598928515,-41.21299235969808,0 174.0038602245162,-41.21301264419213,0 174.0040012079205,-41.21307693267305,0 174.0042268481507,-41.21309637911554,0 174.0043379092421,-41.21311825586483,0 174.0044354740302,-41.21312865009075,0 174.0045760395243,-41.21314600048465,0 174.0048961425571,-41.21314817877416,0 174.0049416567541,-41.21315966275007,0 174.0052212765454,-41.2131254644604,0 174.005540125341,-41.21310518035649,0 174.0059014694332,-41.21307475437749,0 174.0060172227725,-41.21309134962436,0 174.0061078313308,-41.21310861664595,0 174.006135911488,-41.21310216317445,0 174.0063063987829,-41.21298724728413,0 174.0064164524297,-41.21296126291396,0 174.0063882900183,-41.21301884678633,0 174.0064474662416,-41.2131804505019,0 174.0065386607157,-41.21322487393636,0 174.0065448645158,-41.21318874829929,0 174.0065887854978,-41.2130527099234,0 174.0066067225515,-41.21300057408415,0 174.0066244084783,-41.21301842770671,0 174.006620384639,-41.21303116827063,0 174.0067245725239,-41.21319771631827,0 174.0067963208326,-41.21321808420495,0 174.0067818202611,-41.21316603287713,0 174.0067811498722,-41.213140048771,0 174.0068178617107,-41.2130320062738,0 174.0068249028616,-41.21301331494355,0 174.0068523116827,-41.21292605892432,0 174.0068864264208,-41.21293695541398,0 174.0068841626553,-41.2129393856749,0 174.0068948077183,-41.21302907342727,0 174.0069083027087,-41.21304541702722,0 174.0069400704416,-41.21300920744459,0 174.0069772016982,-41.21290644515807,0 174.0069859203211,-41.21289563351301,0 174.0071138269103,-41.21273151480974,0 174.0071218735641,-41.21275381149873,0 174.0071167610803,-41.21284877775759,0 174.0071289985608,-41.21293385401889,0 174.0072652883828,-41.21302798338589,0 174.0074201021657,-41.21305840918019,0 174.0073826352447,-41.21301842832454,0 174.007352712068,-41.212999987381,0 174.0073194355943,-41.21295665320454,0 174.007396632618,-41.21274920117153,0 174.0074395485552,-41.21284835919919,0 174.007550272965,-41.21294869032239,0 174.0075513625872,-41.2128838144046,0 174.0076531191446,-41.21267049495729,0 174.0076739064849,-41.21270528011544,0 174.0077213482339,-41.21288222241874,0 174.0079847914639,-41.21299403629013,0 174.0081984460147,-41.21306176214959,0 174.0084698516271,-41.21311507122361,0 174.0085521614413,-41.21312965534143,0 174.0086187140782,-41.21313837287576,0 174.0087988411751,-41.21317600735178,0 174.0090056226598,-41.21333828107603,0 174.009022051381,-41.21337340142752,0 174.0090364679973,-41.21339930109378,0 174.009057338543,-41.21344137791293,0 174.009160940402,-41.21356702301496,0 174.0093434964169,-41.21365687740304,0 174.0093543099561,-41.2136183196647,0 174.0092254804895,-41.2134871444209,0 174.0091425835093,-41.21329461126813,0 174.0090871792629,-41.21311071243277,0 174.0090754445572,-41.21304625515112,0 174.0089964028176,-41.2129777748173,0 174.0089876023529,-41.21296662741435,0 174.0087767970764,-41.2128177653582,0 174.0087470408577,-41.21277635813234,0 174.0087382398352,-41.21271299116724,0 174.0087550038575,-41.21267996613924,0 174.0088270880646,-41.21263244134453,0 174.0088616214671,-41.21262632250683,0 174.0091038591228,-41.21253051694746,0 174.0092202827866,-41.21246547335259,0 174.0093740911348,-41.21233538598617,0 174.0096725704244,-41.21223907810946,0 174.0098099077685,-41.21220090882447,0 174.0098354306031,-41.21219381571144,0 174.0099283034101,-41.21214922368385,0 174.0101453944658,-41.2120892097671,0 174.0104399338115,-41.21207219428478,0 174.0104042272991,-41.21211150562372,0 174.0102674352303,-41.21215903075072,0 174.0102028098667,-41.2121979228687,0 174.0100795121279,-41.21231065966622,0 174.0099504308627,-41.21245231409668,0 174.0099314042464,-41.21247461023432,0 174.0098730656566,-41.21255172262302,0 174.0098137223428,-41.21267644597828,0 174.0097592395728,-41.21275112934421,0 174.0098054237617,-41.21290627771862,0 174.0098290611642,-41.21292572436629,0 174.0099764155878,-41.21302655790603,0 174.0100173184295,-41.21301373425811,0 174.0100624971441,-41.21294659528797,0 174.0101887293461,-41.21285145997353,0 174.0102064979678,-41.21284609582458,0 174.0103109365665,-41.21276671871154,0 174.0104451308959,-41.21271324240794,0 174.0105569461771,-41.21267653024739,0 174.0106980132077,-41.21261265968301,0 174.0109490515858,-41.21255390191467,0 174.0111481204598,-41.2124971573981,0 174.0113944650975,-41.21236287863605,0 174.0116606744395,-41.21218191436594,0 174.0117247115569,-41.21213958475449,0 174.0117945341282,-41.21204880940345,0 174.0118791915797,-41.2119597934654,0 174.0119977112501,-41.21186172526763,0 174.012189823977,-41.21170213320733,0 174.0123078405104,-41.21165033275662,0 174.012351929601,-41.21164077799299,0 174.0123629099657,-41.21164102915917,0 174.012517389065,-41.21161747589708,0 174.0126915651056,-41.21157866848436,0 174.0127150345869,-41.21156400018335,0 174.0129926433825,-41.21150214072465,0 174.0131601127171,-41.21143843932091,0 174.0131984186893,-41.21142293237347,0 174.0133275005741,-41.21140055271051,0 174.0133857545919,-41.21135654808629,0 174.0134021831223,-41.21134137592982,0 174.013593458265,-41.21124607428307,0 174.013621788383,-41.21123056763258,0 174.0138438252913,-41.21111204671789,0 174.014016744504,-41.21105563737638,0 174.014171222551,-41.21101515280208,0 174.0143081834801,-41.21094499596243,0 174.0144429636346,-41.21090618792267,0 174.014622336525,-41.21082857249152,0 174.0146293775839,-41.21082941032367,0 174.0147674273032,-41.21076562351264,0 174.0148266035476,-41.21071130880388,0 174.0149830935111,-41.2106491994937,0 174.0151816604567,-41.21063419510505,0 174.0153356354436,-41.21065154566504,0 174.0156097235135,-41.21060871363194,0 174.0158750958314,-41.21053067911069,0 174.0160431525412,-41.21050142646273,0 174.0161101236045,-41.2104815607963,0 174.0162848867277,-41.21042791696567,0 174.0163347591769,-41.21043336513844,0 174.016371555526,-41.21043462211749,0 174.0165626635312,-41.21040109376153,0 174.0168183948197,-41.21035356935171,0 174.0170481434101,-41.21033890072421,0 174.0172098294591,-41.21036077731208,0 174.0174145163622,-41.21036262250397,0 174.0174745302098,-41.21034074483794,0 174.0177412414944,-41.21025265148237,0 174.0178680610915,-41.21022993632548,0 174.0180454216591,-41.21017101086243,0 174.0182865687896,-41.21009632775375,0 174.0184912547005,-41.21009616141848,0 174.0187545313362,-41.21008945471197,0 174.0189220853231,-41.21002918873903,0 174.0190234224755,-41.20997152175114,0 174.0191206516425,-41.20995383576253,0 174.0193493940018,-41.20991980575779,0 174.0195402503294,-41.20988124928193,0 174.0197537372472,-41.20983330421043,0 174.0198071294839,-41.20975518482486,0 174.0198427532876,-41.20969332678624,0 174.0199052824543,-41.20965762035205,0 174.0200049427918,-41.20959852701632,0 174.0200843205779,-41.20951286395295,0 174.0201565720745,-41.20946902735997,0 174.0202331818815,-41.20937397564808,0 174.0202577404401,-41.20928906747971,0 174.0202703985932,-41.20927188389734,0 174.0202828027916,-41.20926207807982,0 174.0203889176457,-41.20916744581625,0 174.0205557183981,-41.20906778527709,0 174.0207775030816,-41.20898572639271,0 174.0209064175544,-41.208925125375,0 174.0210190691165,-41.20891054113083,0 174.0212324728902,-41.20881909397114,0 174.0212655809228,-41.2087864878531,0 174.0214728657232,-41.20862622599644,0 174.0216235725509,-41.20849756399549,0 174.021664224706,-41.20846596364612,0 174.0218638810115,-41.20830218189026,0 174.0218903681555,-41.20829078266947,0 174.0219474491552,-41.20824828570861,0 174.0220198693286,-41.20821484315869,0 174.0220519715302,-41.20818609293504,0 174.0222413195779,-41.2080448582625,0 174.0224764308837,-41.20795877565632,0 174.0225397136572,-41.20775517879704,0 174.0225478452486,-41.20771905318494,0 174.0225888323505,-41.20766306203062,0 174.0227001437885,-41.20753347835974,0 174.0227188362509,-41.20751176948103,0 174.0228045818,-41.20739836093602,0 174.0228581435452,-41.20732535500601,0 174.0229536135864,-41.20721136094068,0 174.0230728865614,-41.20706509684108,0 174.0232033925773,-41.2069172402238,0 174.023248237158,-41.20687801305103,0 174.0233146204899,-41.20679209840068,0 174.0234245083269,-41.20668355339574,0 174.0235291985221,-41.20659579386516,0 174.0235886260611,-41.20655807634402,0 174.0236911364498,-41.20645958802641,0 174.0237187969405,-41.20644785367735,0 174.0238401667041,-41.20637752865321,0 174.0239902866478,-41.20625858988256,0 174.0239970760281,-41.20624216247651,0 174.0240223052207,-41.2061303468486,0 174.0241054545287,-41.20598860950067,0 174.0241897760199,-41.20590638290196,0 174.0242632848301,-41.20575576039204,0 174.0242635373424,-41.20574503084966,0 174.024254818693,-41.20571460464414,0 174.0244165902635,-41.20566959434923,0 174.0244779454558,-41.2057349733332,0 174.0244963015282,-41.20585081147974,0 174.0246457512909,-41.2057659017868,0 174.024774581239,-41.20564310696242,0 174.0247510285385,-41.20549114278447,0 174.0245870785847,-41.20539257180224,0 174.0245773546122,-41.20534404093269,0 174.0247089506642,-41.2053635706228,0 174.0248637644322,-41.20542827894374,0 174.025042550565,-41.20553070608528,0 174.025097535581,-41.2055655746341,0 174.0252750645772,-41.20559231349771,0 174.0253986983364,-41.20559088836101,0 174.0255466376945,-41.20557756091495,0 174.0256766416045,-41.20550120114692,0 174.0257616340918,-41.20539039312337,0 174.0256148666042,-41.20527732123929,0 174.0255799141787,-41.20513030221304,0 174.0254318905759,-41.20504405186851,0 174.0253372575702,-41.20494531414649,0 174.0252669344074,-41.20486794871094,0 174.0251994599053,-41.20480290476486,0 174.0250571346458,-41.20470416623181,0 174.0249938516479,-41.2046841342767,0 174.0249694595387,-41.20459746468423,0 174.0250381076267,-41.20456578148372,0 174.0251900719382,-41.20453040919316,0 174.0251987894626,-41.20453560650473,0 174.0251973643631,-41.2045366118429,0 174.0252206665202,-41.20457567175911,0 174.0252210851285,-41.20457651025567,0 174.0252906554075,-41.2046064333325,0 174.025471788468,-41.20456150588564,0 174.0255675932972,-41.20452915175766,0 174.0256124354092,-41.204526469823,0 174.0256915608836,-41.20457206836977,0 174.0258079858815,-41.20463987732787,0 174.0259272606201,-41.20469746133245,0 174.0260489665313,-41.20473207817098,0 174.0262818988799,-41.20476066022232,0 174.0262956446544,-41.20476049267474,0 174.0264288335299,-41.20476468406621,0 174.0266414819141,-41.20480533638795,0 174.0268323383222,-41.20484841925412,0 174.0270566379309,-41.20487063078711,0 174.0271752417175,-41.20485814208746,0 174.0272704613082,-41.20491849205106,0 174.0273516810506,-41.20502703745618,0 174.0274296334998,-41.20508361487137,0 174.0274420377031,-41.20523289728266,0 174.0275068304487,-41.20540698880647,0 174.0276196504208,-41.20548376734656,0 174.0277851927789,-41.20551939003003,0 174.0279746243469,-41.20554403319128,0 174.0279988484886,-41.20555987500475,0 174.0280312022699,-41.20557571719818,0 174.0280786438289,-41.20560480204615,0 174.0280991795052,-41.20561687190694,0 174.0281161107606,-41.20562139845053,0 174.0282192915587,-41.20565593066849,0 174.0282640505799,-41.20567982031756,0 174.0283446850682,-41.20577093127903,0 174.0283755311118,-41.20579741774892,0 174.0284143389746,-41.20581325984502,0 174.0284777059376,-41.20581711489164,0 174.0285309304128,-41.2058213064055,0 174.0286297537429,-41.20585349283015,0 174.0287302535251,-41.20582616818798,0 174.0288648656662,-41.20581569118348,0 174.0290091193026,-41.20582977208497,0 174.0290741620935,-41.20580211182845,0 174.0290879916885,-41.20580948806305,0 174.0291461624991,-41.20583773525004,0 174.0293027372004,-41.20580965582555,0 174.029425448364,-41.20579356193264,0 174.0295240194412,-41.20578216328267,0 174.0297233406434,-41.2057149399709,0 174.0298659173379,-41.20560656221466,0 174.0298981872916,-41.20560212014214,0 174.0299587880132,-41.20558367888584,0 174.0300712731932,-41.2055855227711,0 174.0301874466327,-41.20559742580068,0 174.030435801576,-41.20561167519193,0 174.0304653074477,-41.20561016628632,0 174.0307761077216,-41.20562684578406,0 174.0310408925528,-41.20561905082953,0 174.0310546385894,-41.20561569848258,0 174.0310809583598,-41.20560991496089,0 174.0312511100974,-41.20557563290939,0 174.0313242003354,-41.20555291841161,0 174.031459316825,-41.20550338088235,0 174.0314699617519,-41.2054984348753,0 174.0315552055398,-41.20547722915452,0 174.0316892315464,-41.20543171586719,0 174.0317556164541,-41.20541981278834,0 174.0318038132996,-41.20535217072857,0 174.0317155506345,-41.20535619533156,0 174.0316296371361,-41.20535183604821,0 174.0315823633825,-41.20534605233694,0 174.0315463212617,-41.20534253161581,0 174.0313283912618,-41.20529601309931,0 174.0312546305154,-41.20528436193992,0 174.0311558914165,-41.20524647512559,0 174.0313309054474,-41.20522309019121,0 174.0314946040154,-41.20518838906523,0 174.0316241891403,-41.20518092911716,0 174.0317429594252,-41.20513206194363,0 174.0318849497481,-41.20505285304218,0 174.0319552744937,-41.20502854604292,0 174.0322071497633,-41.20493366305463,0 174.0322692598131,-41.2049300589845,0 174.0323217310707,-41.20493978173802,0 174.032465815543,-41.20508286120749,0 174.0325216390721,-41.20516257263492,0 174.032685841389,-41.20529559266647,0 174.0326957312417,-41.20530104192043,0 174.0327511835483,-41.20531258972773,0 174.0329958114922,-41.20535032312948,0 - - -
- - Queen Charlotte Hebberds Block To Te Mahia - - - - - - - - - - - - - - -
Queen Charlotte Hebberds Block To Te Mahia
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)4.674
NAMEQueen Charlotte Hebberds Block To Te Mahia
ISLANDSouth
LEGALSTATDOC
TA_NAMEQueen Charlotte Walkway
Fromkm1754.673
Tokm1759.347
categoryWalking Track
CycleCycleway
walkidQueen Charlotte Track
GuidebookNelson Marlborough
colourred
mapNamemap077
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.9638653863416,-41.24182275412803,0 173.9636426793561,-41.24162980269998,0 173.9635964109475,-41.24160683570197,0 173.9634271797752,-41.24153869092414,0 173.9633073189522,-41.24146199709345,0 173.9631891335181,-41.24133626836307,0 173.9630432885747,-41.24124046292043,0 173.9628774106682,-41.24125513121434,0 173.9628212524839,-41.24123576952162,0 173.9628080927695,-41.24122688448827,0 173.962650178413,-41.24106469549768,0 173.9625641795997,-41.24093754130607,0 173.9625350105777,-41.2409005770924,0 173.9624506051466,-41.24076193999417,0 173.9623993905919,-41.24072916664805,0 173.9623300724721,-41.24072070141877,0 173.9621281531072,-41.24071483418016,0 173.9619045234515,-41.24071885736008,0 173.9615843351643,-41.24074383498471,0 173.9614646415209,-41.24070712296537,0 173.9613813249603,-41.24061508899321,0 173.9613253339535,-41.24057644870369,0 173.961275462406,-41.24055457195313,0 173.9611141096826,-41.24041031863231,0 173.9610438697225,-41.24026346882,0 173.9610013734809,-41.24008820322625,0 173.9609974339589,-41.24003263071183,0 173.9609874605156,-41.24003413987331,0 173.9609782402989,-41.2400390854857,0 173.9609680141143,-41.24003254748395,0 173.9609280323359,-41.23986817818905,0 173.9609197335397,-41.23985895781913,0 173.9609211593849,-41.23980908562574,0 173.960765841421,-41.23968461366498,0 173.960505164484,-41.23961009890167,0 173.9604877309,-41.23950985177675,0 173.9605086858368,-41.23947389299554,0 173.9606807656804,-41.2393373517917,0 173.9607282908541,-41.23920340894942,0 173.9607162213291,-41.23911246618064,0 173.9606966080977,-41.23910492194943,0 173.9606643374465,-41.2390483436443,0 173.9606049094194,-41.23897542135342,0 173.9604749059658,-41.23883041550499,0 173.960398630657,-41.23870368024195,0 173.9603514407061,-41.23857401173106,0 173.9602656104054,-41.23837133832016,0 173.9601805336093,-41.23823739538445,0 173.9600665398016,-41.23812549574549,0 173.9598923637719,-41.23803488840709,0 173.959831679369,-41.23800337194647,0 173.9596549054546,-41.23799038001331,0 173.9595963991083,-41.23796825201363,0 173.9595064612032,-41.23792265424842,0 173.9594874340447,-41.23790806991104,0 173.9594026926304,-41.23780245820749,0 173.9593783015479,-41.23773230141733,0 173.9593507263448,-41.23753750640867,0 173.9593369785432,-41.23745804604992,0 173.9594652218625,-41.23735226564614,0 173.9594739402726,-41.23725109598553,0 173.9594721795509,-41.23721572481334,0 173.9594724305617,-41.23719837389234,0 173.9595193701638,-41.23698597661585,0 173.9596079658636,-41.23689486490886,0 173.9596075474211,-41.23688363399356,0 173.9596357100351,-41.23665941831734,0 173.9596289206992,-41.23658431645788,0 173.9596715004984,-41.23645481636694,0 173.9597972296481,-41.23634643799914,0 173.9598978954716,-41.23623428794635,0 173.959999485054,-41.23610830778478,0 173.9601494368904,-41.23594955416841,0 173.9602045056517,-41.23583581228519,0 173.9602151515767,-41.23582852004575,0 173.9603640982264,-41.23575182477574,0 173.9604091918229,-41.23567362210808,0 173.9604428037452,-41.23553054264777,0 173.9603622538405,-41.2353543546299,0 173.9600504472488,-41.23526408195907,0 173.9599662084475,-41.23523105769114,0 173.9599419011316,-41.23522695106825,0 173.9597331076427,-41.23521169501621,0 173.9595618665811,-41.23519987733467,0 173.9594957327967,-41.23515260297911,0 173.9594856745859,-41.23514296388787,0 173.9592482148655,-41.23510088669707,0 173.959065824523,-41.23509283990947,0 173.9589319664581,-41.23506509594986,0 173.9588089185161,-41.2349873122989,0 173.9586354977014,-41.23483752689783,0 173.9585617366381,-41.23471087747081,0 173.9585059968246,-41.23466536348703,0 173.9583756595708,-41.23454960862375,0 173.958275913675,-41.2345066100453,0 173.9582360999605,-41.234475512621,0 173.9581910062971,-41.23437995946015,0 173.9581007323689,-41.23425104569304,0 173.9580840519568,-41.23407192397843,0 173.9580454962761,-41.23391015385595,0 173.9580933563912,-41.23372181165866,0 173.9581194239807,-41.23355576740332,0 173.9581179990498,-41.23354545732929,0 173.9580444064847,-41.23344210816939,0 173.958002580507,-41.23340765762013,0 173.9579633531901,-41.2333298736803,0 173.9579484334137,-41.23330808116211,0 173.9578573221243,-41.23315796189744,0 173.9578131484383,-41.23309132465329,0 173.9578474310294,-41.23298554571236,0 173.9577995713412,-41.23290164343045,0 173.9577510391568,-41.23287834065654,0 173.9577037652223,-41.23279024667955,0 173.9577042680247,-41.23271187725331,0 173.9578247165567,-41.23250341883908,0 173.9579304965205,-41.23238473063663,0 173.9578925261498,-41.2322174284165,0 173.9578482684472,-41.2321674723446,0 173.9578008277676,-41.23212866364894,0 173.9578307513408,-41.23200377327823,0 173.9578602557763,-41.23195406921062,0 173.9578570704287,-41.23184342791792,0 173.9578045160623,-41.23178525735708,0 173.95776788707,-41.23174904750754,0 173.9577000774252,-41.23169993043426,0 173.9576359558934,-41.23166698931057,0 173.9574699942313,-41.2315964970131,0 173.9574484526834,-41.23158124233292,0 173.9574141707162,-41.23153405227499,0 173.9574126623237,-41.23152348976559,0 173.9575039414632,-41.23139398985916,0 173.9575629500996,-41.2312841869814,0 173.9577329347245,-41.23121595850544,0 173.9578299127811,-41.23119567444178,0 173.9580514464382,-41.23115024393626,0 173.9582192526355,-41.23106575503572,0 173.9582963665244,-41.23100473368557,0 173.9583353415465,-41.23095452730573,0 173.9583274634026,-41.23082326588341,0 173.9583506807259,-41.23069787269002,0 173.9583552067113,-41.2305077714489,0 173.9583642588412,-41.2303414741355,0 173.9583431370845,-41.23027978408884,0 173.9582373575906,-41.23019051620137,0 173.9582370224272,-41.23018431448126,0 173.9582305680936,-41.23018314044419,0 173.9582117924534,-41.23017718947052,0 173.958118586254,-41.23015447389177,0 173.9580475069742,-41.23004492266328,0 173.9579967129337,-41.22991533790168,0 173.9580181712082,-41.22973563028629,0 173.9582790993168,-41.22966388071429,0 173.9585283771474,-41.22955776673587,0 173.9585667665978,-41.22947897737152,0 173.9584621598223,-41.22934788432011,0 173.9582795180641,-41.22926775322165,0 173.9581855567428,-41.22917353986073,0 173.9581032468005,-41.22907580743993,0 173.9580311628383,-41.22890372669215,0 173.9582112896779,-41.22876349733458,0 173.9582904991561,-41.22865562202865,0 173.9583961944229,-41.22858479472394,0 173.9585390215628,-41.22844691286168,0 173.9587398524329,-41.2283144794389,0 173.958942107505,-41.22825588894228,0 173.9591035426141,-41.22815681516197,0 173.9591685029063,-41.22804022317537,0 173.9591869424253,-41.22789815034393,0 173.9591123437511,-41.22773109767825,0 173.9590771404325,-41.22757083561772,0 173.9591034591631,-41.22737143061547,0 173.9589488974362,-41.22730982430564,0 173.9588865360583,-41.22732172580307,0 173.958769189283,-41.22736497708902,0 173.9587522574091,-41.22735483486828,0 173.9587910654665,-41.22716498490922,0 173.9587903946743,-41.226963734726,0 173.9587551908729,-41.22679886330224,0 173.9587009609815,-41.22664438484456,0 173.9586655055694,-41.22645956428464,0 173.95864555554,-41.22641782198986,0 173.9584649261338,-41.22630198399781,0 173.9581905865778,-41.22624607745847,0 173.9581585674598,-41.226243562328,0 173.9580081958961,-41.22626099589903,0 173.9579775175419,-41.22626753402741,0 173.9578365344179,-41.22619871874804,0 173.9577906859874,-41.22610961928507,0 173.9578199385125,-41.22589068390221,0 173.9578242129316,-41.22586947841202,0 173.9578186808956,-41.225731175806,0 173.9578592501233,-41.22558969009799,0 173.9578185982531,-41.22543487573906,0 173.9576871690997,-41.22526623202398,0 173.9575707449764,-41.22513145129338,0 173.9574801363886,-41.22500429788719,0 173.9574704970996,-41.22499314992145,0 173.9575067906418,-41.22489541703845,0 173.9576856605803,-41.22479743247516,0 173.9578557295644,-41.22469534127221,0 173.9579354404185,-41.22466600387817,0 173.9579781894388,-41.22464915598798,0 173.9581243685833,-41.22470430911016,0 173.9583257027302,-41.22482098512647,0 173.958405078954,-41.22485828478898,0 173.9585774114531,-41.22495895182582,0 173.9586964334192,-41.22504235150805,0 173.9587121079179,-41.22505131969461,0 173.9588359931266,-41.22499432318427,0 173.958971108958,-41.22485912348163,0 173.959057274881,-41.22478142315615,0 173.9592467056978,-41.22470850046565,0 173.9594293479175,-41.22463046539556,0 173.9596637897027,-41.22457472480102,0 173.959802342951,-41.22460280450058,0 173.9598612673347,-41.22462610629656,0 173.9600791964701,-41.22461252711597,0 173.9601760916077,-41.22457187531952,0 173.9602791050296,-41.22455611748541,0 173.9604604899535,-41.22450666375234,0 173.9606062506264,-41.22446609579704,0 173.9606393589585,-41.22442292933291,0 173.9606396951092,-41.22439845435804,0 173.960581943037,-41.22432360281934,0 173.9604485872062,-41.22422109316182,0 173.9603361858349,-41.22411615124963,0 173.960195705314,-41.22395203297662,0 173.9601032532046,-41.2239207688487,0 173.9600368683972,-41.22377098443207,0 173.9600171715266,-41.22367207815849,0 173.9599938690099,-41.22364550690094,0 173.9599552278833,-41.22363544946283,0 173.9597923685618,-41.22360560886224,0 173.9596370504823,-41.22352573035299,0 173.9596043617984,-41.22337393445505,0 173.9595073830045,-41.22321509699693,0 173.9593851754302,-41.22309087735462,0 173.9591964149123,-41.22296531588374,0 173.9590484735084,-41.22291133626469,0 173.9589572794022,-41.22285073519577,0 173.9589193927311,-41.22280530500566,0 173.9588201513375,-41.22267002116945,0 173.9586910700544,-41.2223998734661,0 173.9586240981655,-41.22225612283881,0 173.958599287433,-41.222226031924,0 173.9585150503086,-41.22208521645337,0 173.9585059139766,-41.22200734778436,0 173.9586176435908,-41.22198178334015,0 173.9586282063291,-41.22198731531942,0 173.9586902318391,-41.22199360245052,0 173.9587103480303,-41.22194054432084,0 173.9587765654671,-41.22187239901831,0 173.9588650778194,-41.221778187032,0 173.9589300377039,-41.2216406404054,0 173.9589678403873,-41.22145171196358,0 173.9589711091955,-41.22142614694663,0 173.9590861930524,-41.22124744533192,0 173.9591300297113,-41.22106899389993,0 173.9592251650713,-41.22097738013571,0 173.9590789015755,-41.22085600967473,0 173.9588988572694,-41.22069901735885,0 173.9588790764005,-41.22058200510148,0 173.9590187180293,-41.22056147013969,0 173.9591388315166,-41.220535233646,0 173.9591404238389,-41.22053431240337,0 173.9591906312029,-41.22049617523246,0 173.9592360608142,-41.22048393721271,0 173.9594352145392,-41.2203406909534,0 173.9595525624854,-41.2202440474738,0 173.9595830720508,-41.22011035639349,0 173.9596860865568,-41.22003483463301,0 173.9598403130274,-41.21992100931583,0 173.960027983487,-41.21982319182871,0 173.9601861495053,-41.21977047043441,0 173.9602950307856,-41.21962479207868,0 173.9603982962546,-41.21962638542869,0 173.9605723874663,-41.21964742285249,0 173.96076391512,-41.2196882432139,0 173.960875477917,-41.21965153000888,0 173.9610546831495,-41.21955983197892,0 173.9610927374129,-41.21953166877677,0 173.9612769713977,-41.2195149889022,0 173.9613444444637,-41.21952152728591,0 173.9614304432345,-41.21952194603782,0 173.9615928007834,-41.21956419129027,0 173.9616493794706,-41.21957617737091,0 173.961902931248,-41.21952982531445,0 173.9620931165924,-41.21960576498715,0 173.9622523733283,-41.21962630138304,0 173.9623437362792,-41.2196136440464,0 173.9624071031195,-41.21971464590892,0 173.9625524447054,-41.21983668733039,0 173.9627650938424,-41.21986426299426,0 173.9629888069954,-41.21987826116573,0 173.9631948343705,-41.21987105223825,0 173.9633345599918,-41.21985546198556,0 173.9635093230409,-41.21986535309339,0 173.9635097414838,-41.21986200052071,0 173.9636863492495,-41.21990994526069,0 173.9639093909654,-41.21991044738898,0 173.9640709113326,-41.2199556263641,0 173.9641654577835,-41.22005956122337,0 173.9642370399823,-41.22007313997064,0 173.9645589049629,-41.21999828964966,0 173.9648546190719,-41.21998806368568,0 173.9651009634887,-41.21991924837688,0 173.9653910599816,-41.21988513369659,0 173.9656522405623,-41.2198711363289,0 173.9658806473263,-41.219919416153,0 173.9660242288846,-41.21987574565196,0 173.9662480255923,-41.2197853057526,0 173.9665040091358,-41.21970358225946,0 173.9665699751195,-41.21969343982215,0 173.9668166103265,-41.21959969133155,0 173.9668405424279,-41.2195905943593,0 173.9670047434617,-41.21959025950059,0 173.9672099326103,-41.21955094780551,0 173.9673702794485,-41.21957047710603,0 173.9674506616843,-41.21960861515041,0 173.9676535043662,-41.21962873191039,0 173.9677856856411,-41.21959537247653,0 173.9679126714828,-41.21954600210342,0 173.9680832441746,-41.21950400907887,0 173.9682407395309,-41.21955740225686,0 173.9683003346258,-41.21957508681037,0 173.968427824021,-41.21965077575308,0 173.9685646174274,-41.2198401232008,0 173.9686059387291,-41.22000642027795,0 173.9686486032319,-41.22015612101517,0 173.968636785577,-41.22031160542624,0 173.9685915223251,-41.22040808145489,0 173.968604010638,-41.22049944441255,0 173.9686420646434,-41.22066305941581,0 173.9687605855926,-41.22064411533586,0 173.968926714874,-41.22060103248635,0 173.9690820305534,-41.22055568578617,0 173.9692408684738,-41.22050941836606,0 173.9694600547325,-41.22046658712326,0 173.9696442055201,-41.22042752748857,0 173.9696691842121,-41.22041805540027,0 173.9697727842732,-41.22038268424653,0 173.9699161155426,-41.22025879904862,0 173.9699337173904,-41.2202396886298,0 173.9699452844903,-41.22022393126939,0 173.9699770511924,-41.22018369731541,0 173.9700087352623,-41.2201033995087,0 173.9700160274293,-41.22009132898425,0 173.970130272512,-41.21993467073624,0 173.9701456109377,-41.21991304638346,0 173.9702860077825,-41.21983425648032,0 173.970480216618,-41.21987507589733,0 173.9705641203207,-41.2198353463566,0 173.9706963862589,-41.21972420209919,0 173.970748520911,-41.21960366983826,0 173.9708549721201,-41.21948573591275,0 173.9709667020518,-41.21944290520008,0 173.9710091155156,-41.21944181521705,0 173.9710886594067,-41.21945363361579,0 173.9711322452825,-41.21944776591068,0 173.9711402917792,-41.21946235090769,0 - - -
- - Queen Charlotte Bottle Bay To Hebberds Block - - - - - - - - - - - - - - -
Queen Charlotte Bottle Bay To Hebberds Block
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)4.022
NAMEQueen Charlotte Bottle Bay To Hebberds Block
ISLANDSouth
LEGALSTATDOC
TA_NAMEQueen Charlotte Walkway
Fromkm1759.347
Tokm1763.369
categoryWalking Track
CycleCycleway
walkidQueen Charlotte Track
GuidebookNelson Marlborough
colourred
mapNamemap077
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.946374617987,-41.25623929192954,0 173.9464634661078,-41.25603661848859,0 173.9464743618533,-41.25602505133577,0 173.9466400722705,-41.25588540848398,0 173.946757503512,-41.25576177542707,0 173.9467559097043,-41.25558097747018,0 173.9467630345095,-41.25556882427352,0 173.9469164239128,-41.25546597780834,0 173.9471121408204,-41.25535365995995,0 173.9471856500845,-41.25527445062793,0 173.9471999002168,-41.25522491367526,0 173.9473799433798,-41.2551745394986,0 173.9475106165896,-41.25509097093227,0 173.9475972861,-41.25504570924569,0 173.9476883969603,-41.25505065394709,0 173.9477836995871,-41.25502643144743,0 173.947817227264,-41.25500899580517,0 173.9479314724146,-41.25481889491149,0 173.9480636545332,-41.25459006901768,0 173.9481286985669,-41.25444372070911,0 173.9482782317287,-41.25442268217342,0 173.9484433546346,-41.25443869239609,0 173.9485166132868,-41.25440818247099,0 173.9485737772048,-41.25438337095533,0 173.9486586854705,-41.25433727085586,0 173.9487155146925,-41.25422227086293,0 173.9487868448577,-41.2540758388504,0 173.948921207435,-41.25403460047613,0 173.9490941264509,-41.2540060178636,0 173.9492322602251,-41.25387299674294,0 173.9493016622142,-41.25372078206124,0 173.9493216105794,-41.25351877804439,0 173.9495771753725,-41.25352439363244,0 173.949704411752,-41.25356647108313,0 173.9499679388169,-41.25361341040107,0 173.9501846114363,-41.25362782626979,0 173.9501961793308,-41.25362573109593,0 173.9502107633286,-41.25362313271481,0 173.9502963417895,-41.25358306732506,0 173.9504231611519,-41.25342456536652,0 173.950490382516,-41.25338785269833,0 173.950535227026,-41.25330788882298,0 173.9505745385609,-41.2531607868457,0 173.9505209766009,-41.25298644319003,0 173.9505454525902,-41.25289876844779,0 173.9506903755137,-41.25276759193584,0 173.9507012722823,-41.25276029941391,0 173.9507495523548,-41.25272584989804,0 173.950915345697,-41.252690897317,0 173.9511190265328,-41.25269056238099,0 173.9511316832885,-41.2526814258216,0 173.9512637824502,-41.25251672075304,0 173.9514450814182,-41.25235142970102,0 173.951555556488,-41.25220935733752,0 173.9516855592945,-41.25230314985203,0 173.9517979604486,-41.25246081436002,0 173.9518658543557,-41.25263524070827,0 173.9519869717253,-41.25271436707496,0 173.9520591394191,-41.25264110897265,0 173.9520629965426,-41.25260925835763,0 173.9522340704926,-41.25241789862589,0 173.9522534330436,-41.25240188946723,0 173.9522612284124,-41.2523937586172,0 173.9523092564851,-41.25235419597191,0 173.9523739648294,-41.25229376325319,0 173.9523490703801,-41.25205437573862,0 173.9523137829233,-41.25197231672989,0 173.9523321393209,-41.25192328291864,0 173.9523239248876,-41.25188028335212,0 173.9523159616556,-41.25169596472765,0 173.9523671753386,-41.25156152033672,0 173.9525568579778,-41.25138617045081,0 173.9526747070321,-41.2511841664481,0 173.9526636425086,-41.25112130242724,0 173.9526781437286,-41.2510327053955,0 173.9527892035563,-41.25100571631675,0 173.9529213871913,-41.25097998271878,0 173.9529395764074,-41.25096573424534,0 173.9531027707733,-41.25093966629,0 173.9532033536317,-41.25088987773614,0 173.9530981609888,-41.25080924441554,0 173.953032447449,-41.25071964133859,0 173.9529045385474,-41.25054940551517,0 173.9528279286663,-41.2504851986771,0 173.9528172839161,-41.25047866162066,0 173.9528164450295,-41.25036835599646,0 173.9528546664071,-41.25027984276441,0 173.9529445213895,-41.25021949343706,0 173.953022221142,-41.25013466809747,0 173.9531140867249,-41.25002520111979,0 173.9532197832887,-41.24992176819944,0 173.9533878396778,-41.24984741985195,0 173.9534503688869,-41.24970777838953,0 173.9535446653945,-41.2496135652601,0 173.9535657037271,-41.24958573742802,0 173.9536494391649,-41.24947056973699,0 173.9537900035432,-41.24943964125281,0 173.9539334179952,-41.24943226478534,0 173.9541156405182,-41.24940737087545,0 173.9542416203337,-41.24925247286862,0 173.954266011683,-41.24921961605519,0 173.9545224137873,-41.24906019212655,0 173.9545929896651,-41.24900562573789,0 173.9546237505849,-41.24904418298978,0 173.9547177122023,-41.24895600501633,0 173.954927511673,-41.24893463103734,0 173.9548587797876,-41.24880236479516,0 173.9548346394902,-41.2487495592929,0 173.9547686741928,-41.24863858222728,0 173.9547517426183,-41.2485962541152,0 173.954740260218,-41.248485361162,0 173.9546942433661,-41.24839592624014,0 173.954663230565,-41.2483825989119,0 173.9546040543389,-41.24836482920696,0 173.9544658362455,-41.24822761802329,0 173.9544385109223,-41.24813659040732,0 173.954366007708,-41.24803315718487,0 173.9543454721722,-41.24800222837997,0 173.9543529322196,-41.24790910545082,0 173.9542722978991,-41.24767114313679,0 173.9545091711621,-41.24770182071944,0 173.954648143067,-41.2475853124658,0 173.9546509085282,-41.24756695619636,0 173.9548996001384,-41.24748808170092,0 173.955041422457,-41.24743150448222,0 173.955160361221,-41.24742102730895,0 173.9552885198361,-41.24755689793101,0 173.9553228015378,-41.24755262307698,0 173.9554781192308,-41.24752739267825,0 173.955697222155,-41.24746369135107,0 173.9557979718504,-41.24737786028611,0 173.9558247944442,-41.24734969667076,0 173.9558978835125,-41.24720712064448,0 173.9558830481163,-41.24703219116977,0 173.9560129681076,-41.24689724202212,0 173.9562317361964,-41.24682884585074,0 173.9562861340956,-41.24678777387948,0 173.956390573192,-41.24672206003925,0 173.956480007892,-41.24653941948122,0 173.9564983645157,-41.24630397091182,0 173.9565831048566,-41.24612937619312,0 173.9566961775425,-41.24593751425483,0 173.9567147011284,-41.24587196812848,0 173.9568690960125,-41.24580784563815,0 173.9570161140981,-41.24574783230857,0 173.9571667374681,-41.24560089706803,0 173.9571580196359,-41.2455112944166,0 173.9572891965706,-41.24539595930833,0 173.9574089740829,-41.24541272289863,0 173.9576094688041,-41.2453048476401,0 173.9577080401837,-41.24533586091101,0 173.9577269004296,-41.24537550719201,0 173.957761935663,-41.24555940583333,0 173.9579028355967,-41.24564498576782,0 173.9581732355833,-41.24563643575899,0 173.9583664391621,-41.24572721232986,0 173.9584256988367,-41.24574204831731,0 173.9585271194107,-41.24594899690658,0 173.9584951844605,-41.24603725885699,0 173.9584694525802,-41.24611789279133,0 173.9585207504058,-41.24628653638508,0 173.9586786645099,-41.24641586905604,0 173.9587684344074,-41.24654889015538,0 173.9587641602242,-41.24671434918093,0 173.9586850354924,-41.24686363125558,0 173.9586593025157,-41.24695733988375,0 173.9587174734348,-41.24704685938468,0 173.9587223343918,-41.24706546661449,0 173.9587066598341,-41.24721818550634,0 173.9587229208041,-41.24733058579655,0 173.9586898132206,-41.24736470064924,0 173.9586703668997,-41.24740040779285,0 173.9586689414725,-41.24745606282585,0 173.9586944225337,-41.24762278014327,0 173.9587283690111,-41.24776074648963,0 173.9586722115778,-41.24784313988803,0 173.958628875867,-41.24795411597031,0 173.9586551954612,-41.24816961550722,0 173.9586830232483,-41.24822636008925,0 173.9588291196968,-41.24821227870649,0 173.9588584562136,-41.24824387924278,0 173.958896343131,-41.248300708436,0 173.9589861971735,-41.24844278134027,0 173.9590358178291,-41.24856188824535,0 173.9591267605786,-41.24868736521271,0 173.9591299454134,-41.24868258713165,0 173.9592472935791,-41.24862894336057,0 173.9592524905866,-41.24859323595033,0 173.9592765455709,-41.24857412569714,0 173.9593670695483,-41.24866817005804,0 173.9594083928211,-41.24869935079801,0 173.9596563305825,-41.2488493034602,0 173.9598086294162,-41.2488374850095,0 173.9599662932903,-41.24904451817157,0 173.9599855714469,-41.24910528718399,0 173.9598985670542,-41.24923956498432,0 173.9598636981933,-41.24939245120451,0 173.9599442481693,-41.2494523814946,0 173.9599878334186,-41.24945833246123,0 173.9600748383109,-41.2494887591261,0 173.9601170833505,-41.24950979737231,0 173.9602604971092,-41.24954944393137,0 173.9603403659534,-41.24962011947741,0 173.9603507812994,-41.24968438165961,0 173.9603329041454,-41.24975745875338,0 173.9603150897743,-41.24983482567976,0 173.9603161785768,-41.24990917588962,0 173.96034949437,-41.24998468590663,0 173.9604191835107,-41.25008563283394,0 173.9604801548001,-41.2502381313314,0 173.9604916684903,-41.25024804461324,0 173.9605832127135,-41.25028875040775,0 173.9607137674922,-41.25027622130953,0 173.9608135897613,-41.25023534916176,0 173.9608848911997,-41.25018756467249,0 173.9609620209595,-41.25014974172512,0 173.961046646062,-41.25010613628567,0 173.9611785494125,-41.25005641620948,0 173.9612349865323,-41.25002877516703,0 173.9613215471221,-41.24998801330067,0 173.9614201910754,-41.24992250996139,0 173.9614790099955,-41.24987230088293,0 173.961544101131,-41.24978881907275,0 173.9615926034422,-41.24973693510082,0 173.9617077170643,-41.24966025324404,0 173.961771334918,-41.24964960799105,0 173.9620074534667,-41.24957157174032,0 173.962041065373,-41.24957919962277,0 173.9621596693477,-41.24966301940248,0 173.9622059375165,-41.24968992419132,0 173.9623601634237,-41.24979134520586,0 173.9624172447643,-41.24976259565701,0 173.9624685425734,-41.2496965458917,0 173.9626452329529,-41.24954164897533,0 173.962813959682,-41.24942807445609,0 173.962932144713,-41.24940292834741,0 173.9630018825774,-41.24936294636643,0 173.9632029653697,-41.24931743289167,0 173.9633368245533,-41.24928683890294,0 173.96355676474,-41.24923646411043,0 173.9637136740791,-41.24916136168944,0 173.9637624568856,-41.24912992999214,0 173.9637700844406,-41.24912154845134,0 173.9637895302233,-41.24893840276535,0 173.9637794716893,-41.24891065864347,0 173.9637244034679,-41.24877361468219,0 173.9637142607968,-41.24875752178944,0 173.9635210580719,-41.24864419814123,0 173.9633581967175,-41.24852919887933,0 173.9631936604375,-41.2484412724655,0 173.9630217613124,-41.24839833591172,0 173.9629134541869,-41.248371282859,0 173.9628053265332,-41.24824312418929,0 173.9627647594757,-41.24818411632334,0 173.9627394444077,-41.24813088994532,0 173.9627386915218,-41.24810700246765,0 173.9627557899955,-41.24798613494036,0 173.9628028119368,-41.24791949923399,0 173.9628469011126,-41.24787121866944,0 173.9629244345194,-41.2477881544467,0 173.9630458874634,-41.24757181806736,0 173.962992495114,-41.24752035339511,0 173.9629407794276,-41.24747634834797,0 173.9627309801931,-41.24732463538978,0 173.9626939321963,-41.2472141623903,0 173.9627036554797,-41.24704602115151,0 173.9627566280417,-41.2468804781774,0 173.9628265334483,-41.24664754491226,0 173.9628141281627,-41.24651184251058,0 173.96277314132,-41.24630774327117,0 173.9628822730372,-41.24617203964331,0 173.9628992874757,-41.24614320607331,0 173.9629038984024,-41.24601789674333,0 173.9628033151673,-41.24584682175875,0 173.9627760736334,-41.24578286800655,0 173.9627868873476,-41.24565521164669,0 173.962773559838,-41.24552495667408,0 173.9627887314404,-41.24528506684057,0 173.9627683517214,-41.24519764472387,0 173.9627975316654,-41.24517350422457,0 173.96295871628,-41.24511893700144,0 173.9630981069518,-41.24506135413832,0 173.9631681795938,-41.2449958072279,0 173.9631634858079,-41.2449344519077,0 173.963271527399,-41.2448256548597,0 173.9634339697477,-41.24467553462878,0 173.9635718514835,-41.24451988272178,0 173.963509071834,-41.24434813791275,0 173.9635224834619,-41.24416817820465,0 173.9635498079164,-41.24409089687531,0 173.9635588594683,-41.24402887075461,0 173.9635313664994,-41.24395242830874,0 173.9636383209147,-41.24385645523856,0 173.9636965749446,-41.24382871129414,0 173.9637809804269,-41.24382451969278,0 173.9638268304145,-41.2438240169759,0 173.9640323542964,-41.24374723882365,0 173.9641650389427,-41.24369761776312,0 173.9642381304152,-41.24366207924477,0 173.9642869114304,-41.24364380574912,0 173.9645047582587,-41.243522687695,0 173.9644587413953,-41.24328497746974,0 173.9643436577703,-41.2431432389506,0 173.9643765995969,-41.24301491243997,0 173.9644296558286,-41.2428473582842,0 173.964436529553,-41.24274928984892,0 173.9643687204866,-41.24251602093472,0 173.9642669633055,-41.24236774551076,0 173.9641528018395,-41.24221301536608,0 173.9640818073787,-41.24204839531489,0 173.9639282509116,-41.24192543164467,0 173.9638653863416,-41.24182275412803,0 - - -
- - Queen Charlotte Anakiwa Rd End To Bottle Bay - - - - - - - - - - - - - - -
Queen Charlotte Anakiwa Rd End To Bottle Bay
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)2.903
NAMEQueen Charlotte Anakiwa Rd End To Bottle Bay
ISLANDSouth
LEGALSTATDOC
TA_NAMEQueen Charlotte Walkway
Fromkm1763.369
Tokm1766.271
categoryWalking Track
CycleCycleway
walkidQueen Charlotte Track
GuidebookNelson Marlborough
colourred
mapNamemap078
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.922737063779,-41.26427862812061,0 173.9228628762533,-41.26428399167254,0 173.9230967314931,-41.2642877637085,0 173.9232157534647,-41.26434023468836,0 173.9234947882827,-41.26449278628398,0 173.9235177534953,-41.26450049728466,0 173.9237890767956,-41.26448197331335,0 173.924101973345,-41.26440226098617,0 173.924285284432,-41.26428902133707,0 173.9244814224131,-41.26421785860893,0 173.9246938191503,-41.26412272525448,0 173.9247490557265,-41.26407209804508,0 173.924849387371,-41.26401577060364,0 173.9250022731235,-41.26396967058947,0 173.9250630420288,-41.26395106338038,0 173.9250967372042,-41.26394838126863,0 173.9253025968168,-41.26387637967501,0 173.9253448425573,-41.26390663917412,0 173.9254789525211,-41.26394167470081,0 173.925632257011,-41.26391258958017,0 173.9257228645866,-41.26391359590999,0 173.9259326636344,-41.26388702502622,0 173.926108348618,-41.26373464242928,0 173.9262448895177,-41.26357312276451,0 173.926362068989,-41.26346608578609,0 173.9264049852359,-41.26338109356844,0 173.9264087567669,-41.26337774118868,0 173.9265575344397,-41.26332099538141,0 173.9268320427198,-41.26330473466426,0 173.9269235734261,-41.26325855044293,0 173.9270800634103,-41.26314095179858,0 173.9273466911858,-41.26305595993609,0 173.9273671434682,-41.263038022152,0 173.9274023471558,-41.26294439658604,0 173.9274419941513,-41.26288740003396,0 173.9275358713429,-41.26291363521018,0 173.9276142418715,-41.26293534369074,0 173.9276748427751,-41.26294766609652,0 173.9278801995493,-41.26296183132315,0 173.9279712267949,-41.26296794976557,0 173.9281792665001,-41.26293333160996,0 173.9283137954641,-41.26288756706013,0 173.9283735585194,-41.26285294967632,0 173.9285374255838,-41.26270995458624,0 173.9287436193074,-41.26260048664873,0 173.9287778179335,-41.2625411429546,0 173.9288497335489,-41.26243209507564,0 173.9288497341788,-41.26228968559565,0 173.9289068989851,-41.26223545487217,0 173.928983677042,-41.26221768564813,0 173.9290927260485,-41.26221693084906,0 173.9291727732476,-41.262188768184,0 173.9292098208693,-41.26216412503553,0 173.9293410823567,-41.26197318470185,0 173.9294367188349,-41.26188148740476,0 173.9295179403476,-41.26183044183862,0 173.9295874259202,-41.26172038713941,0 173.9297159204878,-41.2616354791001,0 173.9297805453959,-41.26159398759616,0 173.9298554790568,-41.26155979007928,0 173.9298973877456,-41.26154344494768,0 173.9298865762912,-41.2613673422083,0 173.92989713647,-41.26134043566599,0 173.929955978472,-41.26123406888016,0 173.9300083655446,-41.26119735738802,0 173.930033342829,-41.26118612481975,0 173.9300561420846,-41.2611644987706,0 173.9300716475397,-41.26107632170742,0 173.9300304926996,-41.2609551199564,0 173.9300424792754,-41.26088395708742,0 173.9300873215488,-41.260870546308,0 173.9301650233688,-41.26091128177291,0 173.9302978759294,-41.26095402973623,0 173.9304062544845,-41.26094992285591,0 173.9306089279979,-41.26093785295594,0 173.9308221643927,-41.26087892766101,0 173.9308943318091,-41.26082008702598,0 173.9310106734699,-41.26084766363145,0 173.9311590330555,-41.26079418684095,0 173.9312898745241,-41.26076979592255,0 173.9315759474241,-41.2606859773075,0 173.9316454341591,-41.26058162230483,0 173.9317558238024,-41.26043552524918,0 173.9318091324038,-41.2603386306198,0 173.9318090494308,-41.26031708944104,0 173.9317917818591,-41.26028414762133,0 173.9317880935619,-41.26027258099234,0 173.932003657465,-41.26004577397425,0 173.9322040878532,-41.25994350667899,0 173.9325148051826,-41.25978005921716,0 173.9326817729738,-41.25968324874683,0 173.9328572064312,-41.25966153938092,0 173.9329293741118,-41.25961929499784,0 173.932996849113,-41.25958727628335,0 173.933056527695,-41.25957906134266,0 173.933218969596,-41.25955274209755,0 173.9334948165214,-41.25948761506452,0 173.9335372303743,-41.25941310015869,0 173.9335353861201,-41.25938351229491,0 173.9335331229225,-41.2593037163477,0 173.9335348824679,-41.25928234218453,0 173.9335342963892,-41.25924822766574,0 173.9335340445339,-41.25923842125069,0 173.933534631839,-41.25922936828037,0 173.933784327444,-41.25904547023834,0 173.9341976397606,-41.25872687286274,0 173.9344635985916,-41.25876543002409,0 173.9348282479943,-41.25860006758542,0 173.9350872954429,-41.25849997474764,0 173.9355653989388,-41.25851405720345,0 173.9358528981097,-41.25850580157378,0 173.9362951269921,-41.25828414091101,0 173.9364945325556,-41.25833082808771,0 173.9368595647229,-41.25828933776089,0 173.937100377264,-41.25813033266368,0 173.9373735424366,-41.25822437838012,0 173.9375279380011,-41.25818909018369,0 173.9377087344281,-41.2580041863602,0 173.9376229885835,-41.25771257936552,0 173.9378051264098,-41.257341345188,0 173.9378569279222,-41.25705845600756,0 173.937991373211,-41.25668252697327,0 173.9379966544341,-41.25631137666461,0 173.938203435226,-41.25602647595861,0 173.9383382160231,-41.25569103234363,0 173.9387964552159,-41.25547477936698,0 173.9389817792815,-41.25507345321054,0 173.9391817708648,-41.25484412401033,0 173.9393492414194,-41.25441446779355,0 173.939502966473,-41.25422604285352,0 173.939849138106,-41.25415345564756,0 173.9399636348807,-41.25388397674136,0 173.9401526464114,-41.25379756035323,0 173.9406947880417,-41.25369773067477,0 173.9406971345299,-41.2536626950444,0 173.9408235346282,-41.25364852989011,0 173.9409332536826,-41.25362036608167,0 173.9411619119899,-41.25357334426962,0 173.9413619878791,-41.25358717379757,0 173.941459805568,-41.25356219642873,0 173.9415301291058,-41.25353210497978,0 173.9417580335575,-41.25352439406102,0 173.9419928943825,-41.25353646429489,0 173.9420767966417,-41.25354828223303,0 173.942238735117,-41.25367602175487,0 173.9423962304963,-41.25387618222635,0 173.9425222112764,-41.25411623966845,0 173.9427512048881,-41.25431497476311,0 173.9429092871347,-41.25450708763936,0 173.943111625851,-41.25465435784734,0 173.9432163994146,-41.25473415426425,0 173.9432554599011,-41.25487522145848,0 173.9433096905227,-41.25505769513684,0 173.9433775003803,-41.25520077413207,0 173.9435069165341,-41.25545558387704,0 173.9436021355424,-41.25563747106471,0 173.9436585455037,-41.25579186597626,0 173.9438181369345,-41.25595363722736,0 173.9440480531819,-41.255973166997,0 173.9442068903667,-41.25588976667217,0 173.9442446081881,-41.25588105046492,0 173.944386765192,-41.25589420935403,0 173.9445756933398,-41.25594584165844,0 173.9447120665688,-41.25596151570287,0 173.9449206092715,-41.25598582293821,0 173.945029154409,-41.25600409582211,0 173.9450976346238,-41.25604868826013,0 173.9451294861379,-41.25608389180277,0 173.9451827954585,-41.25611641323659,0 173.9454725570203,-41.25613309331595,0 173.9457846151098,-41.25613787141614,0 173.9457968525991,-41.25613887702499,0 173.9459540968395,-41.25622738984373,0 173.9461540054862,-41.25632436763736,0 173.9461956642411,-41.25632554215702,0 173.946374617987,-41.25623929192954,0 - - -
- - Anakiwa Road and foreshore - - - - - - - - - - - - - - -
Anakiwa Road and foreshore
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)4.109
NAMEAnakiwa Road and foreshore
ISLANDSouth
LEGALSTATDOC
TA_NAMEMarlborough District
Fromkm1766.271
Tokm1770.38
categoryWalking Track
CycleUpgradeable
walkidQueen Charlotte Track
GuidebookNelson Marlborough
colourred
mapNamemap078
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.8953221578334,-41.29003106812503,0 173.901904513039,-41.2821443525318,0 173.9028814672824,-41.28147097209815,0 173.9039626067892,-41.28000212967572,0 173.9053896080947,-41.27894223942162,0 173.9062325874707,-41.27690238582614,0 173.9069837736292,-41.27508454448729,0 173.9070673742881,-41.27368565031095,0 173.9071590368368,-41.27286929051771,0 173.907961669801,-41.2713482072468,0 173.9099910099012,-41.26919598954673,0 173.9103876904756,-41.26810533585611,0 173.9107377436523,-41.2673646087578,0 173.9107778817441,-41.26654865293302,0 173.9112834144712,-41.26588437371109,0 173.9116383076788,-41.26549316468651,0 173.9125116825632,-41.26536972555511,0 173.9128134730309,-41.26486241400777,0 173.9134240758952,-41.26435265186315,0 173.9142968902755,-41.2641903637222,0 173.9163562067336,-41.26421283054197,0 173.9178520803974,-41.26443395367691,0 173.9204250086418,-41.26437457181661,0 173.9213505388098,-41.26429396025159,0 173.922737063779,-41.26427862812061,0 - - -
- - Queen Charlotte Drive footpath - - - - - - - - - - - - - - -
Queen Charlotte Drive footpath
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)2.293
NAMEQueen Charlotte Drive footpath
ISLANDSouth
LEGALSTATReserve
TA_NAMEMarlborough District
Fromkm1770.38
Tokm1772.673
categoryPath
CycleUpgradeable
walkidQueen Charlotte Track
GuidebookNelson Marlborough
colourred
mapNamemap078
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/queen-charlotte-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.867946947637,-41.28951052794974,0 173.8953221578334,-41.29003106812503,0 - - -
- - State Highway 6 Linkwater - - - - - - - - - - - - - - -
State Highway 6 Linkwater
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSroad
LENGTH (KM)4.031
NAMEState Highway 6 Linkwater
ISLANDSouth
LEGALSTATDOC
TA_NAMEMarlborough District
Fromkm1772.673
Tokm1776.704
categoryRoad Shoulder
CycleUpgradeable
walkidAnakiwa to Pelorus Bridge
GuidebookNelson Marlborough
colourred
mapNamemap078
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/anakiwa-pelorus-bridge
-
- - -]]>
- #LineStyle1810 - - - 0clampToGround - 173.8223896111255,-41.29270098983097,0 173.822584394395,-41.29269949635642,0 173.824614790863,-41.29212972917783,0 173.8264963898504,-41.29233907615978,0 173.8290828219911,-41.29239692286905,0 173.8304909372021,-41.29198708740019,0 173.8321355869134,-41.29280841917296,0 173.8327446067409,-41.29289318537002,0 173.8331935812108,-41.29291835295408,0 173.8344786526493,-41.29298075058491,0 173.8350481364365,-41.29278775012215,0 173.8359235354511,-41.29221648318143,0 173.8366806521983,-41.29198814946541,0 173.8368207350913,-41.29196086577932,0 173.8373708513436,-41.29187803303266,0 173.8377394683751,-41.29188823282157,0 173.8395272839042,-41.29194361565294,0 173.8404397677362,-41.29165818197709,0 173.8418819842325,-41.29181143210761,0 173.8427197505395,-41.29140558193461,0 173.8434532169903,-41.29067823207694,0 173.8447461161922,-41.29056911600342,0 173.8455164820656,-41.29028386614233,0 173.8463466656365,-41.29017943328499,0 173.8465493820288,-41.29010599942955,0 173.8468616818494,-41.28992616684969,0 173.847127481982,-41.28966441681627,0 173.8473629327549,-41.28930714990023,0 173.8475627984757,-41.28910778298834,0 173.8477298325492,-41.28903523309891,0 173.8479028494186,-41.28902521688837,0 173.8588327977563,-41.28929169438582,0 173.867946947637,-41.28951052794974,0 - - -
- - Mahakipawa Arm Track - - - - - - - - - - - - - - -
Mahakipawa Arm Track
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)1.965
NAMEMahakipawa Arm Track
ISLANDSouth
LEGALSTATDOC
TA_NAMEMarlborough District
Fromkm1776.704
Tokm1778.669
categoryRoad Shoulder
CycleUpgradeable
walkidPelorus River Track
GuidebookNelson Marlborough
colourred
mapNamemap079
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/pelorus-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.8028137695407,-41.28730131479875,0 173.8036739510329,-41.28720581314603,0 173.8040013632122,-41.28778076253019,0 173.8042335362413,-41.28784626114175,0 173.8051861080031,-41.28715497385414,0 173.805488638131,-41.28715285737274,0 173.8057392668345,-41.28727192015597,0 173.8061029504196,-41.28790030596539,0 173.8065839407459,-41.28793720902248,0 173.8070098477464,-41.28778944966457,0 173.807292309819,-41.28765033769936,0 173.8081999064994,-41.28764396920357,0 173.8088784758399,-41.28782714024798,0 173.809642544587,-41.28772780023662,0 173.8103192917776,-41.2877633106884,0 173.8110883446647,-41.28806664844441,0 173.8119606868908,-41.28808734683806,0 173.8128529915382,-41.28828241070021,0 173.8135279117207,-41.28817025029235,0 173.8143795017824,-41.28871059264861,0 173.8153660314441,-41.28936388748217,0 173.8162952804779,-41.28955150121684,0 173.8178482440444,-41.29020075650264,0 173.8188333736338,-41.29073751162169,0 173.8193060295771,-41.2914721062598,0 173.8202387247461,-41.29193154260457,0 173.8216353553054,-41.29242650070003,0 173.8223596698035,-41.2927012193728,0 173.8223896111255,-41.29270098983097,0 - - -
- - Moenui Ridge Track - - - - - - - - - - - - - - -
Moenui Ridge Track
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)2.734
NAMEMoenui Ridge Track
ISLANDSouth
LEGALSTATDOC
TA_NAMEMarlborough District
Fromkm1778.669
Tokm1781.403
categoryTramping Track
CycleUpgradeable
walkidPelorus River Track
GuidebookNelson Marlborough
colourred
mapNamemap079
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/pelorus-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.7774142956699,-41.2851148245265,0 173.7775380005617,-41.28519399877419,0 173.7776429998476,-41.2853789991126,0 173.7777650005521,-41.28554199941778,0 173.7780119999572,-41.28566099905001,0 173.7781279996739,-41.28581099909646,0 173.7781410001995,-41.28597899905803,0 173.778218000352,-41.28615099905466,0 173.7784589998785,-41.28630799933863,0 173.7787620001883,-41.28642199948502,0 173.7789090001058,-41.28656899931857,0 173.7789710000956,-41.28678999937426,0 173.7789689996227,-41.28694199949075,0 173.7788519998844,-41.28712799894819,0 173.7789570004356,-41.28720699923969,0 173.7791539996736,-41.28712499865765,0 173.7794280003719,-41.28707699923173,0 173.7797620003036,-41.28700599878911,0 173.7801579996063,-41.28697999933753,0 173.7808569995245,-41.28688399867277,0 173.7814339997717,-41.28679899887044,0 173.7820580004166,-41.28670299917899,0 173.7826649994128,-41.28658399889743,0 173.7835469997566,-41.28645199943785,0 173.7838959998707,-41.2863459990655,0 173.7841699999973,-41.28634399868617,0 173.7844290000949,-41.28638799939842,0 173.7847330002089,-41.28632899893098,0 173.7849600004324,-41.28625799936295,0 173.78521800011,-41.28615299919626,0 173.7855220001763,-41.28612799883327,0 173.7859020001712,-41.28607999927407,0 173.7863890004311,-41.28601899910366,0 173.7868600002803,-41.28594699887488,0 173.7872100005293,-41.28592199939123,0 173.7874839996546,-41.28593099941745,0 173.7879860004311,-41.28592799931307,0 173.7885039999028,-41.28590099907166,0 173.7890209994488,-41.28582899919045,0 173.7895380002827,-41.28576799895802,0 173.7899779994749,-41.28569599862492,0 173.7906629995391,-41.28566799925111,0 173.790967000206,-41.28560899944034,0 173.7911180004447,-41.28551599882236,0 173.7915000004323,-41.2854029991672,0 173.7918799998244,-41.28558599890943,0 173.7921779994881,-41.2857069988771,0 173.7926799999248,-41.28574399941759,0 173.7929670005547,-41.28575499925525,0 173.793297000227,-41.28567899866753,0 173.7934689994107,-41.28579899893171,0 173.7937930004453,-41.28593199926449,0 173.7939200003355,-41.28605999898837,0 173.7941450000097,-41.28613199919471,0 173.7943230001311,-41.28612199941865,0 173.7946439996894,-41.28610399895437,0 173.7949140005157,-41.28607299949307,0 173.795102999726,-41.2860849994721,0 173.7952380000117,-41.28616499911722,0 173.7953990002164,-41.28617099925032,0 173.7954960001151,-41.28602799869127,0 173.7956999999477,-41.28585099945224,0 173.7958779997861,-41.28574199930645,0 173.7960550000483,-41.28558499938342,0 173.7962409998132,-41.28544899868827,0 173.7962659999144,-41.28528699924134,0 173.7963279999346,-41.2851829991922,0 173.7964510005663,-41.28502199895812,0 173.796637999851,-41.28493999893197,0 173.7968180005429,-41.28503299866323,0 173.7968920000437,-41.2852219989482,0 173.7971269998223,-41.28540199911658,0 173.7972819994664,-41.28561799900528,0 173.7975359994112,-41.28582499874721,0 173.7977250002421,-41.28588499901785,0 173.7980240005389,-41.28618699873339,0 173.7982589996266,-41.28638099898257,0 173.798441000367,-41.28658199870225,0 173.7985850005654,-41.2866619986372,0 173.798935000495,-41.28670399861811,0 173.799209999975,-41.28671599936181,0 173.7996060001442,-41.28667599903987,0 173.799901999744,-41.28671399883417,0 173.8001879994404,-41.28679999901176,0 173.8004140004329,-41.28681899863919,0 173.8006080000708,-41.28653299896675,0 173.8008370002119,-41.2862679991698,0 173.801014000003,-41.28609199897812,0 173.8012100000144,-41.28596199907671,0 173.8014689999711,-41.285939999127,0 173.80168499962,-41.28597199911802,0 173.8017039999705,-41.28611399889066,0 173.8015619997702,-41.28624299940327,0 173.8015190003077,-41.28636499878814,0 173.8016599996953,-41.28658299891588,0 173.802076999801,-41.28698099869816,0 173.8022770005036,-41.28719099886371,0 173.8022369997876,-41.28740399922423,0 173.8023019998687,-41.28754199864416,0 173.8024189277489,-41.28754696260312,0 173.8027260806194,-41.28743304807808,0 173.8028137695407,-41.28730131479875,0 - - -
- - Havelock footpaths - - - - - - - - - - - - - - -
Havelock footpaths
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)2.685
NAMEHavelock footpaths
ISLANDSouth
LEGALSTATRoad
TA_NAMEMarlborough District
Fromkm1781.403
Tokm1784.089
categoryRoad Shoulder
CycleUpgradeable
walkidPelorus River Track
GuidebookNelson Marlborough
colourred
mapNamemap079
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/pelorus-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.7591877047847,-41.27430374756574,0 173.7616719210644,-41.27472124595767,0 173.7620495369741,-41.27486539596259,0 173.7631207014636,-41.27534632961804,0 173.7637224848266,-41.27548726294839,0 173.7648542830991,-41.27567254621812,0 173.766584194435,-41.27799703340585,0 173.766983292919,-41.27920243504114,0 173.7671845405236,-41.28034350294588,0 173.7671638725247,-41.28165775485645,0 173.7670436219966,-41.28317260560521,0 173.7670929035679,-41.28424265717334,0 173.7673855857057,-41.28520407402912,0 173.767723901752,-41.28625732523425,0 173.7680582018379,-41.28693694264657,0 173.7682327514329,-41.28730122588771,0 173.769374601702,-41.28716417582787,0 173.7702549678767,-41.28705850955073,0 173.7710256884558,-41.28696600698878,0 173.7711816015397,-41.28694729313553,0 173.7718149825705,-41.28691806455174,0 173.7725912663766,-41.28690753455677,0 173.7728276192678,-41.28690432756657,0 173.7730054731337,-41.28690191106803,0 173.7740365363676,-41.28688789558881,0 173.7756653816148,-41.28608426389258,0 173.7764149827331,-41.28569721278025,0 173.7769945227769,-41.28539796406556,0 173.7774142956699,-41.2851148245265,0 - - -
- - State Highway 6 Havelock - - - - - - - - - - - - - - -
State Highway 6 Havelock
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSroad
LENGTH (KM)2.131
NAMEState Highway 6 Havelock
ISLANDSouth
LEGALSTATRoad
TA_NAMEMarlborough District
Fromkm1784.089
Tokm1786.219
categoryRoad Shoulder
CycleUpgradeable
walkidPelorus River Track
GuidebookNelson Marlborough
colourred
mapNamemap080
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/pelorus-track
-
- - -]]>
- #LineStyle1810 - - - 0clampToGround - 173.7363773544873,-41.27481858809046,0 173.738494481938,-41.27543381504624,0 173.7401812528189,-41.27568377172268,0 173.7408776891945,-41.27558850677441,0 173.7417321800057,-41.27545530939614,0 173.743413758747,-41.27469488630786,0 173.7439517231004,-41.27426706696269,0 173.7449066135209,-41.2729917654469,0 173.745712135711,-41.27234939367451,0 173.7462184126611,-41.27207574490227,0 173.7467901282906,-41.27200977729168,0 173.7475379332361,-41.27199028643973,0 173.7482255774233,-41.27209922456061,0 173.7541528161033,-41.27354586872227,0 173.7591695429977,-41.27430069507088,0 173.7591877047847,-41.27430374756574,0 - - -
- - Te Hoiere Road - - - - - - - - - - - - - - -
Te Hoiere Road
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)1.527
NAMETe Hoiere Road
ISLANDSouth
LEGALSTATRoad
TA_NAMEMarlborough District
Fromkm1786.219
Tokm1787.747
categoryPath
CycleCycleway
walkidPelorus River Track
GuidebookNelson Marlborough
colourred
mapNamemap080
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/pelorus-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.7267231061822,-41.2668802608179,0 173.7274062662507,-41.26780896876963,0 173.7279096046974,-41.26762275011001,0 173.728112769296,-41.26771298403271,0 173.7283876788905,-41.26819618172488,0 173.7292904726084,-41.26999349538186,0 173.7293454629973,-41.27213292487985,0 173.7293370571767,-41.27355800822206,0 173.7301416181402,-41.27365530396936,0 173.7309137414647,-41.2738979740869,0 173.7312008680977,-41.27428034257001,0 173.7320562568461,-41.27488100102807,0 173.7322868580955,-41.27489160279624,0 173.7329979990566,-41.27462725707164,0 173.7335846106292,-41.27449680729193,0 173.7350537794785,-41.27441133511795,0 173.7361726294797,-41.2745435964699,0 173.7363773544873,-41.27481858809046,0 - - -
- - Kaiuma Bay Road - - - - - - - - - - - - - - -
Kaiuma Bay Road
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)9.446
NAMEKaiuma Bay Road
ISLANDSouth
LEGALSTATRoad
TA_NAMEMarlborough District
Fromkm1787.747
Tokm1797.193
categoryWalking Track
CycleCycleway
walkidPelorus River Track
GuidebookNelson Marlborough
colourred
mapNamemap079
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/pelorus-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.6429118014864,-41.2811461468546,0 173.6443244410246,-41.28027469068489,0 173.6455584304861,-41.27926442255459,0 173.6472484601979,-41.27771670993813,0 173.6473765546614,-41.27758510976673,0 173.6475673287099,-41.2773012179012,0 173.647931284734,-41.27672717815346,0 173.6484373774069,-41.27606790640341,0 173.6485731771518,-41.27550808070401,0 173.6486554264359,-41.27520017157033,0 173.6487845638765,-41.27484194882305,0 173.6488563433294,-41.27443399989002,0 173.648968642851,-41.27402702516444,0 173.6488877367821,-41.27377603193386,0 173.6488006764042,-41.27359777503646,0 173.6487511692952,-41.27338355693669,0 173.6496631763599,-41.27264912382103,0 173.6508608059728,-41.27204891719864,0 173.6512665891199,-41.27187502468227,0 173.6517780856306,-41.27179865984617,0 173.6531933238819,-41.27153283008327,0 173.6538036105256,-41.27127673588846,0 173.6543990202052,-41.27079669265599,0 173.6552409934859,-41.27033430968176,0 173.6561214321063,-41.26992890056917,0 173.6569301459235,-41.26956149520868,0 173.6572764803313,-41.26939403947826,0 173.657703982816,-41.26923471296708,0 173.6582290880422,-41.26911467323718,0 173.6592895131585,-41.26895748082527,0 173.6603430990347,-41.26901350245228,0 173.6605709144091,-41.26899869656393,0 173.6614683222895,-41.26887825050216,0 173.662043392104,-41.26889401138428,0 173.6624459793299,-41.26899431774841,0 173.6624541141666,-41.26899706082782,0 173.6628304532981,-41.26925651115638,0 173.6630281241151,-41.26943650385591,0 173.6631812848073,-41.26958815299524,0 173.6632963970039,-41.26972572133686,0 173.6634829316058,-41.27005354209263,0 173.6635929344219,-41.27031030464148,0 173.6637621611488,-41.27080028915225,0 173.6639367991243,-41.27182410155739,0 173.6640354853176,-41.27283405181792,0 173.6641146310396,-41.27316249071875,0 173.6644555129415,-41.27375634879832,0 173.6646089772104,-41.27393659374821,0 173.6650601545314,-41.27419138460554,0 173.6653017327179,-41.27433775335943,0 173.6655374298336,-41.27452705499182,0 173.6657718048202,-41.27474905125712,0 173.6668725147692,-41.275528621165,0 173.6671423110837,-41.27586225328674,0 173.6672568360928,-41.27619685518733,0 173.6673059923455,-41.27666584777561,0 173.6671944869344,-41.27805698927739,0 173.6671877196147,-41.27814141660031,0 173.6673265383623,-41.27869372757236,0 173.6675483854313,-41.27899436047066,0 173.6678355636992,-41.27919073497549,0 173.6682144197793,-41.27929244465691,0 173.6686757063433,-41.27929453282118,0 173.6691174050654,-41.27923476725646,0 173.6694072198833,-41.27915205029688,0 173.6697973471369,-41.27899248349787,0 173.670640827349,-41.27867774422159,0 173.67130258462,-41.27851182302468,0 173.6720412818168,-41.27845508058918,0 173.6734131834557,-41.27827871685923,0 173.6736925501989,-41.27816452542206,0 173.6739451325072,-41.27801177516371,0 173.674381081637,-41.27767243383592,0 173.6747455922398,-41.27749291117362,0 173.6749432221962,-41.27742962061392,0 173.6751831537673,-41.27742822467972,0 173.6756351580611,-41.27751474948326,0 173.6764599980106,-41.27773327009378,0 173.6770255115357,-41.27770295281098,0 173.6779023778986,-41.27753573287711,0 173.6783498908488,-41.27752141931657,0 173.6788876559615,-41.27757860280062,0 173.6807111961738,-41.27797199849608,0 173.6809562337897,-41.27802486058796,0 173.6817952150345,-41.27834951449017,0 173.6833568650939,-41.27883112358637,0 173.6839285519255,-41.27894482512682,0 173.6844341321244,-41.27899316834156,0 173.686840027147,-41.27903748298076,0 173.6871423429019,-41.27906631414917,0 173.6892267043361,-41.27895668075916,0 173.6903538921543,-41.27898330549633,0 173.6903784582956,-41.27898688118967,0 173.6911441732085,-41.27909836286287,0 173.69138944239,-41.27915110941272,0 173.6918572607099,-41.27925170905388,0 173.6933793489632,-41.27971989546764,0 173.6942209128753,-41.28004266499109,0 173.6952433791121,-41.28055164731858,0 173.6954775418128,-41.28065186009167,0 173.6956521904344,-41.28072660275521,0 173.6969408555162,-41.28099353419023,0 173.6973705823142,-41.28098913950215,0 173.69824515817,-41.28083169784297,0 173.6990253296592,-41.28089003694265,0 173.699919830385,-41.28103502695105,0 173.7002709759804,-41.28105091789558,0 173.7006212836567,-41.28100016989151,0 173.7010614968897,-41.28085973528668,0 173.7022064577725,-41.28029896974608,0 173.7029238829143,-41.2800712959464,0 173.7034475562683,-41.27997761656513,0 173.7054093514987,-41.27962664655436,0 173.7084175185503,-41.27894371182538,0 173.7088455634845,-41.27868262043847,0 173.7090609792359,-41.27861735745149,0 173.7092717915753,-41.27855834699007,0 173.7095442367761,-41.27848208356796,0 173.7098080741997,-41.27848766152497,0 173.7105334881201,-41.2785741443882,0 173.7108997009808,-41.27853225871949,0 173.7112778656929,-41.27841203530713,0 173.7119762806099,-41.2780799041943,0 173.7123521936346,-41.27796140266445,0 173.7130142835746,-41.27781149922694,0 173.7137483748101,-41.27769167527693,0 173.7155215346083,-41.27751144749838,0 173.7162377412683,-41.27739541120877,0 173.7166335906685,-41.27728972106958,0 173.7167892725198,-41.27724815419921,0 173.717058327966,-41.27702007193243,0 173.7174146635653,-41.27693157433848,0 173.7177555443382,-41.27673537249486,0 173.7179240934342,-41.27646477683451,0 173.7178475389586,-41.2760016308122,0 173.7180162035078,-41.27574183978467,0 173.7181576375592,-41.27561154371856,0 173.7184415248168,-41.27542650305612,0 173.7185242007933,-41.27514563297379,0 173.7186793158802,-41.27496139535868,0 173.7192181982355,-41.27456987689956,0 173.7191298457618,-41.27433321431301,0 173.7192704432505,-41.27412745167879,0 173.7195407796939,-41.27401796169596,0 173.7202345172842,-41.27342058615593,0 173.7205750158735,-41.27319204858853,0 173.7208818618542,-41.2725000965467,0 173.7214039625267,-41.27189298130634,0 173.721571652592,-41.27154691508188,0 173.7216122182911,-41.27119849246181,0 173.7222397887933,-41.27062250365466,0 173.7225589406148,-41.27025468166926,0 173.7227788715754,-41.26990630373352,0 173.7229124012674,-41.26961475520076,0 173.7237493270712,-41.26885921691616,0 173.7238955621438,-41.26859568478262,0 173.7241285059781,-41.26830350964436,0 173.7247206825585,-41.26789650030771,0 173.7259567012911,-41.26726028179437,0 173.7264143161621,-41.26706043598831,0 173.7267231061822,-41.2668802608179,0 - - -
- - Dalton Track - - - - - - - - - - - - - - -
Dalton Track
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)6.071
NAMEDalton Track
ISLANDSouth
LEGALSTATRoad
TA_NAMEMarlborough District
Fromkm1797.193
Tokm1803.264
categoryWalking Track
CycleUpgradeable
walkidRichmond Alpine Track
GuidebookNelson Marlborough
colourred
mapNamemap080
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.5790671063501,-41.29834143491475,0 173.5797400514481,-41.29821730673549,0 173.5807312356896,-41.29842512242045,0 173.5821361202068,-41.29826311221236,0 173.5839458616244,-41.29743170925008,0 173.5849454106384,-41.29700359953929,0 173.5858343082279,-41.29682625955812,0 173.5866914081657,-41.29700768727061,0 173.5881601370091,-41.29691572029073,0 173.5898345404812,-41.29685948703693,0 173.5901418406748,-41.2967685384813,0 173.5907659513849,-41.29676533722262,0 173.591958100386,-41.29683108174756,0 173.5929934551591,-41.29673892498256,0 173.5935688914663,-41.29671425227668,0 173.5941155456765,-41.29668972524601,0 173.5945490861811,-41.29663265341876,0 173.5950145972399,-41.29656470756018,0 173.5953781103954,-41.29657474448597,0 173.595600104444,-41.29668399591327,0 173.5969113936417,-41.29672763398972,0 173.597552378823,-41.2967541420091,0 173.597938777507,-41.2966746785001,0 173.5983272987087,-41.29682757387617,0 173.6000779710658,-41.29699124990506,0 173.6022044239969,-41.29729474003838,0 173.6041426104992,-41.29774217669073,0 173.6069273075565,-41.2975298827543,0 173.6096220946078,-41.29705621448072,0 173.6123145658196,-41.29686580772138,0 173.6149262729662,-41.29678833131766,0 173.6187123146353,-41.29613249939883,0 173.6213197616212,-41.29561001941325,0 173.6250086641491,-41.29361986012181,0 173.629525898935,-41.29016330111512,0 173.6333809710559,-41.28729704667114,0 173.6365597901769,-41.28561224712385,0 173.6395792455598,-41.28419731029318,0 173.6429118014864,-41.2811461468546,0 - - -
- - Pelorus Circle Walk - - - - - - - - - - - - - - -
Pelorus Circle Walk
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)0.945
NAMEPelorus Circle Walk
ISLANDSouth
LEGALSTATDOC
TA_NAMEMarlborough District
Fromkm1803.264
Tokm1804.209
categoryWalking Track
CycleUpgradeable
walkidRichmond Alpine Track
GuidebookNelson Marlborough
colourred
mapNamemap080
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.5714674033708,-41.29765342758638,0 173.5718550574789,-41.29737475026484,0 173.572345718511,-41.29750073003435,0 173.573027299266,-41.29740851946553,0 173.5734688663657,-41.29693331020709,0 173.574018728556,-41.29667224724552,0 173.5745293419274,-41.29681487578626,0 173.5758754998709,-41.29677497441903,0 173.5762975005709,-41.29654099137293,0 173.5765618276744,-41.29599185541121,0 173.5775519352675,-41.29581486644609,0 173.5783234047738,-41.29615433489244,0 173.5785734070502,-41.29658830226831,0 173.5790001595912,-41.2976264476908,0 173.5790671063501,-41.29834143491475,0 - - -
- - Maungatapu Rd - - - - - - - - - - - - - - -
Maungatapu Rd
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)13.86
NAMEMaungatapu Rd
ISLANDSouth
LEGALSTATRoad
TA_NAMEMarlborough District
Fromkm1804.209
Tokm1818.069
categoryTramping Track
CycleUpgradeable
walkidRichmond Alpine Track
GuidebookNelson Marlborough
colourred
mapNamemap081
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.4643604034772,-41.3290506746731,0 173.4621479993159,-41.3284963613915,0 173.4610846901159,-41.32777701958804,0 173.4591763787672,-41.32648405239607,0 173.4575882344343,-41.32442283654967,0 173.4567716015291,-41.32337536256055,0 173.4570796911528,-41.32242510407572,0 173.4577027209669,-41.32150748683198,0 173.4591806533417,-41.32068814121177,0 173.4611554726949,-41.32020572823961,0 173.4625034920002,-41.32009863717119,0 173.4639863800891,-41.31999098673589,0 173.4654980202961,-41.32031050497393,0 173.4683636955901,-41.32221997686499,0 173.4686947788132,-41.32233084342678,0 173.4698117460853,-41.32248346047612,0 173.4716732321139,-41.3220419783238,0 173.4741502206893,-41.32056329664523,0 173.4749100401964,-41.31995014766263,0 173.4775284265111,-41.31939716561284,0 173.4787040286179,-41.31928394953682,0 173.4799039127022,-41.31983041688505,0 173.4820814304135,-41.32046276718745,0 173.4824539140599,-41.3204447341546,0 173.4832583996046,-41.31997670370441,0 173.4838717990915,-41.31961983514499,0 173.4844665484775,-41.31972318463318,0 173.4846328996468,-41.31944081820465,0 173.4853718497309,-41.31923888488281,0 173.4864863681432,-41.3184919518685,0 173.4870325272459,-41.3178540014487,0 173.4872824696934,-41.31756241922503,0 173.4892267044404,-41.3167596372173,0 173.4899539399739,-41.31561818776611,0 173.4901131919396,-41.31478705464929,0 173.4899831075195,-41.31430278959036,0 173.490028460458,-41.31359925611327,0 173.491137553197,-41.31312673746206,0 173.4918497278936,-41.31264675658898,0 173.4932343950041,-41.31231465628602,0 173.4934140296544,-41.31209075653247,0 173.4943967460304,-41.31214005644134,0 173.4955380453862,-41.31199465650259,0 173.4964270275862,-41.31272262184265,0 173.4998943596337,-41.31325703803235,0 173.5002850261387,-41.3131916661978,0 173.5013237936077,-41.3130178379525,0 173.5026053434282,-41.3130748050748,0 173.5027760121901,-41.31217957227148,0 173.5030039954299,-41.31183280559972,0 173.5031768805542,-41.31186284372177,0 173.5036641786762,-41.31194750626026,0 173.5044560283346,-41.31260587252327,0 173.5049209944087,-41.31268315569911,0 173.5052048614064,-41.31252808921262,0 173.5059938457204,-41.31278224935006,0 173.5064022104743,-41.31327933878066,0 173.5062738745266,-41.31442392095121,0 173.506804657983,-41.31443443734961,0 173.5073764593544,-41.31422975490671,0 173.5073222073494,-41.31519055346537,0 173.5083729554501,-41.31594256955734,0 173.5095822047908,-41.31663848601006,0 173.5100786383058,-41.31672888627966,0 173.5107662435641,-41.31660467643422,0 173.5110221220855,-41.31655845269146,0 173.5108131351474,-41.3177324019847,0 173.5110493309448,-41.31953789941877,0 173.5114384136001,-41.32022178261678,0 173.5126751773719,-41.32109039849149,0 173.5140141827216,-41.31969111729497,0 173.517242623633,-41.31713610561987,0 173.5178582896006,-41.31693526628468,0 173.5197885938623,-41.31627022447336,0 173.5207122958713,-41.31572039219452,0 173.5211776652454,-41.31493989409026,0 173.5221406176352,-41.31402691187753,0 173.5219913861636,-41.31337364604927,0 173.5222824868052,-41.31292164607737,0 173.5230543044313,-41.31289194706217,0 173.5241176335634,-41.3124826221582,0 173.5254028429637,-41.31141748456569,0 173.5248042063534,-41.31043572768439,0 173.5265811313113,-41.31046439835954,0 173.5299597423139,-41.30950609596564,0 173.5302712996343,-41.30926868454848,0 173.5303604662303,-41.30849425371918,0 173.5309745575643,-41.30850002196502,0 173.5343385673641,-41.30624818793552,0 173.5365820712383,-41.30518617019181,0 173.5369748729075,-41.30462858716414,0 173.5373249326721,-41.30442668084368,0 173.5380370420544,-41.30450783958473,0 173.5391481518612,-41.30392917631879,0 173.5405492984574,-41.30377439357562,0 173.5409474651661,-41.30351784453999,0 173.5409858999234,-41.3029481946343,0 173.5410036360821,-41.30248848173095,0 173.5414300696045,-41.30231690025479,0 173.5420842277098,-41.30261966153704,0 173.5426205239086,-41.30251835761983,0 173.5430585048786,-41.30197041535345,0 173.5431265868482,-41.30192599718124,0 173.5435070584524,-41.30207073220337,0 173.5436802731773,-41.30223559943147,0 173.5441374643387,-41.30192708655785,0 173.5442444656595,-41.30131732281072,0 173.5451133601401,-41.3012765184781,0 173.5456169500985,-41.30208892610849,0 173.5462870425232,-41.3024524105162,0 173.5467757454435,-41.30255702076369,0 173.547457013834,-41.3024374049191,0 173.5481268659059,-41.30212060656466,0 173.54898960829,-41.30170470693629,0 173.5540550445255,-41.30068233152477,0 173.5645464902423,-41.29879655742906,0 173.5695177912052,-41.29761269118173,0 173.5710494709972,-41.29736780370508,0 173.5714674033708,-41.29765342758638,0 - - -
- - Pelorus Track Richmond Range - - - - - - - - - - - - - - -
Pelorus Track Richmond Range
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)8.376
NAMEPelorus Track Richmond Range
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1818.069
Tokm1826.444
categoryTramping Track
CycleProhibited
walkidRichmond Alpine Track
GuidebookNelson Marlborough
colourred
mapNamemap081
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.4350802830047,-41.37360932440851,0 173.4352476664928,-41.37363061779214,0 173.435348749986,-41.37363908271136,0 173.4354266254842,-41.37364687871718,0 173.4354308251025,-41.3736456116701,0 173.4355270346238,-41.37361662497482,0 173.4355938346575,-41.37357102688657,0 173.4357085896916,-41.37354076461881,0 173.4358374192857,-41.37350942386875,0 173.4359131885271,-41.37347346310538,0 173.4359794058773,-41.37343020807677,0 173.4360882939703,-41.37338402867638,0 173.4361718601565,-41.37335209072034,0 173.4362784705214,-41.37330330846538,0 173.4363938116196,-41.37323525002405,0 173.4364891083704,-41.37317130020844,0 173.4365958117924,-41.37312041943388,0 173.4367186134083,-41.37300005843937,0 173.4367642024656,-41.37292520143697,0 173.4367737642702,-41.37283459352432,0 173.4368409876568,-41.37276637225846,0 173.4369129796389,-41.3727090383744,0 173.436989091013,-41.37262186457124,0 173.4370213680224,-41.37252790330975,0 173.4370273118553,-41.37247048327261,0 173.4370780198992,-41.37241231944469,0 173.4371165798845,-41.37233755114418,0 173.4371400481374,-41.37226194840911,0 173.4372451582042,-41.37209698884811,0 173.4373074323796,-41.37203093802962,0 173.437327721347,-41.37196078523266,0 173.437345152,-41.37189968514846,0 173.4373921812891,-41.3718258393741,0 173.4374343453136,-41.371788120927,0 173.4374274693176,-41.37176255460504,0 173.4374542112321,-41.37169751070245,0 173.4375058342909,-41.37163506637665,0 173.4375330760565,-41.37162768824907,0 173.4375884838497,-41.37162416637023,0 173.4376335795249,-41.37155627107649,0 173.4377736436176,-41.37146022060621,0 173.4377787584186,-41.3714437045896,0 173.4377664357854,-41.37143868107535,0 173.4378013055805,-41.37133574983272,0 173.4377820245465,-41.37130875347258,0 173.4377861309619,-41.37127363694629,0 173.4378203343406,-41.3711225138449,0 173.4378117815544,-41.37110172616487,0 173.4378242646235,-41.37102100369595,0 173.4380600499282,-41.37093341882763,0 173.4381325593153,-41.3708894999536,0 173.4381935782427,-41.37082914443676,0 173.4381747212731,-41.37080475783807,0 173.4382431990537,-41.37078036746166,0 173.4386300198894,-41.3708347607936,0 173.4387703319149,-41.37087927572194,0 173.4387927918932,-41.37090240633419,0 173.4388338640518,-41.37093267026045,0 173.4389420737941,-41.37099427054847,0 173.4390181803731,-41.37102411523275,0 173.4390266504458,-41.37102151665026,0 173.4390376289224,-41.37101673855626,0 173.4390504492021,-41.3710141422913,0 173.4390694805385,-41.37101229607643,0 173.4391248004913,-41.37104238934309,0 173.4392375347293,-41.37104717001496,0 173.4393529538478,-41.37104951727911,0 173.439535928818,-41.37107742766803,0 173.4396646796801,-41.37109452862721,0 173.4397167328623,-41.37111321602644,0 173.4397021427788,-41.37110869680097,0 173.4397499166815,-41.37114004273053,0 173.4398328967707,-41.37112687983854,0 173.4399173025365,-41.37113560175789,0 173.4400190618067,-41.37114901329059,0 173.4401014588493,-41.3711953657954,0 173.4401879584528,-41.37120265810367,0 173.4403288543126,-41.37122495339866,0 173.4405031974176,-41.37128664503474,0 173.4406010193506,-41.37131564890689,0 173.4407129119964,-41.37128547367434,0 173.4408883473435,-41.37131740836695,0 173.4409618551848,-41.37131053944615,0 173.4410145799132,-41.3712848107003,0 173.4410764321704,-41.37125823716077,0 173.4411589966811,-41.37125437707351,0 173.4412389650609,-41.37121599256285,0 173.441335191467,-41.37122261618226,0 173.4413779290355,-41.37119973504535,0 173.4414574807691,-41.37121012194986,0 173.4415570480664,-41.3711638560218,0 173.441593678003,-41.37117853030287,0 173.4416328255974,-41.37119965157586,0 173.441679842215,-41.37120887508605,0 173.4417055846143,-41.37118640945525,0 173.4417292135015,-41.37119479313039,0 173.4418178971894,-41.37117811285415,0 173.4419003735378,-41.37118775140063,0 173.4419990273302,-41.37115514865727,0 173.4421236703175,-41.37114416696638,0 173.4421322129313,-41.37114894331344,0 173.4421119337481,-41.37112136602309,0 173.4421434450409,-41.3711267306011,0 173.4421628974058,-41.37113444565268,0 173.4422151162406,-41.37114022696019,0 173.4422556850982,-41.37114164919267,0 173.4422685918668,-41.37114106904212,0 173.4422827628976,-41.37110611184672,0 173.4423154475128,-41.3710940385116,0 173.4423110884158,-41.37108566286671,0 173.4423730254676,-41.37110577841079,0 173.4423822520444,-41.37110737332419,0 173.4424021153726,-41.37112279548003,0 173.4424303571915,-41.3711021756472,0 173.4425031138731,-41.3710778644667,0 173.4425498033644,-41.37104534215591,0 173.442607636722,-41.37100955313624,0 173.4426803973192,-41.37095021298919,0 173.4427223080685,-41.37095909541036,0 173.4427301821944,-41.37096580102042,0 173.4427430011179,-41.37097343340196,0 173.4427736879966,-41.37100217755721,0 173.4428638748041,-41.37107250612577,0 173.4428983178164,-41.37108734153902,0 173.4429306781797,-41.37112849712004,0 173.4429445117033,-41.371141321169,0 173.4429544806414,-41.37115557429335,0 173.4430421598146,-41.37115850113084,0 173.4431029242832,-41.37117141740246,0 173.44312254005,-41.3711926214779,0 173.4431926105874,-41.37123838869549,0 173.4432221930444,-41.37122346262797,0 173.4433018246013,-41.37126705004274,0 173.4433230281133,-41.3712667170463,0 173.4433848853504,-41.37129437894219,0 173.4434758323998,-41.37131591521517,0 173.4435298965195,-41.37129739345855,0 173.4435674424826,-41.37132731798769,0 173.4436702948211,-41.37134517093951,0 173.4437775807594,-41.37132162028151,0 173.4438942605878,-41.37130334598691,0 173.4440196501855,-41.37132514620257,0 173.4441473047923,-41.37133184617226,0 173.4442199729764,-41.37131567533778,0 173.4442425187654,-41.3712428391508,0 173.444336402288,-41.37123512376719,0 173.4444441908824,-41.37119061611495,0 173.4444701705715,-41.37118927452757,0 173.4446178636065,-41.37110411882026,0 173.4446997509483,-41.37103529674249,0 173.4448824810993,-41.37095550894705,0 173.444949286336,-41.3708871134095,0 173.4449822229671,-41.37079717285572,0 173.4450507109937,-41.37072676294805,0 173.4451049412376,-41.37063187768841,0 173.4451914371026,-41.37060129010062,0 173.4453023338302,-41.37059424853781,0 173.4454377796084,-41.3705367475272,0 173.4454573174648,-41.37049140499093,0 173.4456210969463,-41.37040088293283,0 173.4456031582411,-41.37034480517812,0 173.4456833681156,-41.37034287769456,0 173.4457779142837,-41.37032209301177,0 173.4458751475213,-41.37032569228457,0 173.4460008741016,-41.37031262233382,0 173.4461043120623,-41.37028260974275,0 173.4461305719254,-41.37029275681375,0 173.4461412147555,-41.37029687617681,0 173.4462177939717,-41.37031153101621,0 173.4463058100779,-41.37032016309368,0 173.4464150213788,-41.37032746262555,0 173.4465274304176,-41.37039023750715,0 173.4465679942299,-41.37035897858176,0 173.4466412498683,-41.37038051705285,0 173.4466740204196,-41.37035478118844,0 173.4466829935641,-41.37031530558069,0 173.4466897885232,-41.37030893964298,0 173.4467039489064,-41.37032226730343,0 173.4467720111688,-41.37032192561583,0 173.4468823978856,-41.37035612590972,0 173.4469715032337,-41.37034917456618,0 173.4470740059759,-41.37033299593742,0 173.4471188474446,-41.37033869559323,0 173.4472563149675,-41.37032947805237,0 173.4472729135913,-41.37027750981713,0 173.4472677979809,-41.3702739906049,0 173.4472795367083,-41.37026334661132,0 173.4473004000273,-41.37024272633752,0 173.4474022431896,-41.37019628437029,0 173.4474687161832,-41.37017483097896,0 173.4475311592845,-41.37013886933376,0 173.4475628432657,-41.37015739639524,0 173.4476108641574,-41.37011372712339,0 173.4475527002183,-41.37011070879889,0 173.4475131577589,-41.37007367910663,0 173.4475763392146,-41.37003049225066,0 173.4475118843206,-41.3699599159773,0 173.447504340535,-41.36995086742935,0 173.4474859741742,-41.36994131150131,0 173.4475246152282,-41.36991574262682,0 173.4475656318092,-41.3698808713342,0 173.4475431416776,-41.369887242518,0 173.4474720665722,-41.36987693495386,0 173.4474720636775,-41.36983410731823,0 173.4475399620271,-41.36981306359522,0 173.4475965390185,-41.36977945589477,0 173.4476499316622,-41.3697222939111,0 173.4477588906965,-41.36971524850802,0 173.4478302181065,-41.36974702278567,0 173.4479293853352,-41.36984023054441,0 173.4480736356872,-41.36987954032271,0 173.4481991974999,-41.36989161069168,0 173.4482570335632,-41.3699149989061,0 173.4483310381878,-41.36990611464334,0 173.4484208097449,-41.36989529710828,0 173.4485564288802,-41.3699150005944,0 173.4486495549204,-41.36990703242873,0 173.448747033784,-41.36989580627252,0 173.4489507136412,-41.36984107329702,0 173.4490835626894,-41.36985440236265,0 173.4491749258314,-41.36981928177102,0 173.4491817969613,-41.3698083863515,0 173.4492741734122,-41.3698202860227,0 173.4493206059387,-41.36982263768084,0 173.4493684694836,-41.36983311491327,0 173.4494910941435,-41.36988801397995,0 173.4495594930663,-41.36992657055357,0 173.4495723966081,-41.36992556623471,0 173.4496111162248,-41.36989589788568,0 173.4496972817268,-41.36991207218008,0 173.4498080950023,-41.36990687136021,0 173.4499272841618,-41.36990301675364,0 173.4500129538905,-41.36987100646909,0 173.450038088695,-41.36985994139848,0 173.4503289425937,-41.36979925959461,0 173.4504079044326,-41.36981257910549,0 173.4504809935961,-41.36979741062498,0 173.4505881965268,-41.36978005839104,0 173.4506708408227,-41.36978811366095,0 173.4507648019096,-41.36977126170268,0 173.4508824879556,-41.36964344097944,0 173.4509802211503,-41.36961703859625,0 173.451151046158,-41.36954268937051,0 173.4512536418802,-41.3694773124199,0 173.4513280719655,-41.36946247232433,0 173.4513462593792,-41.36947219948658,0 173.4514173378458,-41.36940581914731,0 173.451505007791,-41.36933263776489,0 173.4515796931633,-41.36928696341046,0 173.4516551248751,-41.36925066931863,0 173.4517731427445,-41.36921043740538,0 173.4518674446376,-41.36917698756173,0 173.452002475151,-41.36911966060287,0 173.4520463103522,-41.36907263796689,0 173.4520675178826,-41.369023937812,0 173.4521663402985,-41.36899979915945,0 173.45222032419,-41.36893181817478,0 173.4522921558445,-41.3688675322035,0 173.4523372420718,-41.36872738462117,0 173.4523597991769,-41.36865588800935,0 173.4523934086183,-41.36859428065411,0 173.4524022100833,-41.36854591654605,0 173.4524675010383,-41.36848497908998,0 173.4525060534978,-41.36841717483545,0 173.4524945785923,-41.368321280644,0 173.4524861976629,-41.36824601345435,0 173.4524039705307,-41.36816588243188,0 173.4525276840987,-41.36809363316505,0 173.4526515680495,-41.36810897324804,0 173.4527646438868,-41.3681398173082,0 173.4528270869366,-41.36814300532684,0 173.4529367241302,-41.36815506923869,0 173.4530539819668,-41.3681751090233,0 173.4531786256025,-41.36816186434988,0 173.4531773658425,-41.36807578163519,0 173.4532103119933,-41.36799766207012,0 173.4532807975106,-41.36794661748129,0 173.4533214522265,-41.36791535671575,0 173.4533729981368,-41.36790521463835,0 173.4534908481629,-41.36787403068468,0 173.4535423167921,-41.36780404217084,0 173.4535845542223,-41.3677352240807,0 173.4536495964089,-41.36766783836925,0 173.4537144820826,-41.36760203947847,0 173.4537510210942,-41.36752693935716,0 173.4537743260923,-41.36744806406245,0 173.4537595674379,-41.36738419603424,0 173.4537506066066,-41.36732736441982,0 173.4537335876264,-41.36718855644143,0 173.4537440645601,-41.36713541337419,0 173.4536924297307,-41.36704539295587,0 173.4537086085205,-41.36695587533275,0 173.4537825344539,-41.36692025143417,0 173.4538717229701,-41.36691572647653,0 173.4539638373066,-41.36691790689875,0 173.4540853793575,-41.36692326792323,0 173.4542108579032,-41.36693090212321,0 173.4542925748634,-41.36692453184296,0 173.4543691880677,-41.3668974614149,0 173.4544178019877,-41.36683484930655,0 173.4544575295102,-41.36678547385312,0 173.454547722222,-41.36670124041906,0 173.4545867021955,-41.3666525425454,0 173.4546287805866,-41.36661834009813,0 173.4546456200575,-41.36660056998338,0 173.4547086518689,-41.36652966241294,0 173.454731794156,-41.36649168849372,0 173.4547331322515,-41.3664099633069,0 173.4547345826161,-41.36639845753739,0 173.4547713509529,-41.36631517183891,0 173.4548058071359,-41.36628482588574,0 173.4548762886843,-41.36622850365817,0 173.4549498030241,-41.36612456047668,0 173.4549617106877,-41.36596715193825,0 173.4550036194219,-41.3658925535128,0 173.4550186986838,-41.36583446674982,0 173.4550557519695,-41.3658048752021,0 173.455070750421,-41.36574721210899,0 173.4550856752437,-41.36571879707268,0 173.4550409976761,-41.36565509074045,0 173.4551294269148,-41.36559968912231,0 173.4551919571144,-41.36556373106197,0 173.4556052706323,-41.36535594689372,0 173.4556880788998,-41.36532275469078,0 173.4557577359252,-41.36529777272391,0 173.4558149042897,-41.36522979631729,0 173.4558431456741,-41.36516005908307,0 173.4558948607005,-41.36508646636708,0 173.4559599010221,-41.36504556356335,0 173.4560544488631,-41.36497641296234,0 173.4560929323748,-41.36500332297435,0 173.4561098609229,-41.36501588998086,0 173.4561014787871,-41.36487180743186,0 173.4560868075955,-41.36466334614923,0 173.456061244684,-41.36459126210832,0 173.4560575519058,-41.36451171774966,0 173.4562281324801,-41.36434416986657,0 173.456437087123,-41.36423629190946,0 173.4565950026696,-41.36398659547071,0 173.4567377428242,-41.36387260045527,0 173.4567434524969,-41.36381317246335,0 173.456723671972,-41.36377880578649,0 173.4567296181216,-41.36367419908333,0 173.4567346471065,-41.36361335058561,0 173.4567632326123,-41.36353304939505,0 173.4567612139769,-41.36319274095983,0 173.4567100943656,-41.36312200063262,0 173.4567618851514,-41.36301840277631,0 173.4567748817409,-41.3629308951831,0 173.4567962557709,-41.36283617795789,0 173.4567919877261,-41.36274800026359,0 173.456803807884,-41.36260785492581,0 173.4569040453344,-41.36263945571529,0 173.4569270158104,-41.36262361647305,0 173.4569742080561,-41.36252914889325,0 173.457047883247,-41.3624721559652,0 173.4572194629461,-41.36235161703685,0 173.4572560831509,-41.36215280637505,0 173.4572613657593,-41.36207669339994,0 173.4572366480973,-41.36185398957574,0 173.4572660694176,-41.36165809714777,0 173.4572338836472,-41.36157553944532,0 173.4571560980741,-41.36140806415551,0 173.45701075731,-41.36125576563104,0 173.4569232432062,-41.36118334855208,0 173.4567994434007,-41.36112307811032,0 173.4567586273479,-41.361033305181,0 173.4566916612195,-41.36094722825182,0 173.4564871438726,-41.36087756572754,0 173.4564283868432,-41.36082208204351,0 173.456344986135,-41.36074974728923,0 173.4562671169048,-41.36070984504963,0 173.4561672052617,-41.36065218150232,0 173.455924551074,-41.36057573415559,0 173.4558403947696,-41.36049744977456,0 173.4556386456478,-41.36043198043806,0 173.4556041161881,-41.36036098473287,0 173.4554985845253,-41.36028554916326,0 173.4552405022895,-41.36022125328276,0 173.4551017874712,-41.36020918852513,0 173.4549328907373,-41.36008915487039,0 173.4548520853115,-41.36004078889086,0 173.4547625731945,-41.36000039118908,0 173.4546785828455,-41.35993911621388,0 173.4545938499866,-41.35985152199253,0 173.4545178195922,-41.35974499261067,0 173.4545058298147,-41.35967357606361,0 173.4544334197571,-41.35961892803178,0 173.4543849635857,-41.35955941403492,0 173.4543707199245,-41.35950769976851,0 173.4543558871988,-41.35927141320528,0 173.4543743300159,-41.35919513216152,0 173.4543749943003,-41.35912665617072,0 173.45434297923,-41.3590698245649,0 173.4542932707577,-41.35908013097208,0 173.4542165003263,-41.35909170435745,0 173.4542015815333,-41.35903914691539,0 173.4541273079378,-41.35898457809891,0 173.4534455307814,-41.35885624668622,0 173.4535630511878,-41.35880025598402,0 173.4536886920011,-41.35874502582431,0 173.4537649613157,-41.35870059489866,0 173.4538278268104,-41.35869515410539,0 173.4539087993508,-41.35867603672474,0 173.4540392258455,-41.35861468192619,0 173.4541112170556,-41.35858761095682,0 173.454204840904,-41.35854687735151,0 173.4542859790089,-41.3584995182986,0 173.454392179913,-41.35844369663888,0 173.4544326704315,-41.35841553290807,0 173.4545024029604,-41.35834344682569,0 173.4546060024643,-41.35827429852579,0 173.4546826960982,-41.35820648868448,0 173.4547479129062,-41.35816089465091,0 173.4548356693932,-41.35807003367476,0 173.4549064972345,-41.35800616429049,0 173.4549205737302,-41.35792586587781,0 173.4549031463312,-41.35784925632205,0 173.4549364988166,-41.35777917564516,0 173.4549277901787,-41.35776073990328,0 173.4549107715489,-41.35774866758175,0 173.4548940075341,-41.35764850762305,0 173.4548572943038,-41.35757415323398,0 173.4548116091171,-41.35750911756119,0 173.4546914995398,-41.35740886602081,0 173.454578763034,-41.35737098025898,0 173.4544358587793,-41.35733803980823,0 173.454321858205,-41.35718246403706,0 173.4542750097811,-41.35711834251264,0 173.4542192694923,-41.35705941474026,0 173.4542514598188,-41.35698892448725,0 173.4544209419188,-41.35684106782248,0 173.4544614165878,-41.35680905066637,0 173.45452797584,-41.35675021381307,0 173.4546821112292,-41.3566961490947,0 173.4545284734045,-41.35657410972574,0 173.4545645201014,-41.35638852970623,0 173.4546153097197,-41.35634284769246,0 173.4546835411569,-41.35626498539999,0 173.4548086865985,-41.35609357356737,0 173.454848165371,-41.35603674145047,0 173.4549560363499,-41.3558301336951,0 173.4549919919508,-41.35576852518669,0 173.4550204998312,-41.35574488361261,0 173.4550539362352,-41.35570967924465,0 173.4550991194642,-41.35572116367517,0 173.4551543483304,-41.35563139306304,0 173.4552926542179,-41.3555335003803,0 173.455380826433,-41.3555104450553,0 173.4554648203677,-41.35549150287677,0 173.4555425144533,-41.35549662067308,0 173.4555821661863,-41.35543216084051,0 173.4556225712986,-41.35540751810254,0 173.4556788071839,-41.3553962854115,0 173.4557462861127,-41.35537248213358,0 173.4558345399126,-41.35533358619769,0 173.4559208798717,-41.35531682324757,0 173.456029171395,-41.35529461641055,0 173.4561295859146,-41.35527584377952,0 173.4562124868617,-41.35523535729914,0 173.456273582605,-41.35520450981499,0 173.456376183477,-41.35517341935489,0 173.4564573142087,-41.35517425418026,0 173.4565432314894,-41.35517609593283,0 173.45664615984,-41.35520283391137,0 173.4567354270299,-41.35519990799268,0 173.4567992988374,-41.35520417813043,0 173.4568626679307,-41.35519605030206,0 173.4569117854606,-41.3552200183131,0 173.4570258598854,-41.35527023246394,0 173.4571518416745,-41.35530031935782,0 173.45725283687,-41.35529965240762,0 173.4573816699861,-41.35528925907516,0 173.4574731192752,-41.35527015158546,0 173.4575598719064,-41.35526134672647,0 173.4576211426847,-41.355278277986,0 173.457691208801,-41.35532254125905,0 173.4577282614292,-41.35535069861867,0 173.4577799744421,-41.35536796505459,0 173.457855330179,-41.35536335512825,0 173.4579523892797,-41.35535866959862,0 173.4580305907968,-41.3553491949169,0 173.4581201154541,-41.35532312445893,0 173.4583256311475,-41.35529773242469,0 173.4584276414531,-41.3552953858821,0 173.4585145650864,-41.3552647964346,0 173.4585854741628,-41.35522213023489,0 173.4586235222866,-41.35524048572137,0 173.4587003876607,-41.35524148909462,0 173.4588091041599,-41.35524794928183,0 173.4589163041187,-41.35519950390935,0 173.4589738958903,-41.35524065445726,0 173.4589826915361,-41.35525791856255,0 173.4590307225485,-41.35525439776813,0 173.4591558558209,-41.35529103170951,0 173.4592639903448,-41.35529631468454,0 173.4593260984018,-41.35531324169428,0 173.4594027928397,-41.3553395675669,0 173.4595399130926,-41.35534367257241,0 173.4596503082634,-41.35534384062799,0 173.4598792186611,-41.35531433677337,0 173.4600076213912,-41.35531944888006,0 173.4601284886713,-41.3553425017751,0 173.4602587489119,-41.35534485074001,0 173.4603561400603,-41.35532623964129,0 173.4604668730493,-41.35532515349597,0 173.460570802259,-41.35528433743776,0 173.4605987986218,-41.35520998979298,0 173.4606321626172,-41.35494385961957,0 173.4606284777439,-41.35485409427174,0 173.4607231040706,-41.35479902377589,0 173.460949504668,-41.35480757433147,0 173.4610898985022,-41.35482526232207,0 173.4613803280905,-41.35478855148594,0 173.4615040456933,-41.35479885830142,0 173.4616301122325,-41.35482199686489,0 173.4617176135106,-41.35478209958377,0 173.4617259153814,-41.35477287307613,0 173.4617459401653,-41.35477212706785,0 173.4618497099115,-41.35472082829534,0 173.4619539866992,-41.35465469630564,0 173.4620305129531,-41.35460901669827,0 173.4621353684828,-41.3545642510573,0 173.4622139062824,-41.35450046328488,0 173.4622165014637,-41.35443064631422,0 173.4621423195071,-41.35437926105904,0 173.4621198607471,-41.3543223481611,0 173.4624355186697,-41.35404541654968,0 173.462632157096,-41.35386771519215,0 173.4627449004721,-41.35381122896401,0 173.4628526911727,-41.35373520333617,0 173.4629328178739,-41.353683655472,0 173.4630399369552,-41.35366018568434,0 173.4632131085401,-41.3536794614675,0 173.4632719482686,-41.35364116281787,0 173.4633508224071,-41.35355566178012,0 173.4634146960972,-41.35346664595355,0 173.4635093288964,-41.35328367536324,0 173.4635359801222,-41.353215608029,0 173.4635742057398,-41.35319289891155,0 173.4635923117143,-41.35312986343081,0 173.46359666437,-41.35307915716317,0 173.4636347165238,-41.35302140087305,0 173.4636010318485,-41.35296415515168,0 173.4635921437128,-41.35296633387677,0 173.4636181204953,-41.35293347923152,0 173.4636317842953,-41.35293229912906,0 173.4636524065143,-41.35290447249694,0 173.4636788071811,-41.35286717626164,0 173.463672436608,-41.35285351480572,0 173.4636638065197,-41.35280900135381,0 173.4636600328201,-41.35280078537113,0 173.4636454457858,-41.35279466579088,0 173.4636358070523,-41.35277849536011,0 173.4636644806051,-41.35277899416568,0 173.4637191257072,-41.35273918088122,0 173.4637016883246,-41.35267757578043,0 173.4636686675277,-41.35264513626361,0 173.4636280125691,-41.35263507727333,0 173.4635959184681,-41.35263080181735,0 173.4635325491564,-41.3525260287953,0 173.463511429275,-41.35246936297182,0 173.4634684226229,-41.35243918760261,0 173.463449901101,-41.35239862148433,0 173.4633548565293,-41.35232528468981,0 173.4633126891957,-41.35231078369807,0 173.4633030541656,-41.35232225859545,0 173.4632888863011,-41.35230105397495,0 173.4632553586038,-41.35225067855296,0 173.4632013006949,-41.35217499048299,0 173.4631634074616,-41.35212410925684,0 173.4631564499696,-41.35207264683478,0 173.463123435575,-41.35204440289701,0 173.4631209180563,-41.35204339516422,0 173.4631251087243,-41.35198480155823,0 173.4631552817837,-41.35195387577866,0 173.4631752251237,-41.35192118872718,0 173.4631755588672,-41.35191599177325,0 173.4631480774566,-41.35188765441121,0 173.4630612390914,-41.35185949914037,0 173.4630612349162,-41.35184541479664,0 173.4629945225797,-41.3517509479511,0 173.462995948222,-41.35168322451167,0 173.4629984516402,-41.35167735226012,0 173.4629688701913,-41.35164768116544,0 173.4629627532071,-41.35164969556266,0 173.462937189304,-41.35159990953108,0 173.4629613269314,-41.35153662557521,0 173.4629262108264,-41.35149311846099,0 173.4629044975231,-41.35145397838582,0 173.4629031581223,-41.35142656358838,0 173.4628146371231,-41.35139027468001,0 173.4628668568597,-41.35132153897443,0 173.4628523608452,-41.35122087553511,0 173.4627911716376,-41.35121190677744,0 173.4626956240098,-41.35115850807749,0 173.4626602123736,-41.35116319660267,0 173.4626506884022,-41.35114459445947,0 173.462604178753,-41.35110201399532,0 173.4625973812688,-41.35107679107067,0 173.4625667121655,-41.35101820067568,0 173.4625667890615,-41.35099849703328,0 173.4625561435227,-41.35094083590762,0 173.4625096290224,-41.35091459980804,0 173.4625244651823,-41.3508676607668,0 173.4625289950447,-41.35083530599646,0 173.4625548073397,-41.35078753106409,0 173.4625542141211,-41.35073530438853,0 173.4625864941491,-41.35067412168723,0 173.4626340142299,-41.35061007903832,0 173.4626430636924,-41.35060371208533,0 173.462590683666,-41.35054202025619,0 173.462506027445,-41.35040556129842,0 173.462473751299,-41.3503510740064,0 173.4624413205204,-41.35028486297124,0 173.4623677223813,-41.35026483110809,0 173.462340651021,-41.35023364638071,0 173.4623099700283,-41.35018511389999,0 173.4622954719802,-41.35013013358445,0 173.4622843280162,-41.35011889445942,0 173.4622193713387,-41.35009224500036,0 173.4622456856444,-41.35007522924612,0 173.4621914515217,-41.35003876700488,0 173.4621517289172,-41.34999953696121,0 173.4621080737833,-41.3499310919614,0 173.4620255765179,-41.34989786696894,0 173.4620092364045,-41.34985620281521,0 173.4620068838677,-41.34983759884594,0 173.4619894525412,-41.34980407027675,0 173.4619678283112,-41.34977246725892,0 173.4619482192198,-41.34975553501498,0 173.4619182932656,-41.34967473488278,0 173.4618866884661,-41.34962226154,0 173.4618620541601,-41.34959586709643,0 173.461821983304,-41.34958882177386,0 173.4618008660277,-41.34959544336741,0 173.4617490586003,-41.34959493692615,0 173.4617343888965,-41.3495511050963,0 173.4617401705506,-41.34952872220104,0 173.4617305406971,-41.34947256028696,0 173.4617719395927,-41.34938589459748,0 173.4617262682513,-41.34933836699989,0 173.4617313764014,-41.34928782888726,0 173.4617603750708,-41.34921884362947,0 173.4618135993161,-41.34918103662844,0 173.4617926471431,-41.34914130867158,0 173.4617347279181,-41.34911775634762,0 173.4616701872426,-41.34911784052063,0 173.4616178017267,-41.34909788611379,0 173.4615652509315,-41.34910208367116,0 173.4615246797174,-41.34910200136526,0 173.4614958451417,-41.34909353450244,0 173.4614485748897,-41.34908715655985,0 173.4613825201957,-41.34908104306911,0 173.4613152156238,-41.34908430881504,0 173.4612701187191,-41.34909319456349,0 173.4612067491394,-41.349090005805,0 173.4611357607641,-41.34908925167771,0 173.4611244424737,-41.34907358227603,0 173.461136512064,-41.34901700188144,0 173.4611117902556,-41.34896779664079,0 173.4610312358991,-41.34893879584127,0 173.4610003086593,-41.34891138963343,0 173.4608105439978,-41.34888238831062,0 173.4605366278254,-41.34889109980124,0 173.4604082139287,-41.34889805496307,0 173.459940093463,-41.3488495216758,0 173.4598405905858,-41.34882437627935,0 173.4597626451543,-41.34881473422752,0 173.4596464756178,-41.34880727691469,0 173.4593540311507,-41.3488084490238,0 173.4591922622185,-41.34864139637055,0 173.4588481850407,-41.34835363827425,0 173.4587268918307,-41.34828809117524,0 173.4585962254934,-41.34822347305888,0 173.4585028521697,-41.34812397540597,0 173.4583556714169,-41.3477735216024,0 173.4583569297671,-41.34771552440076,0 173.4582662317571,-41.34761401709224,0 173.4582736916772,-41.34751972316332,0 173.4582800573015,-41.34751058477276,0 173.4582659857711,-41.34749063119317,0 173.4582251624215,-41.34742818962292,0 173.4581858539174,-41.34734294092429,0 173.4581768051397,-41.34724948647522,0 173.4581808177613,-41.34714069043247,0 173.4581771358165,-41.34703373465492,0 173.4581431843534,-41.3469248537405,0 173.4580700209278,-41.34682712182813,0 173.4580216519662,-41.34673634329423,0 173.4579883730418,-41.34665361068133,0 173.4579516687491,-41.34657331294385,0 173.4579123529293,-41.34641455627363,0 173.4578919869767,-41.34633468172328,0 173.4578525968513,-41.34625639343435,0 173.4578023029003,-41.34619973355972,0 173.4578038906938,-41.345963274394,0 173.4577752231595,-41.34584425132082,0 173.457763073584,-41.34573956128617,0 173.4577774961902,-41.34563956754397,0 173.4577442974884,-41.34552515458356,0 173.4578699452803,-41.34532524500695,0 173.4578125313976,-41.34527042309167,0 173.4578261902799,-41.34518275034726,0 173.4579525866385,-41.34496339555674,0 173.4580663279469,-41.3447715382368,0 173.4581087420445,-41.34471210981783,0 173.4581560220655,-41.34447908978907,0 173.4581788146778,-41.3443663564471,0 173.458201286973,-41.34426233297864,0 173.4582353172288,-41.34416065862515,0 173.4582540850453,-41.3440583145094,0 173.4582808273246,-41.34397910994657,0 173.458328182169,-41.34387760769564,0 173.4583571905299,-41.34378749751845,0 173.4584169538635,-41.34363871593311,0 173.4584647316986,-41.34350863061873,0 173.4585644734835,-41.34342305049277,0 173.4586073848936,-41.34334610449579,0 173.4586579282439,-41.34328232159398,0 173.458731942094,-41.34321895856146,0 173.4587668048497,-41.34318568311008,0 173.4588017630133,-41.34312649942459,0 173.4588612760675,-41.34310353583411,0 173.4590511232792,-41.34316229330528,0 173.4590567386779,-41.34317251802499,0 173.4590570750593,-41.34318995101239,0 173.4590476042089,-41.34321467969595,0 173.4590786182224,-41.3432363950705,0 173.4592343570459,-41.34313949894565,0 173.4597850400513,-41.34287756704971,0 173.4600254283746,-41.34281587859361,0 173.46015811443,-41.34277908241609,0 173.4602953240671,-41.34276550055417,0 173.4605045413375,-41.34261873857429,0 173.4605969874972,-41.34255512133008,0 173.4607177727685,-41.34250457599476,0 173.4607935535103,-41.34252712145831,0 173.4609368761411,-41.34243065105708,0 173.4610859133635,-41.34235713793459,0 173.461252545584,-41.34219201912033,0 173.4613268891233,-41.34213711849127,0 173.4613723159462,-41.34207692913851,0 173.4614519433801,-41.34203083205595,0 173.4615153114028,-41.34195791043877,0 173.4616019834134,-41.34188373423,0 173.4616216841336,-41.34179957677186,0 173.461675829725,-41.34169455270162,0 173.4617237650234,-41.34163948571053,0 173.4617685345894,-41.34154861872457,0 173.461743716951,-41.3415399916714,0 173.4617256138376,-41.34151593005788,0 173.4617474919516,-41.34141518522633,0 173.4617636718519,-41.34131284187269,0 173.4618281242607,-41.34115416995332,0 173.461882022479,-41.34106331222263,0 173.4619998760192,-41.34084538243162,0 173.4620293721316,-41.34072862374994,0 173.4620836038429,-41.34063599908093,0 173.4621097645825,-41.34053776722548,0 173.4621015410739,-41.34052535525177,0 173.4621332272172,-41.34046550809624,0 173.4621808345577,-41.34037742101704,0 173.4621956717468,-41.3402676993902,0 173.4622399254518,-41.34016309217578,0 173.4622735443322,-41.34006527260198,0 173.4622846049282,-41.33996913617596,0 173.4623172164561,-41.33985548064759,0 173.462359795473,-41.33976763797453,0 173.462403291814,-41.33966604228938,0 173.4624583615666,-41.33956705644862,0 173.4625248340981,-41.3394958953832,0 173.4625705915078,-41.33940159306467,0 173.4626801481441,-41.33920923440739,0 173.462793392958,-41.33910001240201,0 173.4629248126062,-41.33898945791474,0 173.4630072049239,-41.33888183523906,0 173.463072000635,-41.33878301714509,0 173.4631342743598,-41.33866901862385,0 173.4632137368731,-41.33855418523709,0 173.4632800368756,-41.33845033648593,0 173.463343161179,-41.33835863921566,0 173.4634098725603,-41.33823852628384,0 173.4634716517433,-41.33812050403493,0 173.4635395411284,-41.33801506338045,0 173.4636096202641,-41.33789822365865,0 173.463793008416,-41.33759186264271,0 173.4638783444097,-41.33753117995073,0 173.4640694472166,-41.33738273600149,0 173.4641275347221,-41.33723437152032,0 173.4641730529328,-41.33715910630603,0 173.4642210797544,-41.33703790534582,0 173.4642080016169,-41.33692466589995,0 173.4642064100394,-41.33684964201429,0 173.464221830238,-41.33679113804274,0 173.4642667549204,-41.33670640181414,0 173.464331385277,-41.33660506239323,0 173.4643856187608,-41.33648821314115,0 173.4644131959169,-41.33641881845462,0 173.4644230842393,-41.3364029754909,0 173.464433558423,-41.33635486467964,0 173.4646138517698,-41.33618881288987,0 173.4646768006388,-41.33614917360922,0 173.4647188833027,-41.33612595216652,0 173.4647617890372,-41.33609040938438,0 173.4647713520346,-41.33613877350364,0 173.4648028702823,-41.33611999763725,0 173.4648452822094,-41.3360637544845,0 173.4647886169969,-41.33601489421241,0 173.4647801480095,-41.33600156463105,0 173.4647926409216,-41.33595688566115,0 173.4648079806738,-41.33591087196817,0 173.464810770178,-41.3359081953291,0 173.4648436903823,-41.3358766724369,0 173.4648452826204,-41.33586007837687,0 173.4648606941915,-41.33586687007095,0 173.4649602757417,-41.33590894891365,0 173.4651781189396,-41.33574482620084,0 173.4652739289656,-41.33563159259508,0 173.4653691475314,-41.33552597908299,0 173.4656131371581,-41.33533395213448,0 173.465784630663,-41.33525591294391,0 173.4659327471699,-41.33507016788454,0 173.4659939314465,-41.33499079586451,0 173.4664639912439,-41.33460162477694,0 173.4665835905897,-41.33449777602723,0 173.466979302273,-41.33424975720803,0 173.467168655532,-41.33420768229514,0 173.4674532219683,-41.33390123334306,0 173.4675575764973,-41.33380274920156,0 173.4677315741882,-41.33346353284646,0 173.4677949444391,-41.33332556413672,0 173.4678812010359,-41.33319892228779,0 173.4679656849683,-41.33305307060037,0 173.4679565451147,-41.33283715769595,0 173.4675254743887,-41.33248318189331,0 173.4674274830605,-41.33238838404138,0 173.4671567591544,-41.33213424158568,0 173.4671518981222,-41.33212276121137,0 173.4672443500395,-41.33196156913814,0 173.4672378069516,-41.33187423742128,0 173.4672282545754,-41.33178052517176,0 173.4672269072078,-41.33167608118903,0 173.4670961525643,-41.3315077701433,0 173.466622493178,-41.33109630372422,0 173.466560633568,-41.33102195378335,0 173.4663757383028,-41.33088726003187,0 173.4661813659854,-41.33081106331278,0 173.4658102101118,-41.3306286669816,0 173.4656096398367,-41.33051375504048,0 173.4652644771606,-41.32989809304581,0 173.4652276786763,-41.32980782086872,0 173.4651302746934,-41.329649568516,0 173.4650460388774,-41.32963565873721,0 173.4649463797023,-41.3295574522093,0 173.4648382579279,-41.32947170610397,0 173.464761227102,-41.32937321999886,0 173.4646888879114,-41.3293081766463,0 173.4645997078577,-41.32921135996315,0 173.4645019758043,-41.32912653542202,0 173.4643847980585,-41.32905419734045,0 173.4643604034772,-41.3290506746731,0 - - -
- - Pelorus Track Richmond Range - - - - - - - - - - - - - - -
Pelorus Track Richmond Range
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)4.793
NAMEPelorus Track Richmond Range
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1826.444
Tokm1831.237
categoryTramping Track
CycleProhibited
walkidRichmond Alpine Track
GuidebookNelson Marlborough
colourred
mapNamemap081
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.3927810448142,-41.38422257505116,0 173.3928601352312,-41.38415803126467,0 173.3930115964797,-41.38419977326883,0 173.3931067307881,-41.38426297267325,0 173.3931648174491,-41.38425048334158,0 173.393705029555,-41.38442105638232,0 173.3940574904192,-41.38434100724096,0 173.3946333279233,-41.38435693379592,0 173.3951260935439,-41.38415584904721,0 173.3952891263991,-41.38407429585573,0 173.3954223989465,-41.38406826135734,0 173.3955571303983,-41.38413668031125,0 173.3956519558901,-41.3842413912115,0 173.3960093348004,-41.38411656848154,0 173.3968624370801,-41.38374770794545,0 173.3972508535505,-41.38344315356525,0 173.3974442822447,-41.38323132926202,0 173.397687440265,-41.38310082282278,0 173.3979125789134,-41.38283813384711,0 173.398569023849,-41.38266579834929,0 173.3993077464136,-41.38232088685312,0 173.3999545780666,-41.38221108422027,0 173.4002210381417,-41.38209583318422,0 173.4011769942003,-41.38202039579051,0 173.4013521894939,-41.3819527781566,0 173.4013006770589,-41.38196429028616,0 173.4013900266768,-41.38186998963635,0 173.4015769578505,-41.3818660262459,0 173.4017763847585,-41.38178905546873,0 173.4027873263227,-41.38176231682961,0 173.4034353305437,-41.38159736124154,0 173.4041380699989,-41.38135294460229,0 173.4046568251828,-41.38126133098355,0 173.4055726322825,-41.38053889407403,0 173.4060740373322,-41.37994059389741,0 173.4066714994789,-41.37951688894199,0 173.4069083723302,-41.37913819476315,0 173.4071004852654,-41.3786480207444,0 173.4071430655386,-41.37861063802079,0 173.407464931144,-41.37842321858526,0 173.4086590168695,-41.37753138365273,0 173.4089943770061,-41.37712829844747,0 173.4104376562579,-41.37638373339915,0 173.410714594741,-41.37602012649572,0 173.4118315959145,-41.37518140548615,0 173.4118862733734,-41.37517969741564,0 173.4119392426424,-41.37510057403443,0 173.4121310527513,-41.37495654718128,0 173.4121532152616,-41.37481295839029,0 173.4124676347996,-41.37513208879677,0 173.4125406452124,-41.3750922719186,0 173.412871650834,-41.37513871080218,0 173.4130296507198,-41.37491365950348,0 173.4131578890646,-41.37490427260974,0 173.4133010510902,-41.37481492356943,0 173.4132762402423,-41.37475867631225,0 173.413308426648,-41.37474988187335,0 173.4133057498502,-41.37464854133827,0 173.4133455674487,-41.37462700432249,0 173.4135421189836,-41.37464511057449,0 173.4136382524536,-41.37470729957484,0 173.413732718925,-41.37469397099041,0 173.4137364935374,-41.37466480875784,0 173.4140192960277,-41.3746405006404,0 173.4141952347087,-41.37475541818053,0 173.4145287477227,-41.37482054669941,0 173.4146326750626,-41.37488433716983,0 173.4148446393664,-41.37485684853505,0 173.4149294020749,-41.37481367477131,0 173.4153199984121,-41.37481191624559,0 173.4154827673003,-41.37487377671618,0 173.4158918403688,-41.37486481009744,0 173.4178978858287,-41.37550748926046,0 173.418153198856,-41.37541704859461,0 173.4185062441968,-41.3747363546637,0 173.4186775703844,-41.37490256789953,0 173.418725682373,-41.37485705389123,0 173.4188156205714,-41.37492109144925,0 173.4193318619871,-41.37501547138059,0 173.4195319505315,-41.37455218729598,0 173.4197954652975,-41.37469863600921,0 173.420523181484,-41.37469352264353,0 173.4207661735171,-41.37426487244296,0 173.4211249180748,-41.37404082422836,0 173.4212812405467,-41.37413646155549,0 173.4213542476491,-41.37412715781742,0 173.4215827383536,-41.37417904167349,0 173.4216622349474,-41.37428783990173,0 173.4222694673321,-41.37350949504484,0 173.4225148891353,-41.37363472073714,0 173.4227573781487,-41.37323867570976,0 173.4233878640325,-41.37303667230688,0 173.4235577659728,-41.372907255201,0 173.4239701556984,-41.37269401964598,0 173.4241626876773,-41.37268672738481,0 173.4242879968551,-41.37253627230918,0 173.4246320747128,-41.37247307307877,0 173.4249828569423,-41.37225925051184,0 173.4252939929934,-41.37216218789108,0 173.4262183498673,-41.37170269222815,0 173.4272884674643,-41.37171593558467,0 173.4280490414404,-41.37153798731589,0 173.4283015880538,-41.37160638383876,0 173.4288257913672,-41.37130597663944,0 173.4288822857297,-41.37136699723112,0 173.4290426312857,-41.37120698620305,0 173.4289970339043,-41.37080758878008,0 173.4293363336679,-41.37060608751568,0 173.4297281872917,-41.37020945588831,0 173.430628822697,-41.37017643159086,0 173.4308933554773,-41.37029486809522,0 173.4313914930854,-41.37033241828696,0 173.4319811588276,-41.3705642622407,0 173.4323669785834,-41.37066962211339,0 173.4329866519741,-41.37059317930447,0 173.4330778478539,-41.37069887569685,0 173.4339258452645,-41.37102543417695,0 173.4340896275421,-41.37116189179905,0 173.4343300200484,-41.37145441979188,0 173.4344066302086,-41.37191106660004,0 173.434586757576,-41.37231976759946,0 173.4345958997315,-41.37273844424227,0 173.4345316964505,-41.37283533395816,0 173.4344972372874,-41.37293617287255,0 173.434469324838,-41.37299996033786,0 173.4346074562893,-41.37351427467416,0 173.434700751788,-41.37362197769772,0 173.4348038434985,-41.3736849343064,0 173.4350802830047,-41.37360932440851,0 - - -
- - Middy - Rocls Track - - - - - - - - - - - - - - -
Middy - Rocls Track
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)2.693
NAMEMiddy - Rocls Track
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1831.237
Tokm1833.93
categoryTramping Track
CycleProhibited
walkidRichmond Alpine Track
GuidebookNelson Marlborough
colourred
mapNamemap082
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.3695701573656,-41.37776087679293,0 173.3695723568525,-41.37783472494733,0 173.3695772976675,-41.37785257479665,0 173.369620880369,-41.37789222058525,0 173.3696590203289,-41.3779227347962,0 173.3696944723797,-41.37796430548256,0 173.3697244791291,-41.37800051879898,0 173.3697564162849,-41.37803127719948,0 173.3697697457398,-41.37806991939932,0 173.3697892789437,-41.37811669266387,0 173.3698267397311,-41.37814972032538,0 173.3698718312785,-41.37818332786424,0 173.3699117281329,-41.37822858632109,0 173.3699585870336,-41.378264043713,0 173.3699928649001,-41.37831148924418,0 173.3700347781642,-41.3783518878699,0 173.3700830559783,-41.37838214415068,0 173.3701358711504,-41.37840502928835,0 173.3701735804639,-41.37842699017409,0 173.3702073668527,-41.37843981373047,0 173.3702205255261,-41.37846915515559,0 173.3702690557369,-41.37849538593828,0 173.3703340996553,-41.37850528318541,0 173.370399312101,-41.37851726871809,0 173.3704588204658,-41.37853353228014,0 173.370518079741,-41.37853729763911,0 173.3705682872082,-41.37855138422502,0 173.3706063434286,-41.37856236626391,0 173.3706479130312,-41.37857963240221,0 173.3706943517614,-41.37860184423663,0 173.3707255314088,-41.37862732813428,0 173.3707657575437,-41.37866303085156,0 173.3708139614901,-41.37868649801553,0 173.3708460629746,-41.37870603568535,0 173.3708665906666,-41.37872539356494,0 173.3708784989295,-41.3787661299823,0 173.3708846153387,-41.3788015894838,0 173.3708717891159,-41.37884030594169,0 173.37085913242,-41.37887307862329,0 173.3708452257753,-41.37889613070155,0 173.3708346572851,-41.37892388120856,0 173.3708495760549,-41.37895773691127,0 173.3708613921803,-41.37899277360697,0 173.3708733863947,-41.37905957779892,0 173.3708921619584,-41.37910752339436,0 173.3708836922826,-41.37917063826028,0 173.3708775718025,-41.37920919889272,0 173.3708501670108,-41.3792407120957,0 173.3708318877736,-41.37926435384918,0 173.3708203267123,-41.37926854181725,0 173.370802053436,-41.37930818558513,0 173.3707989493249,-41.37934322351808,0 173.3708052326656,-41.37937859331031,0 173.3707940042397,-41.37942092476799,0 173.3708209127848,-41.37945235572123,0 173.3708764775994,-41.37946434504392,0 173.3708950100151,-41.37950315139255,0 173.3709518390793,-41.37960649998557,0 173.3709863664228,-41.37962351757066,0 173.3710755493159,-41.37965452609342,0 173.3711141976542,-41.37967087368874,0 173.3711774773018,-41.37969837162982,0 173.3712731940149,-41.37973910336564,0 173.3713083186778,-41.37976039574059,0 173.3713529862026,-41.37979040190535,0 173.3713933133585,-41.37981613623536,0 173.3714257412636,-41.37983826597873,0 173.371474024951,-41.37985033256309,0 173.3715348770698,-41.37986919352585,0 173.371601596665,-41.37987254691239,0 173.3716232253213,-41.3798686064936,0 173.3716352948941,-41.37986970247458,0 173.3716376428891,-41.37987271154218,0 173.3716374735496,-41.37987447758323,0 173.371642664461,-41.37986617651068,0 173.3716259071736,-41.37986282575064,0 173.3716506275129,-41.37985997336734,0 173.3716948864305,-41.37986207511509,0 173.371736635553,-41.37987916822814,0 173.3717699930668,-41.37990490692626,0 173.3717948060555,-41.37993784869357,0 173.3718227974601,-41.37995980349468,0 173.3718854055835,-41.3800059877156,0 173.3719149989608,-41.38004924303838,0 173.3719610098841,-41.38008846572443,0 173.3720084519979,-41.38012300160334,0 173.3720474304156,-41.38014051790999,0 173.3720756761927,-41.38017580850888,0 173.3720867462556,-41.38020757861597,0 173.3721143962933,-41.38023464897898,0 173.3721589059525,-41.3802664208322,0 173.3722377768375,-41.38033020268826,0 173.3722673708503,-41.3803649033819,0 173.3722780111173,-41.38041796256141,0 173.3723139664363,-41.38044218752223,0 173.3723319138171,-41.38047027105148,0 173.3723378594065,-41.3805091620177,0 173.3723392060812,-41.38055299323479,0 173.3723471612813,-41.38061124677769,0 173.3723473284472,-41.38069842285983,0 173.3723640980291,-41.3807552525982,0 173.372372646544,-41.38078710289369,0 173.3723935091714,-41.38084443371952,0 173.3724231810002,-41.38089523433489,0 173.3724464892158,-41.38093890528906,0 173.3725148843837,-41.38106362044815,0 173.3725365100722,-41.38109095341227,0 173.3725489917227,-41.3811248167747,0 173.372552008347,-41.38117015585099,0 173.3725183221802,-41.38124123952113,0 173.3725233434966,-41.38129019227139,0 173.372544716113,-41.38132555814156,0 173.3725567024461,-41.38136713092269,0 173.3725747255094,-41.38140862200194,0 173.3725948372381,-41.38145145745408,0 173.3726158856561,-41.38149915218636,0 173.3726201519038,-41.38153083527119,0 173.3726437087414,-41.38157190307587,0 173.3726577890651,-41.38160945346571,0 173.3726655043092,-41.38165891091779,0 173.3726748945645,-41.38167475642806,0 173.3726774921515,-41.38167307350216,0 173.3726826855369,-41.38168028709628,0 173.372683355036,-41.38168464371393,0 173.3726815096495,-41.3816838029716,0 173.3726763146585,-41.38168280193637,0 173.3726718711522,-41.38168145617683,0 173.3726683552578,-41.38168128741103,0 173.3726661721533,-41.38168204211483,0 173.3726642442888,-41.38168372287158,0 173.3726634870165,-41.38168514852714,0 173.3726643279759,-41.38168581237049,0 173.3726664185583,-41.38168540025678,0 173.3726694402623,-41.38168489504935,0 173.3726723701436,-41.38168506571294,0 173.3726753018819,-41.38168556064689,0 173.3726784972906,-41.38168615380769,0 173.3726807552702,-41.38168783092155,0 173.3726814280883,-41.38169067424701,0 173.3726820165317,-41.38169319357353,0 173.3726831048563,-41.38169528791954,0 173.3726836064378,-41.38169746613904,0 173.3726840250333,-41.38169956265833,0 173.3726841087673,-41.38170166026211,0 173.3726842757077,-41.38170366842022,0 173.3726846079561,-41.3817055130027,0 173.3726853704923,-41.38170710397951,0 173.372686537755,-41.38170836126402,0 173.3726878817699,-41.38170936576414,0 173.3726894753059,-41.38170987403868,0 173.3726906468589,-41.38170978917731,0 173.3726919832169,-41.38170945156581,0 173.3726936661983,-41.38170886962649,0 173.3726954206756,-41.38170845049577,0 173.3726971045828,-41.38170803069176,0 173.3726986923016,-41.38170752112521,0 173.3727002889358,-41.38170668725331,0 173.3727018742941,-41.38170576424157,0 173.372703388873,-41.38170501170238,0 173.3727048084777,-41.38170459275423,0 173.37270599056,-41.38170425654421,0 173.372706825817,-41.38170392055988,0 173.3727077452982,-41.38170367437661,0 173.3727084965679,-41.38170350079815,0 173.372723331547,-41.3817008243261,0 173.3727231640986,-41.38170501160717,0 173.3727226632461,-41.38170526544157,0 173.3727252618143,-41.38171255139329,0 173.3727094192415,-41.38174633352467,0 173.3727068214598,-41.38177751729594,0 173.3726989465219,-41.3817931025551,0 173.3727172187943,-41.38181724954055,0 173.372742865597,-41.38184499279502,0 173.3727641570828,-41.38192117779344,0 173.3728157813687,-41.38196124667218,0 173.3728642301821,-41.38200022688139,0 173.3729078214664,-41.38204053792663,0 173.3729342229786,-41.38208772883321,0 173.3729581892751,-41.38212712973598,0 173.3730472120657,-41.38219904711566,0 173.3731225593078,-41.38221388067606,0 173.3731783875082,-41.38224028471744,0 173.3732448528687,-41.38225981114254,0 173.3733070481937,-41.38227674907817,0 173.3734476159724,-41.38230231507918,0 173.3734775818514,-41.38229680695355,0 173.3734830666718,-41.38229619554728,0 173.3735215434614,-41.38230935509102,0 173.3735506282318,-41.38233399829382,0 173.3735797914291,-41.38235562458088,0 173.3736132387378,-41.38237162791177,0 173.3736506226879,-41.38239443450858,0 173.3736917726637,-41.38242787316742,0 173.373732927929,-41.38245805193571,0 173.3737750085007,-41.38248042888756,0 173.373825377449,-41.38250138452478,0 173.3738772645433,-41.38253055645405,0 173.3739292338381,-41.38255528013576,0 173.3739840523187,-41.38259342037836,0 173.37402335793,-41.3826157161832,0 173.3740546323293,-41.38263859655566,0 173.3740946867041,-41.38265150757352,0 173.3741101181362,-41.38268881017999,0 173.374109196822,-41.38270355413444,0 173.3741107018776,-41.38271386926461,0 173.3741235197028,-41.3827437959249,0 173.3741033258757,-41.3827584575142,0 173.3741004753812,-41.3827681832949,0 173.3740993042639,-41.38277690377007,0 173.3740931004381,-41.38278562168615,0 173.3741072599746,-41.38279047489507,0 173.3741278857762,-41.38279483958473,0 173.3741577278851,-41.38280338896492,0 173.3741879811814,-41.38282107612789,0 173.3741992948359,-41.38286399304488,0 173.3742287184469,-41.38290405149945,0 173.3742616565965,-41.38294193759239,0 173.3743036553001,-41.38296038008913,0 173.3743536036681,-41.38300195799026,0 173.3744282091728,-41.38302508641578,0 173.3745174689951,-41.3830410997238,0 173.3745351530108,-41.38306884957122,0 173.374566754993,-41.38310706419645,0 173.3745711133626,-41.38311251582582,0 173.3745924047639,-41.38313322258247,0 173.3746108419613,-41.38315861987952,0 173.3746276128336,-41.38318979467681,0 173.3746608079095,-41.38320111546057,0 173.3747043871046,-41.38321586134811,0 173.3747630619008,-41.38322953118665,0 173.3748261793542,-41.38324436742385,0 173.3748663242238,-41.38325836689832,0 173.374884182713,-41.38326398261551,0 173.374907062676,-41.38327596746658,0 173.3749230747405,-41.38331243036039,0 173.3749385003613,-41.38331904482993,0 173.374976295135,-41.38334469516054,0 173.3750155278478,-41.38336020182464,0 173.3750465311008,-41.38335408730296,0 173.3750893705991,-41.38336682675261,0 173.3751394058456,-41.38338342411367,0 173.3751807259227,-41.38340002284282,0 173.3752092262718,-41.38340790075456,0 173.3752437680247,-41.3834206392835,0 173.3752675634521,-41.38344226462763,0 173.3752898579858,-41.38346473256896,0 173.3753155138782,-41.38350228089924,0 173.3753416650661,-41.38353673079011,0 173.3753607748895,-41.38354779015306,0 173.3753888540038,-41.38356372039615,0 173.3754078779633,-41.3835850090811,0 173.3754162629827,-41.38358769301823,0 173.3754207039452,-41.383603536431,0 173.3754440860171,-41.38361752643034,0 173.3754495331834,-41.38361451092528,0 173.3754550696952,-41.38360831543969,0 173.375461101787,-41.38360302810866,0 173.3754671455416,-41.38359976744673,0 173.3754722548273,-41.38360059749437,0 173.3754773659375,-41.38360361547954,0 173.3754817191363,-41.3836081492184,0 173.3754851573875,-41.38361351374525,0 173.3754880938042,-41.38361896097225,0 173.3754904374023,-41.38362323104226,0 173.3754918643478,-41.38362616196766,0 173.3754925376199,-41.38362885214287,0 173.3754934534031,-41.38363211801939,0 173.3754938823507,-41.38363412441573,0 173.3754950559721,-41.38363647157419,0 173.3755105550968,-41.38366665054405,0 173.3755176009895,-41.38366732113451,0 173.3755408957976,-41.38365969133302,0 173.3755559062595,-41.38365835605515,0 173.3755984892644,-41.38367427494228,0 173.3756474376971,-41.38368484233163,0 173.3756899354259,-41.38369196372558,0 173.3757329231129,-41.38369506701434,0 173.3757484385557,-41.38369003784479,0 173.3757942865798,-41.3836978328408,0 173.3758482671262,-41.38369104045226,0 173.3758872371319,-41.38366438664463,0 173.3759463309551,-41.38365081549289,0 173.3759977950638,-41.3836261655541,0 173.376045903844,-41.3836172043106,0 173.3760616729198,-41.38357067980047,0 173.3760739859635,-41.38354913658903,0 173.3761180831112,-41.38353287604607,0 173.3761609057509,-41.38350673199511,0 173.3761866415985,-41.38345928403476,0 173.3762143910705,-41.38343397199808,0 173.3762541124488,-41.38340908110185,0 173.3762594822069,-41.38341360158293,0 173.3762744000734,-41.38340866437014,0 173.3762748256627,-41.38341008527927,0 173.376273648998,-41.3834090811763,0 173.3762732313448,-41.38340924468012,0 173.3762747377229,-41.3834114277026,0 173.3762858011855,-41.38341629076633,0 173.3763059175718,-41.38338368228031,0 173.3763267842637,-41.38334202229319,0 173.3763663460986,-41.38331872532553,0 173.3764297199979,-41.38329022781959,0 173.3764885561785,-41.38326918271773,0 173.3765256095948,-41.38324831694593,0 173.3765660120938,-41.38322978939571,0 173.376614042137,-41.38321118371939,0 173.3766658372993,-41.38318411025084,0 173.3766969298537,-41.38316408273102,0 173.3767428648116,-41.38315569489124,0 173.3767895582167,-41.38314589125172,0 173.3768432792616,-41.38312946470212,0 173.3769088350848,-41.38312099542337,0 173.3769599612,-41.3831002905942,0 173.376994918167,-41.38309543266743,0 173.3770131787254,-41.38308781004909,0 173.3770420146335,-41.38308730212203,0 173.3771046295469,-41.38307263882275,0 173.3771693445213,-41.3830509264562,0 173.3772248247052,-41.3830349164221,0 173.3772794808526,-41.38301890996061,0 173.3773131773688,-41.38300684277026,0 173.3773166978472,-41.38300365243993,0 173.377363889166,-41.38298898462781,0 173.3774047835706,-41.38298982513781,0 173.377439910998,-41.38299812213356,0 173.377466225395,-41.3830085188813,0 173.3774948039969,-41.38303425266219,0 173.3775279988865,-41.38305394699609,0 173.3775511365092,-41.38307959863051,0 173.3775944747611,-41.38309166985107,0 173.3776258127771,-41.38309593570907,0 173.3776839838274,-41.38309459542541,0 173.3777332766113,-41.38310247742876,0 173.3777854973423,-41.38312712557713,0 173.3778349486957,-41.38313760120544,0 173.3778698111376,-41.38314782566876,0 173.3778944607013,-41.38315344564337,0 173.3779277338194,-41.38315956063125,0 173.3779631899461,-41.38317523182036,0 173.3780024121279,-41.38320347876651,0 173.3780411353022,-41.38322175951608,0 173.3780605031324,-41.38325293518839,0 173.3780898380551,-41.38327724313246,0 173.3781241233623,-41.38329517813099,0 173.3781638499104,-41.38330909765514,0 173.3781886570466,-41.38332971922869,0 173.378234087396,-41.38334798687638,0 173.3782656900993,-41.38336508393113,0 173.3783140558182,-41.38337598538106,0 173.3783814416765,-41.38339291251509,0 173.3784377705039,-41.38338712904968,0 173.3784826974647,-41.38339467379178,0 173.3785168979362,-41.38337464456618,0 173.3785647544588,-41.38337816404355,0 173.3786209147988,-41.3833973600558,0 173.3786733019105,-41.38341739715356,0 173.3787199899201,-41.38342544043191,0 173.3787592959795,-41.38343281440599,0 173.3788019696704,-41.38342694869916,0 173.3788478078743,-41.38343281578194,0 173.3788997016124,-41.38343542107228,0 173.3789494886247,-41.38342309414596,0 173.3790138546702,-41.3834095130638,0 173.379071276127,-41.38341085791713,0 173.3791370718435,-41.38342351213358,0 173.3792102418836,-41.38343139769757,0 173.3792790581414,-41.38342233983588,0 173.3793544143992,-41.38341128050438,0 173.3794283445323,-41.38341412997257,0 173.3794848330941,-41.38341958336134,0 173.3795192824732,-41.38342636958272,0 173.3795710865884,-41.3834343325891,0 173.3796363878668,-41.38345469596472,0 173.37970101026,-41.38346073583493,0 173.379768478163,-41.38346249756799,0 173.3798191092694,-41.38346391850375,0 173.379863028886,-41.38347096160323,0 173.3799007464353,-41.38346820056211,0 173.3799435805927,-41.38347984830162,0 173.3799968856385,-41.38348881501716,0 173.3800555675826,-41.38350758854895,0 173.3801012434793,-41.38353525588935,0 173.3801523674669,-41.38353935841974,0 173.380199221502,-41.38354916513983,0 173.3802463370594,-41.38356526549656,0 173.3802742501189,-41.38358102305217,0 173.3803159828713,-41.38359861841708,0 173.3803563903099,-41.38361638839054,0 173.3803977096825,-41.38362460997315,0 173.3804170690436,-41.38362292640587,0 173.3804234459876,-41.38362988442012,0 173.3804285612489,-41.38362947117736,0 173.3804356752485,-41.38362519786413,0 173.3804430562661,-41.38362385024643,0 173.3804512662308,-41.38362519225943,0 173.380457051523,-41.38362502990987,0 173.3804620005093,-41.38362686821617,0 173.380478342487,-41.38364941698153,0 173.3804835400535,-41.38365922439945,0 173.3805075168281,-41.38366425243341,0 173.3805377762123,-41.38369082661063,0 173.3805736404252,-41.38370884572957,0 173.3805969461781,-41.38370934603945,0 173.3806397799146,-41.38369585237548,0 173.3806614081152,-41.38367079281746,0 173.3806781651151,-41.38366769461234,0 173.3806972809537,-41.38366937074191,0 173.3807073335324,-41.38367104893107,0 173.3807110218749,-41.38367205458778,0 173.38072560706,-41.3836738979313,0 173.380797275255,-41.38368872962443,0 173.3808348279489,-41.38367389321431,0 173.3808621487766,-41.38364489826763,0 173.3809457198198,-41.3836171529255,0 173.3809887998837,-41.38358420728402,0 173.3810182263208,-41.38353895199408,0 173.3810569425331,-41.3835204203432,0 173.3811126854305,-41.38351262881103,0 173.3811356532454,-41.38350852003279,0 173.3811955870342,-41.38347474563559,0 173.3812853492656,-41.38346745564054,0 173.3813212232753,-41.38348304333729,0 173.3813737855108,-41.38347926970967,0 173.3813938987246,-41.38344859698118,0 173.3813915553137,-41.38343828472741,0 173.3814262548247,-41.38342193619884,0 173.3814567598939,-41.38339595621062,0 173.3814573518417,-41.38336586071814,0 173.3814799778119,-41.38333744866792,0 173.3815114203929,-41.38332680101514,0 173.3815503906563,-41.38332353986302,0 173.3816058810355,-41.38332169304971,0 173.3816823284558,-41.3833173374415,0 173.3817859208554,-41.38327651268508,0 173.3818282503898,-41.38325665367112,0 173.3818598521849,-41.38324441194899,0 173.3819161756244,-41.38325229675159,0 173.3819640390877,-41.38324022712178,0 173.3820369565425,-41.38323762957199,0 173.3820786216425,-41.38322891148845,0 173.3821179261159,-41.38321717556903,0 173.3821593336358,-41.38324474817922,0 173.3822144105725,-41.38324583802704,0 173.3822730856417,-41.38321374176577,0 173.3823304140713,-41.38321147415117,0 173.3823663667668,-41.38320535922292,0 173.3824041774974,-41.38319588818148,0 173.3824296473875,-41.38320468414233,0 173.3824873168864,-41.38319102429166,0 173.3825325870332,-41.38315850315098,0 173.3826427160628,-41.38312137603364,0 173.3826675334043,-41.38310209648603,0 173.3827132082644,-41.38308599931467,0 173.3827637526968,-41.38307451493788,0 173.3828104483664,-41.38307770233,0 173.3828827016258,-41.38309036084121,0 173.3829102720236,-41.38310267889284,0 173.3829650031533,-41.38310192387448,0 173.3830147959254,-41.38312397542554,0 173.383081965033,-41.38312581728179,0 173.3831322210957,-41.38312246487427,0 173.3831713733387,-41.3831321068684,0 173.3831989478933,-41.38314308360302,0 173.3832421958006,-41.38315791653051,0 173.3832955050977,-41.38318407183154,0 173.3833509937143,-41.38318826649064,0 173.3834120941946,-41.38318273492016,0 173.3834713569603,-41.38318625038392,0 173.3835221549802,-41.38319371144223,0 173.3835834245987,-41.38319681481633,0 173.3836479666507,-41.38320544602923,0 173.3837093986705,-41.38321399660038,0 173.383760526774,-41.38320008769384,0 173.3838498814873,-41.38318055931463,0 173.383905457859,-41.38316672557918,0 173.3839586002071,-41.38316404776201,0 173.3840072072447,-41.38316907485037,0 173.3840652200562,-41.38318374199856,0 173.3841265705921,-41.38318433349539,0 173.3841838217171,-41.38320369429154,0 173.3842791255077,-41.38321408792004,0 173.3843543866996,-41.38322180109551,0 173.3843897635883,-41.38322984292309,0 173.3844212488536,-41.38323465590116,0 173.3844248867344,-41.38323521122516,0 173.384457907777,-41.38322867307755,0 173.3845064405686,-41.38323529364877,0 173.3845446535641,-41.38326228157155,0 173.384596708291,-41.38324124687453,0 173.3846238679546,-41.38324854143915,0 173.3846505240699,-41.38325582867363,0 173.3846823690969,-41.38324233330636,0 173.384718590591,-41.38322280891793,0 173.3847658586538,-41.38321350364789,0 173.3848120461654,-41.38321140716116,0 173.3848334230146,-41.38320101655471,0 173.3848881521431,-41.38321836953339,0 173.3849232715239,-41.38321903662607,0 173.3849656800251,-41.38322104937713,0 173.3850152180053,-41.38323404196207,0 173.385024105846,-41.38323269801157,0 173.3851116914669,-41.38325231084765,0 173.3851694402728,-41.38326069280928,0 173.3852035552197,-41.38326949525091,0 173.3852288759838,-41.38327929904546,0 173.3852618130705,-41.38330353094423,0 173.3853037296949,-41.38330730080561,0 173.3853369177135,-41.38330494857924,0 173.3853800769753,-41.38330243864776,0 173.3854239212763,-41.38328408562233,0 173.3854762190805,-41.38327813206139,0 173.3855041373774,-41.38325550059094,0 173.385539005112,-41.38322935267673,0 173.3856038789848,-41.38321292070476,0 173.3856377477192,-41.38319380925009,0 173.3856768813899,-41.38320428726305,0 173.3857116749152,-41.38321275489837,0 173.3857425240888,-41.38322122493442,0 173.3857797297293,-41.38321468228477,0 173.3858161086089,-41.38320990608802,0 173.3858580244547,-41.38319716119285,0 173.3858944876535,-41.38319876027543,0 173.3858948130585,-41.38318886342286,0 173.3859087321157,-41.38317897502927,0 173.3859456977995,-41.38315592668241,0 173.3859907028296,-41.38315005949785,0 173.3860487894431,-41.3831506419979,0 173.3861159254376,-41.38315920007108,0 173.3861729250366,-41.38315576155706,0 173.3862601837768,-41.38313363604268,0 173.3863166846945,-41.38312273362101,0 173.3863674794201,-41.383103123756,0 173.3864046006243,-41.38310254242865,0 173.3864666248027,-41.38312642499694,0 173.3865394718946,-41.38313623371384,0 173.3865937781064,-41.3831140186624,0 173.3866468386935,-41.38310563986089,0 173.3867456646781,-41.38310287300395,0 173.3867987999164,-41.38309700610133,0 173.3868247121457,-41.38309356996902,0 173.3868842958073,-41.38310681712134,0 173.3869426431059,-41.38312131955996,0 173.3870131329338,-41.38314302234843,0 173.3870888149794,-41.38319826818711,0 173.3871205066838,-41.38323221125103,0 173.3871562902422,-41.38327286651676,0 173.3872275430841,-41.38329432340088,0 173.3873557881966,-41.38330907140349,0 173.3874435455065,-41.38333732558499,0 173.3875118550727,-41.38337286659498,0 173.3875818413618,-41.38338199970881,0 173.3876369913548,-41.38337119036564,0 173.3876913154662,-41.38338041129781,0 173.3877521600993,-41.38337412255113,0 173.3877918930015,-41.38339097341115,0 173.3878156157486,-41.38339725283557,0 173.3878499845461,-41.38340663822955,0 173.3879098313599,-41.38341779510003,0 173.3879766311282,-41.38341778968176,0 173.3880481288208,-41.38342785330644,0 173.388109981905,-41.38342844098003,0 173.3881638792061,-41.38341795988585,0 173.3882249799716,-41.38340446573441,0 173.3882908699477,-41.38339004652507,0 173.3883620229708,-41.38333313322495,0 173.3884174270906,-41.38330858153674,0 173.3884769432798,-41.38327965806239,0 173.3885351175032,-41.38325635893202,0 173.3885953839003,-41.38324940422768,0 173.3887026667203,-41.38322291530891,0 173.3887565667806,-41.38319266041975,0 173.3887931952666,-41.38315292569877,0 173.3888238796645,-41.38314571861999,0 173.3888784444358,-41.38315117390166,0 173.3889433169026,-41.38316717645906,0 173.388983804534,-41.38318822100253,0 173.3890247057383,-41.38321042611274,0 173.3890351761696,-41.38321998111971,0 173.3890613317001,-41.38322727803126,0 173.3890730670761,-41.38323054324539,0 173.3892057515818,-41.38327430660455,0 173.3892616617735,-41.38328293593989,0 173.3893163886871,-41.3832914881801,0 173.3895033134842,-41.38329165819619,0 173.3895670179546,-41.38329005898175,0 173.38968411023,-41.38331730417153,0 173.3898014558554,-41.38330825041592,0 173.3898787336716,-41.38332728111611,0 173.3899645623204,-41.38334882203616,0 173.3900566033128,-41.38337941970126,0 173.3901941484401,-41.38344864887512,0 173.3902604506794,-41.3834818449719,0 173.3903162700968,-41.38351764195543,0 173.3903631205268,-41.38356919122071,0 173.3904245610763,-41.38363155144005,0 173.39047979727,-41.38367178116519,0 173.3905358677894,-41.38369952618444,0 173.3905827344099,-41.3837315441052,0 173.3906610139319,-41.38376415074927,0 173.3907387198273,-41.38381520057077,0 173.3907321795696,-41.38384947691947,0 173.3907568183458,-41.38391779524346,0 173.3907764351462,-41.38395374915822,0 173.3907957121293,-41.38398467977607,0 173.3908151539645,-41.38401317778041,0 173.3908268915236,-41.38404293599158,0 173.3908372879119,-41.38408040656385,0 173.3908196793043,-41.38412557918286,0 173.3907999045533,-41.38416832889656,0 173.3908015792518,-41.38419674221859,0 173.3908143212245,-41.38422046371948,0 173.3908377037008,-41.38422993957694,0 173.3909666152255,-41.38419716254294,0 173.3910102817282,-41.38417704430407,0 173.391118827766,-41.38419641018772,0 173.3911314846401,-41.38421569209302,0 173.3911335018934,-41.3842495529473,0 173.3911396175761,-41.38427478228786,0 173.3911556321358,-41.3843041205827,0 173.3911968717071,-41.3844236482818,0 173.391225032115,-41.38452347124789,0 173.3912344962238,-41.38456697824944,0 173.3912418749961,-41.38461994762477,0 173.3912462348298,-41.38467786974142,0 173.3912635793088,-41.38469739781327,0 173.391274985221,-41.38472145618483,0 173.391315549218,-41.3847409872626,0 173.3913479025742,-41.3847631116171,0 173.3913738959587,-41.38478331285165,0 173.3914049050445,-41.38480444191706,0 173.3914311314814,-41.38482161668727,0 173.3914659256662,-41.38484408490454,0 173.3914976021148,-41.38486679701434,0 173.3915331484411,-41.38489102634023,0 173.3915691891608,-41.38491592143669,0 173.3916022937761,-41.38493963750957,0 173.3916291194003,-41.38496117708657,0 173.3916504904507,-41.38497601734358,0 173.3916758009445,-41.38499001639408,0 173.3916933256637,-41.38501164165957,0 173.3917145337932,-41.38502723009239,0 173.3917387552498,-41.38504290734798,0 173.3917855236632,-41.38507643747799,0 173.3918063885074,-41.38508464263067,0 173.3918478054709,-41.38505413965575,0 173.3918931466579,-41.38501608573836,0 173.3919118413049,-41.3850010838563,0 173.3919553386989,-41.38496252366064,0 173.3919797285555,-41.38491801145364,0 173.3920653996909,-41.38483143030992,0 173.3921178637166,-41.38475867544481,0 173.3921209820094,-41.38473801667625,0 173.3921266255179,-41.38473614278114,0 173.3921756195178,-41.38472724383608,0 173.3922097289758,-41.38471693547589,0 173.3922639627425,-41.38469053126674,0 173.392310738636,-41.3846705820887,0 173.3923442654501,-41.38463856463399,0 173.3923623717796,-41.38459874781927,0 173.3923735125223,-41.3845802235171,0 173.3923866740913,-41.38455148039375,0 173.3924024378752,-41.38452825817187,0 173.3924368044848,-41.3844964909398,0 173.3924570005969,-41.38448081728115,0 173.39247192448,-41.38446908801515,0 173.39251382646,-41.38442985657592,0 173.3925419968184,-41.38437747131057,0 173.3925980704796,-41.38434285653646,0 173.3926602686348,-41.38431476846827,0 173.3927810448142,-41.38422257505116,0 - - -
- - Middy - Rocls Track - - - - - - - - - - - - - - -
Middy - Rocls Track
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)0.932
NAMEMiddy - Rocls Track
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1833.93
Tokm1834.863
categoryTramping Track
CycleProhibited
walkidRichmond Alpine Track
GuidebookNelson Marlborough
colourred
mapNamemap082
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.3612707061405,-41.37457367361775,0 173.3613410172871,-41.37463177094992,0 173.3615510581598,-41.37469505638364,0 173.3616757823871,-41.3749122283932,0 173.3617654665842,-41.3749802071946,0 173.3620175960955,-41.37508632403355,0 173.3620812942642,-41.37514399132737,0 173.3621910982065,-41.37539997492998,0 173.3622491913654,-41.37544892507383,0 173.362297131048,-41.37544708342504,0 173.3624705563458,-41.37564330169698,0 173.3626577981338,-41.37555270035361,0 173.3627697882941,-41.37556971407167,0 173.3628856222612,-41.37565563020869,0 173.3630520865098,-41.37570239789527,0 173.3631794028382,-41.37565186331297,0 173.3633268406868,-41.37572796453074,0 173.3637070437185,-41.37573970476089,0 173.3638848319526,-41.37579134370556,0 173.364103514648,-41.37577256378379,0 173.3641371187255,-41.37580290413434,0 173.3642193483537,-41.37580810522764,0 173.3641921017981,-41.37617766805418,0 173.3642229459923,-41.37619727461533,0 173.3643426459274,-41.37620524036181,0 173.3647295465433,-41.37638420327806,0 173.3651308761375,-41.37641924031649,0 173.3656517317984,-41.3765845356046,0 173.3662930272905,-41.37662041190853,0 173.3664599901077,-41.37655762864481,0 173.3667730590072,-41.37651723280143,0 173.3670094279427,-41.37642998167893,0 173.3670773185354,-41.37647934941007,0 173.3672246728074,-41.37641422254582,0 173.3675191324405,-41.37638564351042,0 173.3678264053357,-41.37676819379568,0 173.3678680688961,-41.37694488207395,0 173.3680021810025,-41.37709140184315,0 173.3682796142308,-41.37711797494425,0 173.3683320835939,-41.37717354978821,0 173.3684871520215,-41.37715829255125,0 173.3685932702985,-41.37720439600501,0 173.3686630835134,-41.37728956013127,0 173.3688877171519,-41.37736859826356,0 173.3690588856044,-41.37739768451577,0 173.3695051302041,-41.37740120939558,0 173.3695125883219,-41.3775209057607,0 173.3695694184051,-41.37759935620464,0 173.3695701573656,-41.37776087679293,0 - - -
- - Middy - Rocls Track - - - - - - - - - - - - - - -
Middy - Rocls Track
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)0.803
NAMEMiddy - Rocls Track
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1834.863
Tokm1835.666
categoryTramping Track
CycleProhibited
walkidRichmond Alpine Track
GuidebookNelson Marlborough
colourred
mapNamemap082
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.3555027005182,-41.36998259623603,0 173.3556155351223,-41.37026634755465,0 173.3558036267945,-41.37050003584747,0 173.3561788817658,-41.37065132834218,0 173.3565077062031,-41.37089994052254,0 173.3567862299088,-41.37103262362539,0 173.3568455703409,-41.37109289256905,0 173.3571343284253,-41.37147888639485,0 173.3571275414479,-41.37165909435691,0 173.3571901487493,-41.37192840843463,0 173.3572873771911,-41.37203602615506,0 173.35737789479,-41.37223577398357,0 173.3576007731371,-41.37233426285214,0 173.3577050190866,-41.37235072909007,0 173.3578466167545,-41.37249024945508,0 173.3578187800736,-41.37254222087264,0 173.3579715871866,-41.37265872595452,0 173.3580863370534,-41.37268119248494,0 173.3581753468849,-41.37264992562285,0 173.3582211997629,-41.37266475988521,0 173.3585723166531,-41.37288076380475,0 173.3586689608316,-41.37297691004147,0 173.3588257849167,-41.3730488271946,0 173.3589312304852,-41.37304614466022,0 173.3589992925614,-41.37299425737285,0 173.3590648368427,-41.37303600052165,0 173.3591826864286,-41.37301027176054,0 173.3592953385004,-41.3730335723329,0 173.3593834338487,-41.37316207124169,0 173.3594463794796,-41.3733594624284,0 173.3595431067235,-41.37343297779188,0 173.3596653111176,-41.37345854509671,0 173.3599653806183,-41.3735999427342,0 173.360139890171,-41.37361939637016,0 173.3602714055952,-41.37372165547934,0 173.3602994013714,-41.37368837741623,0 173.360486318474,-41.37373631974657,0 173.3606459076429,-41.37364999321476,0 173.3608084323712,-41.37371000512317,0 173.3608878903647,-41.37376013293768,0 173.3609588051622,-41.37390731407405,0 173.361014621161,-41.37409633343185,0 173.3610038978696,-41.37421912123871,0 173.3611144499953,-41.37429532030662,0 173.3610936601374,-41.37445331179163,0 173.3612707061405,-41.37457367361777,0 - - -
- - Middy - Rocls Track - - - - - - - - - - - - - - -
Middy - Rocls Track
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)0.358
NAMEMiddy - Rocls Track
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1835.666
Tokm1836.024
categoryTramping Track
CycleProhibited
walkidRichmond Alpine Track
GuidebookNelson Marlborough
colourred
mapNamemap082
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.3549224616324,-41.36720794841977,0 173.3548770748121,-41.3673240320346,0 173.3548638658373,-41.36737088817603,0 173.3548582454588,-41.36742403437177,0 173.3548533934267,-41.36745772709924,0 173.3548543961901,-41.36746182969014,0 173.3548570746317,-41.36746426250076,0 173.3548587560935,-41.36746585977792,0 173.3548579101108,-41.36747080667713,0 173.3548565691773,-41.36747708643581,0 173.3548545618941,-41.36748396365528,0 173.3548530576707,-41.3674910005559,0 173.3548514596583,-41.36749838093896,0 173.3548521584145,-41.36755524401861,0 173.3548503700408,-41.36756962122281,0 173.3548493694862,-41.36757230768152,0 173.3548417415628,-41.36759443775458,0 173.3548293278067,-41.36760214783622,0 173.354804358849,-41.36762939096344,0 173.3547320991702,-41.36765344613917,0 173.3547104744615,-41.36769124219593,0 173.3547386379691,-41.3677363431079,0 173.354769567048,-41.36778428100327,0 173.3547967228494,-41.36782853829416,0 173.3548257249432,-41.36787170986761,0 173.3548542239522,-41.36790766966396,0 173.3548869978758,-41.36794982974215,0 173.3549187649853,-41.36799131824652,0 173.3549531284433,-41.36801990339194,0 173.3549554785957,-41.36806356968483,0 173.3549369578188,-41.36809407983399,0 173.3549235408127,-41.36812643972499,0 173.3549310021178,-41.36816935162526,0 173.3549423201413,-41.36822710162419,0 173.3549631903793,-41.3682784015129,0 173.3549864063091,-41.36832567855343,0 173.3550035913436,-41.36837630612099,0 173.3550031679614,-41.36844469882406,0 173.3549872359459,-41.36849414766267,0 173.3549750830424,-41.36851929934949,0 173.3549670350091,-41.36856556398563,0 173.3549807887046,-41.36861845224407,0 173.3550157362102,-41.36864201111106,0 173.3550423060924,-41.36865273650602,0 173.3550521197836,-41.36870185460383,0 173.3550615922274,-41.3687519835106,0 173.3550801909875,-41.36879649141756,0 173.3550791047518,-41.36883026350318,0 173.3551007273653,-41.36886572200942,0 173.3551077722458,-41.36888215181924,0 173.3550962020119,-41.36888450158219,0 173.3550661077648,-41.3689321926009,0 173.355071057451,-41.36898155990068,0 173.3550909258045,-41.36900863140647,0 173.3551190797948,-41.36903159867992,0 173.3551445637587,-41.36903587973168,0 173.3551526176022,-41.36906655200408,0 173.3551526173879,-41.36907091080128,0 173.3551545426019,-41.36907334503111,0 173.3551422191037,-41.36910913167381,0 173.3551487502072,-41.36912782398235,0 173.3551857991347,-41.36917559964833,0 173.3551781780889,-41.36916998528714,0 173.3551576412295,-41.36918315028014,0 173.3551472415594,-41.36919429329594,0 173.3551289697643,-41.36921324140164,0 173.3551516901392,-41.36922823745835,0 173.3551787580911,-41.36924475049374,0 173.3552022367859,-41.36926286084421,0 173.355231573201,-41.36928775116946,0 173.3552506832898,-41.36932069526416,0 173.3552747386327,-41.36934390934501,0 173.3552997178191,-41.36935648525699,0 173.3553451419512,-41.3693833886319,0 173.3554816880474,-41.36949017581787,0 173.3555287049612,-41.36953770529564,0 173.3555468095506,-41.36955899115478,0 173.3555770635194,-41.36956787739295,0 173.3556023026261,-41.36958204588138,0 173.3556652444486,-41.3696767567359,0 173.3556503214071,-41.36970702257542,0 173.3556228310572,-41.36978119804232,0 173.3555937431379,-41.36980047599374,0 173.3554795045436,-41.36994816954628,0 173.355510007197,-41.36996316851563,0 173.3555027005182,-41.36998259623605,0 - - -
- - Rocks - Totara Saddle - - - - - - - - - - - - - - -
Rocks - Totara Saddle
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)9.464
NAMERocks - Totara Saddle
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1836.024
Tokm1845.487
categoryTramping Track
CycleProhibited
walkidRichmond Alpine Track
GuidebookNelson Marlborough
colourred
mapNamemap082
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/richmond-alpine-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.2879431822765,-41.41107278797632,0 173.2880954825163,-41.41061994879489,0 173.2880902853508,-41.41047351926911,0 173.2880488783522,-41.41040931331538,0 173.2880049573268,-41.4103634629799,0 173.2879649747479,-41.41023974755124,0 173.2879775472914,-41.41019934771206,0 173.2879590252754,-41.41016213150493,0 173.287972604959,-41.41009809325187,0 173.287970759563,-41.41006087764374,0 173.2880049583935,-41.40992157087215,0 173.2879955690866,-41.40985778466644,0 173.2879139291125,-41.40979206880076,0 173.287777974538,-41.4095678544083,0 173.2878308643797,-41.40939158245129,0 173.2878451998651,-41.40933316034008,0 173.2877353109579,-41.40929837408383,0 173.2876130216061,-41.40925319784428,0 173.2874630679534,-41.40917197739661,0 173.2874006228499,-41.40910240749128,0 173.2873354932994,-41.40903996205322,0 173.2873052363941,-41.40896620154962,0 173.2872781638173,-41.40883007989557,0 173.2872182336699,-41.40872480205534,0 173.287194093345,-41.40842363971196,0 173.2871778291882,-41.40830771847088,0 173.2871394419365,-41.40826933117537,0 173.2870569647649,-41.40819732857536,0 173.2869911670258,-41.40811652803868,0 173.2869463234694,-41.40799155336014,0 173.2868375253498,-41.40784017564377,0 173.2868586478622,-41.40762132424311,0 173.2868185813409,-41.40758754659688,0 173.2867577296902,-41.4075323925988,0 173.2866590761996,-41.40747547988823,0 173.2865241259522,-41.40739090511437,0 173.2864854017665,-41.40734723638445,0 173.2864189337768,-41.40717775388877,0 173.2863276557848,-41.40703442447143,0 173.2862813869482,-41.40697323667389,0 173.2862278265841,-41.40689637397558,0 173.2861369672786,-41.40680274811867,0 173.2860550747901,-41.40675153463608,0 173.285978970028,-41.40665623348927,0 173.2859786317474,-41.40649613708471,0 173.286038311047,-41.4063697384027,0 173.286051639869,-41.40633772112385,0 173.2860464425523,-41.4062757762582,0 173.2859848342174,-41.40622607150508,0 173.2859168574453,-41.40619246018372,0 173.285819124696,-41.40616865634234,0 173.2856993485577,-41.40612364474466,0 173.2855804937659,-41.40595894241445,0 173.2855395059266,-41.40585316084316,0 173.2855276027397,-41.40577278054062,0 173.2855643977711,-41.40567923910413,0 173.2856470454764,-41.4056175463581,0 173.2857570157111,-41.40557999629542,0 173.2857815739607,-41.40549911111299,0 173.2857607873554,-41.40537614790509,0 173.2857170327997,-41.40527020031311,0 173.2856748720851,-41.4051175669117,0 173.2856872781307,-41.40504615186579,0 173.2857250790747,-41.4049674451711,0 173.2857997645358,-41.40489418831793,0 173.2858319490813,-41.40483233072094,0 173.285816275155,-41.40475286957044,0 173.2857911306963,-41.40465538883745,0 173.2858607842656,-41.40455413533874,0 173.2858648906799,-41.40443603473224,0 173.2858482948293,-41.40434056398022,0 173.2858595256327,-41.40425657723055,0 173.2858324532977,-41.40422556289226,0 173.2857648930054,-41.40412322161833,0 173.2857402501501,-41.40411668205501,0 173.2856944866724,-41.40407494282287,0 173.2856463731006,-41.40404074425759,0 173.2855512408345,-41.40398902730266,0 173.2854865320729,-41.40388064820281,0 173.2854136926871,-41.40379297426577,0 173.285339596346,-41.40370261733328,0 173.2852923224787,-41.40362013944305,0 173.2852634036148,-41.40360228423301,0 173.2852401862398,-41.40355752542015,0 173.2852104290469,-41.40346859607238,0 173.2851467293568,-41.40338745773034,0 173.2851839426863,-41.40330849863171,0 173.2851702808229,-41.40325225665911,0 173.2851088429063,-41.40318352515168,0 173.2850334886315,-41.40312837459897,0 173.2850086779722,-41.40306936336791,0 173.2849969443555,-41.40300616633542,0 173.2850072534022,-41.40297414583189,0 173.2850621552601,-41.40280223323627,0 173.285303805968,-41.40242202911822,0 173.2854862798387,-41.40227643807417,0 173.285557861019,-41.4021836470744,0 173.2856385797086,-41.40210016611303,0 173.2856694250108,-41.4020439235892,0 173.2857194665665,-41.40202590034914,0 173.2858618723426,-41.40194317220146,0 173.2858646370687,-41.40186455065356,0 173.285823820164,-41.40172138716449,0 173.285805965369,-41.40169691194429,0 173.2858084805908,-41.40164351858576,0 173.285832619743,-41.40161585845105,0 173.2858886118723,-41.40151276254139,0 173.2859268325354,-41.40144981347622,0 173.2859948099786,-41.40141921868317,0 173.2860655522169,-41.40136465226951,0 173.286162449408,-41.40128032993515,0 173.2862670528659,-41.40125158051677,0 173.2863412328777,-41.40126759069847,0 173.2864495270614,-41.40127538655519,0 173.2865346903461,-41.40125375985635,0 173.2867933523527,-41.40117279111071,0 173.2868314071834,-41.40115208777755,0 173.2869072628247,-41.40111604663165,0 173.2869145559582,-41.40111721924836,0 173.286937439181,-41.40112048959238,0 173.2869605741601,-41.40111109912952,0 173.2870634171885,-41.40104890547566,0 173.2871468181024,-41.40094798885775,0 173.2873087567818,-41.40084815968264,0 173.2874303778051,-41.40070592055148,0 173.2875908928403,-41.40061581372809,0 173.2876277709006,-41.40058773495019,0 173.2876510737664,-41.40057524531205,0 173.2876604615073,-41.40056636107278,0 173.2877165368583,-41.40053886750227,0 173.2878248293236,-41.40054515510208,0 173.2878487197395,-41.4005470824123,0 173.2878599518032,-41.40053920239357,0 173.2879124224263,-41.40051330218149,0 173.2879395787771,-41.40050358079097,0 173.2881067142454,-41.40048689921259,0 173.2881795547424,-41.40041263653213,0 173.2882834887768,-41.40034147469247,0 173.288380214383,-41.4001911855739,0 173.2884368786909,-41.40009546574137,0 173.2885237135313,-41.40000435507913,0 173.2886286529777,-41.39996085092936,0 173.2887739989374,-41.39992665371803,0 173.2888687142543,-41.39985255728181,0 173.2889746599367,-41.39978893993061,0 173.2890268778702,-41.39971920166985,0 173.2891058373025,-41.39964183702282,0 173.2892399468838,-41.39961576888819,0 173.2893777471772,-41.39959137663207,0 173.2894629918933,-41.39951979682914,0 173.2895912339733,-41.39949280624993,0 173.2897253447158,-41.39944637136683,0 173.2898739547312,-41.39942130815793,0 173.2900187940241,-41.39939599664616,0 173.2901385694,-41.39932433020001,0 173.2902525642163,-41.39931427216204,0 173.290327834851,-41.3992664960302,0 173.290419030217,-41.39924637711635,0 173.2905087139807,-41.39917990975071,0 173.290618437208,-41.39911897371106,0 173.2907322596983,-41.39904403840929,0 173.2908102973869,-41.39897388189252,0 173.2908540508932,-41.3989673461864,0 173.2909402992974,-41.39892903951363,0 173.2910437307276,-41.39889417075069,0 173.2912134864233,-41.39880819518434,0 173.2912317369656,-41.39879375665476,0 173.2913053318426,-41.39869971028296,0 173.291344308502,-41.39859837340168,0 173.291468779995,-41.3985360967007,0 173.2915238483776,-41.39844490028303,0 173.2916192340364,-41.39837876889045,0 173.2916941677649,-41.39830961678061,0 173.291792822977,-41.39822621839521,0 173.2918875394315,-41.39816813136482,0 173.2919592895769,-41.39811238956116,0 173.2920649843635,-41.39806804984725,0 173.2921489693613,-41.39800610756571,0 173.2922271734346,-41.39792564045905,0 173.2922878586165,-41.39783327282362,0 173.2923149334388,-41.39775582425553,0 173.2924135035526,-41.39769463739211,0 173.2924865094076,-41.39762649130228,0 173.2925543185845,-41.39753940458235,0 173.292641826185,-41.39746430098111,0 173.2927269028368,-41.39738467357342,0 173.2928566554861,-41.39732474281942,0 173.2929707323233,-41.39724964069921,0 173.2930944505574,-41.39717185666424,0 173.2931989719263,-41.39708812235106,0 173.293305926451,-41.3970033818912,0 173.2934357592706,-41.39695225250919,0 173.293525028203,-41.39686223075304,0 173.2936246894382,-41.39677212565606,0 173.2937049036418,-41.39668478410639,0 173.2937800054363,-41.39659702589042,0 173.2938762298744,-41.39651345895925,0 173.2939634856533,-41.39642930414352,0 173.2940738757642,-41.39636811537567,0 173.294156270492,-41.39627884840937,0 173.2942594523329,-41.3962167410977,0 173.294299178915,-41.39612202364274,0 173.294409821025,-41.39604767469628,0 173.2945150978566,-41.39597651455482,0 173.2946021008136,-41.3958976419537,0 173.294677119013,-41.39580217104433,0 173.2947569144995,-41.39571751318748,0 173.2948331082882,-41.39563822131872,0 173.2949042682744,-41.39557376341465,0 173.2949722473051,-41.39549447178972,0 173.2950552281739,-41.39541735842764,0 173.2951439898571,-41.39535340199861,0 173.2952278955763,-41.39529280248042,0 173.295327555996,-41.39520990647983,0 173.2954494296821,-41.39516740921039,0 173.2955271293119,-41.39511217231892,0 173.2955392002093,-41.39502474864523,0 173.2955881496993,-41.39495492927726,0 173.2956553729374,-41.39488049608566,0 173.295757211171,-41.39481226839885,0 173.2958572926384,-41.39474102218707,0 173.2959610592546,-41.39466130826746,0 173.2960696061048,-41.39460305338412,0 173.2961882938692,-41.39454974719511,0 173.2962738729652,-41.394465592217,0 173.2963873626384,-41.39439644041574,0 173.296491215888,-41.39431999735476,0 173.2965684965755,-41.3942232709026,0 173.2966652243687,-41.39413383546371,0 173.296729092993,-41.3940805277137,0 173.2968186130833,-41.39399603788567,0 173.296915340434,-41.39392479309626,0 173.2970100544567,-41.39386486156266,0 173.2970935401253,-41.39378531606172,0 173.2971869981787,-41.39370183363467,0 173.2972655360702,-41.39362597679073,0 173.297388163436,-41.39357996164083,0 173.2975205114748,-41.39352229331453,0 173.2976310710338,-41.39349245344157,0 173.2976963667783,-41.39341299327644,0 173.2977937616575,-41.39335054824463,0 173.2978909925768,-41.39331668379035,0 173.297991074315,-41.39330779896832,0 173.2979993726812,-41.39333252767537,0 173.298012280544,-41.39337703415922,0 173.2980203247147,-41.39341341215925,0 173.2980427061583,-41.39346940221845,0 173.2980396894549,-41.39352807657033,0 173.2980832734752,-41.39341810601221,0 173.2981655024439,-41.39332598836239,0 173.2981807555373,-41.39330335776176,0 173.2981854517013,-41.39328215069309,0 173.2982703572723,-41.39323789515386,0 173.2983389211236,-41.39322750188189,0 173.2984016218582,-41.39323579924314,0 173.298454929487,-41.39325909968207,0 173.2985230726317,-41.39327309908928,0 173.2985765489654,-41.39331416924196,0 173.2985898766327,-41.39330603862325,0 173.2986487176342,-41.39327544381539,0 173.2993740884781,-41.39336136144087,0 173.2994915191404,-41.39335658268192,0 173.2996019902065,-41.39336035393115,0 173.2996770924688,-41.39338281879697,0 173.2997354310971,-41.39337133437891,0 173.2997557153444,-41.3933623676111,0 173.2997568887778,-41.39336002077497,0 173.2997592351148,-41.39335364989076,0 173.2997615847391,-41.39335163867689,0 173.2997685389191,-41.3933515539039,0 173.2997763346434,-41.39335004463836,0 173.2997702156305,-41.39335356543541,0 173.2997705520286,-41.39335674964877,0 173.2997565523691,-41.39336907249678,0 173.299750183555,-41.39337133558149,0 173.2997809442863,-41.39342129089654,0 173.2998203407223,-41.39350050022519,0 173.2998745694504,-41.39356269334708,0 173.2999246115287,-41.39362564228647,0 173.299957131162,-41.3936590009579,0 173.2999682788473,-41.39366612663534,0 173.300044389695,-41.39370283956683,0 173.3001698657018,-41.39373586297291,0 173.3002927446116,-41.39380702581914,0 173.3004279446311,-41.39384080542681,0 173.3005634790435,-41.3938261374993,0 173.3006846823517,-41.39380845057984,0 173.300795994378,-41.39377157076085,0 173.3011042801925,-41.39368171708267,0 173.3012020953834,-41.39361273395441,0 173.3013738413786,-41.39349530249022,0 173.3014460083,-41.39341223897909,0 173.3015118067493,-41.39332506752584,0 173.3017356053305,-41.39330075846277,0 173.3018765056522,-41.39329464114848,0 173.3022608144856,-41.39334275346633,0 173.3023321445632,-41.39339044600122,0 173.3024328117607,-41.39340578263875,0 173.3025739643734,-41.39339187042644,0 173.3026227466699,-41.39338021961216,0 173.302690639696,-41.39340712510779,0 173.3028455372166,-41.39341659888499,0 173.3030601974323,-41.39336203132596,0 173.3032094790128,-41.39331568035529,0 173.303624048194,-41.39317963975329,0 173.3036959636274,-41.39311468168045,0 173.3038122224728,-41.39303077609216,0 173.303906014981,-41.39301912839192,0 173.3041324109325,-41.39309414548616,0 173.3042086023011,-41.39314033054834,0 173.3043267036129,-41.39318307641845,0 173.3043790051943,-41.39321668868105,0 173.3044422048615,-41.39321869952956,0 173.3045223348246,-41.39320704963801,0 173.3047388410145,-41.39314812429186,0 173.3050070614879,-41.39310160726486,0 173.3051782195926,-41.39307327401073,0 173.3053518088295,-41.39301083035862,0 173.3053793028516,-41.3930049628022,0 173.3054220509812,-41.39300227947719,0 173.3055582560695,-41.39292709349082,0 173.3056714124753,-41.39289339815215,0 173.3059072780168,-41.39286540353941,0 173.3060371126908,-41.39283765896629,0 173.3061046718584,-41.3927944931702,0 173.3062568866499,-41.39269642497423,0 173.3063666896802,-41.39265258720688,0 173.3065213348845,-41.39253859124854,0 173.3066701997294,-41.3923897303287,0 173.3068462200132,-41.39222988679096,0 173.3072841724453,-41.39180676844134,0 173.3076226371386,-41.39178296585628,0 173.3077813858299,-41.39175396291106,0 173.3078921105211,-41.3917399652237,0 173.3080387967015,-41.39168782934131,0 173.3081719013892,-41.39164223042943,0 173.3082765907141,-41.39158406261745,0 173.3084066770699,-41.39154148276341,0 173.3085059199121,-41.39149923767548,0 173.3086432152184,-41.39146654750025,0 173.3088506656999,-41.39151658841563,0 173.3089779884535,-41.39152832220444,0 173.3090872883135,-41.39155304909779,0 173.3093031236073,-41.39131827132966,0 173.3094985041819,-41.39134568038105,0 173.3095764560118,-41.39132866249113,0 173.309590955961,-41.39133327500789,0 173.3097158466729,-41.39131475166533,0 173.3097880990272,-41.39131768551372,0 173.3099293349174,-41.39123948035672,0 173.3100444187515,-41.39119866311807,0 173.3101436592884,-41.39113537754691,0 173.3102257183127,-41.39109246298527,0 173.3105780098351,-41.39103865152278,0 173.310659061956,-41.39106145077221,0 173.3107388582138,-41.39109028305088,0 173.3107723863898,-41.39111073525297,0 173.3108153026219,-41.39112607369437,0 173.3109452202537,-41.39109682088578,0 173.3112259299411,-41.39102599541656,0 173.3112257619769,-41.39101761248688,0 173.3112608845984,-41.39096807562608,0 173.3113204793381,-41.39092666946558,0 173.3114496436349,-41.39092641632208,0 173.3115605362677,-41.39083782174327,0 173.3116930542446,-41.39079247345733,0 173.311797239776,-41.39076699421573,0 173.3118896941305,-41.39069507642347,0 173.311952892205,-41.39063891741649,0 173.3123990596286,-41.39042333670477,0 173.3124962095358,-41.39037430211334,0 173.3125499358618,-41.39034161260108,0 173.3125602459142,-41.39033800947915,0 173.3128008915524,-41.39028419625762,0 173.3129290481204,-41.39028109418572,0 173.3129892314665,-41.39028520191351,0 173.3130796730538,-41.39029877985448,0 173.3132206564239,-41.39033222425842,0 173.3133032186979,-41.39033272730881,0 173.3134092474359,-41.39034538430935,0 173.3135100831313,-41.3904435384724,0 173.3135662410301,-41.39010373372437,0 173.3137602823859,-41.38991916401245,0 173.3139218867421,-41.38975328678767,0 173.3141879284712,-41.38973375640327,0 173.3142959709175,-41.38972411685975,0 173.314402589683,-41.38976854117593,0 173.3145263064602,-41.38980441547318,0 173.3146525369045,-41.3897803596408,0 173.3147561382065,-41.3897588165412,0 173.3148324126486,-41.38973023660775,0 173.314932073913,-41.38973300215567,0 173.3150897374492,-41.38973141036267,0 173.315187722907,-41.38971137751415,0 173.3152354968626,-41.38968095135288,0 173.3153093434972,-41.38966041524589,0 173.3154670041724,-41.38965010537751,0 173.3156131861624,-41.38961490182045,0 173.3157333815709,-41.38961163200422,0 173.3158534123508,-41.38962328271741,0 173.316009063981,-41.38967558771705,0 173.3161761154302,-41.38973543207796,0 173.3162560774935,-41.38972327906186,0 173.3163996607406,-41.38973015258704,0 173.3164823888737,-41.38973442618884,0 173.3166816295362,-41.38978664551383,0 173.3168293161604,-41.38981925186734,0 173.3170062586523,-41.38981640274549,0 173.3171095242431,-41.38979016728835,0 173.3172293866006,-41.38971833360284,0 173.3173616506343,-41.38967541874659,0 173.3175758071079,-41.38950417513257,0 173.3176437038798,-41.38942697806603,0 173.3177991860488,-41.38938263755947,0 173.3181180352773,-41.38918247935597,0 173.3182393207788,-41.38918071718527,0 173.3183329471102,-41.38918742379995,0 173.3185242219643,-41.38915641003476,0 173.3186401439446,-41.38914702293625,0 173.3188310848414,-41.38915640962254,0 173.3189285638609,-41.38915112855564,0 173.3190133048356,-41.38913394673674,0 173.319221680354,-41.38909497122071,0 173.319319581102,-41.38910452689185,0 173.3195980267022,-41.38911207149577,0 173.3196908138168,-41.38909078188063,0 173.3200250012172,-41.38900662622692,0 173.3201646437831,-41.38896312375187,0 173.3206318521906,-41.38888550859127,0 173.3212195077681,-41.3884592886893,0 173.3213003923178,-41.38843531610898,0 173.3213776729988,-41.38846599280149,0 173.3215364276994,-41.38848770263063,0 173.3217200723199,-41.3883966763503,0 173.321811688361,-41.38836406932985,0 173.3218976025498,-41.38836079886531,0 173.32216381256,-41.38825778775039,0 173.3222545864262,-41.38819592871657,0 173.3222630527353,-41.38814563622821,0 173.3222953245807,-41.3881302139857,0 173.3222985069198,-41.38805553106839,0 173.3223570146967,-41.38801177664695,0 173.3225348780655,-41.38785989811932,0 173.3226592663807,-41.38769418765133,0 173.3227257341894,-41.38759930512757,0 173.3227906947311,-41.38753585344939,0 173.3228588402899,-41.38750601281531,0 173.3229086281686,-41.38747416451219,0 173.3229916911992,-41.38729428806504,0 173.3230370369995,-41.3872518745362,0 173.3232423116847,-41.38710628182277,0 173.3233468316753,-41.38703646110734,0 173.3234419691401,-41.38698658790546,0 173.3235089392355,-41.38694442867033,0 173.3236270420879,-41.38683018179557,0 173.323712872026,-41.38677393823642,0 173.3238015513624,-41.38668718681717,0 173.3240442088157,-41.38664712065307,0 173.3241654111149,-41.38662934954771,0 173.3244144363012,-41.38659657974692,0 173.3245622948715,-41.38657352757036,0 173.324700761934,-41.38657595812124,0 173.3248358793337,-41.38655877667672,0 173.3249887642244,-41.38654620273121,0 173.325125976331,-41.38648015412554,0 173.3252460056864,-41.38640521837365,0 173.3253653642755,-41.38638292398682,0 173.3255117962168,-41.38636967941207,0 173.3256901608392,-41.38635752607292,0 173.3258555377955,-41.38635668766977,0 173.3259885576489,-41.38635911858392,0 173.3261592139982,-41.38639155603308,0 173.3262827621551,-41.38640111145414,0 173.3263665811361,-41.38639080324384,0 173.3264334685604,-41.38638594036528,0 173.3265045483657,-41.3864031225008,0 173.3265892886682,-41.386441176095,0 173.3267057145498,-41.3864700942248,0 173.3268112411465,-41.38648400768764,0 173.3269332843613,-41.38650228154796,0 173.3270309307357,-41.38650697628336,0 173.3271428297996,-41.38650915422432,0 173.3274795325739,-41.38652038560345,0 173.3276567219689,-41.3865249975302,0 173.3277412969531,-41.38650781335674,0 173.3278177421028,-41.38649272583716,0 173.3278469963042,-41.38648677403109,0 173.3279034023963,-41.38646875301551,0 173.3280381858441,-41.38648124254562,0 173.328118567156,-41.38648400930504,0 173.3282157991038,-41.386499516053,0 173.3282622319192,-41.38653798933667,0 173.3282651661253,-41.38654636975829,0 173.3282695259456,-41.38655592430671,0 173.3283071591827,-41.38655106452292,0 173.3283880442166,-41.38654838185444,0 173.3284892150156,-41.38653539055331,0 173.3285934035401,-41.38652575128485,0 173.3286583617851,-41.38650261618002,0 173.3286564339376,-41.38643187318581,0 173.3287269259934,-41.38643790870287,0 173.3287807370789,-41.38642525149709,0 173.3288695871962,-41.38641963536706,0 173.3289548277388,-41.38640882309012,0 173.3290844146691,-41.38641376886003,0 173.329196313102,-41.3864167879168,0 173.3293304215323,-41.38640522032784,0 173.3294807104686,-41.38639373506654,0 173.3296475104832,-41.38635400577258,0 173.3297771774588,-41.38634000842194,0 173.3299228556366,-41.38632927892482,0 173.3300198341224,-41.38631922036718,0 173.3301633322557,-41.38626507291058,0 173.3302774948127,-41.38625962537171,0 173.3303945875472,-41.38623690891542,0 173.3304546892375,-41.3862225763659,0 173.3305900560653,-41.38619156526453,0 173.3307115091323,-41.38617329022525,0 173.3308257533725,-41.38617857177547,0 173.3309200488393,-41.38617253847139,0 173.3309824104729,-41.3861569470893,0 173.3310408331534,-41.38614906851521,0 173.3310509752821,-41.38615183439909,0 173.3311555813448,-41.38614194300554,0 173.3313161781211,-41.38613683189118,0 173.3314290829324,-41.38613272356393,0 173.3317309145768,-41.38617681263447,0 173.3319518619149,-41.38612853239654,0 173.3320916712634,-41.3861339803438,0 173.3323161387058,-41.38609332860646,0 173.332454858783,-41.38608804848861,0 173.3326082484678,-41.38610321902273,0 173.332927180876,-41.38613305862613,0 173.3329742865502,-41.38613389695392,0 173.3331005184876,-41.38614848155206,0 173.3332630425331,-41.38615988120847,0 173.3334292571815,-41.38614965436961,0 173.3335819740784,-41.38612719174953,0 173.3338637733505,-41.38612450901367,0 173.3339580706736,-41.38611026007359,0 173.3341717267975,-41.38614571530064,0 173.3343407881046,-41.38613507083343,0 173.3344126214983,-41.38610196269091,0 173.3345319803737,-41.38610238140435,0 173.3346059920739,-41.38608662357817,0 173.3347040600324,-41.38605343176251,0 173.3347189799118,-41.38601713722019,0 173.3347948355888,-41.38597313234021,0 173.3348782352585,-41.3859437113018,0 173.3349066506706,-41.38593809522514,0 173.3351503123505,-41.38587489639079,0 173.3351923895973,-41.38586173711247,0 173.335276459921,-41.38580088445971,0 173.3352893680807,-41.38578445479438,0 173.3353098184957,-41.38576710509137,0 173.3353938920329,-41.38573299054858,0 173.33548843979,-41.38569736725641,0 173.3355748563203,-41.38566258188947,0 173.3356762781068,-41.38561103364882,0 173.3357450094137,-41.38554523608506,0 173.335843160407,-41.38548823862588,0 173.3360181753425,-41.38538036324734,0 173.3363068471391,-41.38533007354023,0 173.3364355110066,-41.38530568133877,0 173.3365622435271,-41.38530802833552,0 173.3367655055039,-41.38532412116319,0 173.3368810076376,-41.38531238664984,0 173.3370163765084,-41.38532697173206,0 173.3371410986598,-41.38537634012516,0 173.3372726101318,-41.38542973290544,0 173.3373224822365,-41.385492681456,0 173.3373592790118,-41.38554791816527,0 173.3374104927227,-41.38563760454801,0 173.337515685167,-41.38569912701937,0 173.3377786257858,-41.38571563929884,0 173.3378634505319,-41.38570491082001,0 173.3379595917272,-41.3856818608513,0 173.3380215343231,-41.38565713496961,0 173.3381211956908,-41.38556350887667,0 173.3382053481629,-41.38551564733081,0 173.3382734933357,-41.38545588507851,0 173.3382801146033,-41.38541296955485,0 173.3383766743598,-41.38529612712535,0 173.3384293970812,-41.38522127553372,0 173.3384992183626,-41.38515732147748,0 173.3385268779294,-41.38513108650021,0 173.338556885542,-41.38507400614089,0 173.3386518532915,-41.38484761034054,0 173.3385974539139,-41.38467938476357,0 173.3385312374712,-41.38460487132353,0 173.3385140529561,-41.38457855118319,0 173.338469043668,-41.38443077763386,0 173.338562501099,-41.38434427729995,0 173.3385583944062,-41.38429800915394,0 173.3385085233186,-41.38420002419962,0 173.3385057559465,-41.38416800576101,0 173.338549091382,-41.38413858550342,0 173.3385450670952,-41.38410866143544,0 173.3385463248703,-41.38404839587971,0 173.3385629216909,-41.38400640218397,0 173.3385474985855,-41.38393641334168,0 173.3385674466649,-41.38390850219973,0 173.3385894073507,-41.38390590374589,0 173.3386003046805,-41.38389425185183,0 173.3385907481485,-41.38384320678898,0 173.3386024000652,-41.38381655229122,0 173.3386605698701,-41.38378126402024,0 173.3386696232738,-41.38374547353104,0 173.3387575480475,-41.38372074733712,0 173.3387826097996,-41.38373449304359,0 173.3387847055137,-41.38373063701722,0 173.3387738105175,-41.3836694497249,0 173.3387616569007,-41.38358973836854,0 173.3387127057772,-41.38349912892482,0 173.3387412868165,-41.38339687049033,0 173.3387748979859,-41.38335496178601,0 173.338833320496,-41.38331154330526,0 173.3388863778239,-41.38326837659293,0 173.3389137868373,-41.38325303696468,0 173.3390385936614,-41.38318472485366,0 173.339042869064,-41.38317776738465,0 173.3391032173793,-41.38314298229576,0 173.339108498942,-41.3831377017806,0 173.3391126052513,-41.38312697421774,0 173.3391569466353,-41.38300753223399,0 173.3391758894841,-41.38298674357097,0 173.3392017892937,-41.38294315683125,0 173.3392495667409,-41.38289395599324,0 173.3393327130321,-41.38285489701141,0 173.3393541714687,-41.38282270986414,0 173.3393558489963,-41.38281181380802,0 173.3393518258028,-41.38279940867103,0 173.3393720269308,-41.38275842117914,0 173.3394062239546,-41.38271869040316,0 173.3394217312757,-41.38266169399886,0 173.3394364819423,-41.38260477998888,0 173.3394263406,-41.38253864804466,0 173.3394129282516,-41.38249045090583,0 173.3394130131304,-41.38244812295439,0 173.3394064762074,-41.38234536080034,0 173.3393947404321,-41.38225433379297,0 173.3394004406521,-41.38215500797932,0 173.3393921419037,-41.38204277319993,0 173.3393554290145,-41.38197647369736,0 173.3393970872432,-41.38190338281591,0 173.3395054654922,-41.38183481868523,0 173.3395531585599,-41.38173188931646,0 173.3395643901145,-41.38160549007605,0 173.3395653123217,-41.38153332190562,0 173.3395575180836,-41.38145511822548,0 173.3395530759736,-41.38137297553149,0 173.3394740332691,-41.38122863912967,0 173.3394643947497,-41.38114532365482,0 173.3396303556287,-41.38097793715423,0 173.3396927174088,-41.38092052045717,0 173.3397606118238,-41.38085396897992,0 173.339798664276,-41.380765707141,0 173.3398670608084,-41.38069228130149,0 173.3399098931697,-41.38061365877069,0 173.3399206217995,-41.38052313561105,0 173.3398041965978,-41.38042473160921,0 173.3396990027511,-41.3803449356067,0 173.3396750310881,-41.38021593885338,0 173.339673188521,-41.38010982279147,0 173.3396492148982,-41.38001628093623,0 173.3396767081043,-41.37991720691716,0 173.3397258258789,-41.37984545762331,0 173.3397965702094,-41.37977706194445,0 173.339860354842,-41.379682849314,0 173.3399552381538,-41.37960908936023,0 173.3400264004775,-41.37950439878667,0 173.3400848239456,-41.37942502211102,0 173.3400691486142,-41.37935377579842,0 173.340078787884,-41.37928906716903,0 173.3401061141327,-41.37921069665075,0 173.3401423234149,-41.37912494964338,0 173.3401779462408,-41.37900860906351,0 173.3402317570011,-41.3787939487209,0 173.3402521251395,-41.37869998761605,0 173.3403098779987,-41.37862865660861,0 173.3404271392384,-41.37855531648482,0 173.3405159881202,-41.37850058180113,0 173.3406114592421,-41.37843520295304,0 173.3407200041114,-41.37837057798597,0 173.3408117011658,-41.37832020243695,0 173.3408387746189,-41.37830017036119,0 173.3409371794159,-41.37826974384694,0 173.3410364203775,-41.37820847266391,0 173.3412001188881,-41.37801770042596,0 173.3412120205052,-41.37797126415624,0 173.3412827653294,-41.37793178562517,0 173.3413556876072,-41.37792818156594,0 173.3414542572457,-41.37792256562312,0 173.3415365679078,-41.37787336401349,0 173.3416042113699,-41.37780186697786,0 173.3416865209874,-41.37774520424683,0 173.3417709258351,-41.37768309372491,0 173.3420688194961,-41.37760757412043,0 173.3421742638852,-41.37753900895165,0 173.342326479605,-41.37745753804956,0 173.342419098772,-41.3774320564468,0 173.3424705635128,-41.37738620760954,0 173.3424789459367,-41.3773774074353,0 173.3424752590584,-41.37736282245061,0 173.3424954583789,-41.37733449099485,0 173.3425261353764,-41.37727481243757,0 173.3425769293871,-41.37721672508808,0 173.3426969591212,-41.37715939355864,0 173.3428161507958,-41.37707322739019,0 173.342901814076,-41.37697239300406,0 173.3429378558204,-41.37687298461888,0 173.3429897391694,-41.37676879640074,0 173.3430552854804,-41.37666921896922,0 173.3431172266683,-41.37658523183579,0 173.343195011114,-41.37652069172962,0 173.3433083347339,-41.37649219315667,0 173.3434447081144,-41.37647224508668,0 173.3434534259692,-41.37640745332274,0 173.3434725373623,-41.37636931473634,0 173.3435580332007,-41.37632656784009,0 173.3436532509866,-41.37628557985904,0 173.34367931712,-41.37623989819681,0 173.3436668297594,-41.37615716979861,0 173.3436815805412,-41.37607762532426,0 173.3437172886864,-41.3759824062258,0 173.3437465408524,-41.37589137873403,0 173.3438351375537,-41.37582289928145,0 173.3439491315131,-41.37577914545697,0 173.3440932993148,-41.37570639131704,0 173.3442122395709,-41.37564687890882,0 173.3442754395028,-41.37560522142844,0 173.3443073744123,-41.37554076457629,0 173.3443642026492,-41.37549365668096,0 173.3443569109457,-41.37541327459888,0 173.3443057822682,-41.37523340020847,0 173.3443217080943,-41.37520180063359,0 173.3443378005948,-41.37510339727178,0 173.3443624439521,-41.37501010537483,0 173.3444239659995,-41.37493659554743,0 173.3445152452027,-41.37490684124104,0 173.3446851472099,-41.37480508490379,0 173.3447575665732,-41.37477759286388,0 173.3449820336827,-41.37473308363474,0 173.3452448064039,-41.37465890411493,0 173.3452608984342,-41.374661334739,0 173.3453703664762,-41.37462001162661,0 173.34549685099,-41.37458002990349,0 173.3457904676666,-41.37451305901935,0 173.3458944039161,-41.37450685656817,0 173.346016193335,-41.37448204552718,0 173.3461330374484,-41.37443301150267,0 173.3461999238658,-41.37435589774661,0 173.346239990474,-41.37426847434555,0 173.3463207072418,-41.37420686787326,0 173.3464135794452,-41.37417141354478,0 173.3464806342076,-41.37412095449638,0 173.3465807974913,-41.37411936118033,0 173.3466778598395,-41.37412899972757,0 173.3467566503599,-41.37410762593412,0 173.3468186761972,-41.37407334513667,0 173.3468817911346,-41.37401291096906,0 173.3469814523809,-41.37396345857049,0 173.3471981239874,-41.37389053503237,0 173.3473429636801,-41.37390620900127,0 173.347430973868,-41.37393839601535,0 173.3474694475687,-41.37399648176012,0 173.3476318048114,-41.37409991425633,0 173.347696262094,-41.374170658218,0 173.3477604662844,-41.37419228339519,0 173.347878398893,-41.37423612108434,0 173.348106304314,-41.37423301875726,0 173.348207306343,-41.37424651377232,0 173.3485045274181,-41.37429957154873,0 173.3486039369224,-41.37430099631511,0 173.3486976469263,-41.37427685659004,0 173.3488288253369,-41.3741781182239,0 173.3488897600773,-41.37413184956188,0 173.3489444941419,-41.37402757971636,0 173.3492222710816,-41.37368115482368,0 173.3493665230031,-41.3736146865344,0 173.349380604455,-41.37359918038196,0 173.3495594739013,-41.37344788547146,0 173.3496343260776,-41.37343187670304,0 173.3497560312144,-41.37333950832465,0 173.349656201751,-41.3731830176489,0 173.3496387678252,-41.3730920746163,0 173.349644885955,-41.37295503012744,0 173.3496597215701,-41.37290264440212,0 173.3498009589459,-41.37283458316205,0 173.3498088366231,-41.37284145636338,0 173.3498254322118,-41.37285847177542,0 173.3498636541724,-41.37289518418127,0 173.3502607878665,-41.37264012211825,0 173.3503092351048,-41.37256938002899,0 173.3503936415316,-41.37241473313073,0 173.3506459361461,-41.37224089199377,0 173.3507543155755,-41.37219219342005,0 173.3509917731544,-41.37195288962719,0 173.3511781038883,-41.37184040491982,0 173.3512705560847,-41.37178600668796,0 173.351380780111,-41.37175122138781,0 173.3514929286509,-41.37170344469564,0 173.351554368127,-41.37163420990139,0 173.3516362585732,-41.37159112840731,0 173.3517182340052,-41.37156606546288,0 173.3518554449585,-41.3715213059383,0 173.3520955029743,-41.37129533040168,0 173.3521566910033,-41.37123154387066,0 173.3521826747837,-41.37115543631216,0 173.3522082405125,-41.37106767685135,0 173.3523576056131,-41.37085326845843,0 173.3524206382247,-41.37079040391851,0 173.3524254993201,-41.37076852840216,0 173.3525418394896,-41.37071664387722,0 173.3527327796802,-41.37069979639414,0 173.3528544848811,-41.37065101355149,0 173.3529816394974,-41.3705821979956,0 173.3530956326551,-41.37051966858056,0 173.353174839944,-41.3704255389363,0 173.3531942026838,-41.370339290844,0 173.3532007418724,-41.37024901696698,0 173.3532255525869,-41.37017408375559,0 173.3532690530041,-41.37007752347647,0 173.3532359443364,-41.36998674706625,0 173.3532192660765,-41.36990385053612,0 173.3532696413581,-41.36986135370962,0 173.3532874934685,-41.36980050185916,0 173.3533138953403,-41.36974367179229,0 173.3533500238017,-41.36967963456751,0 173.3533691338245,-41.36961350126716,0 173.3533850590592,-41.36954175247513,0 173.3533845558128,-41.36953957237169,0 173.3533824612539,-41.36954074618952,0 173.3533833811897,-41.36953286708967,0 173.3533955356169,-41.36948752134826,0 173.3534221913786,-41.36946924856706,0 173.35344012871,-41.36940806044572,0 173.3534467489512,-41.36935139918575,0 173.3534544622613,-41.3693095728512,0 173.3534340925118,-41.36927436960993,0 173.3534545461208,-41.36923581174964,0 173.3534651907087,-41.36914327602357,0 173.353477343681,-41.36911469439168,0 173.3534692968554,-41.36905291950328,0 173.3534882403726,-41.36901042363253,0 173.3535047539734,-41.36894646911996,0 173.3535156489188,-41.36892626935144,0 173.3535368544322,-41.36886340565498,0 173.3535819503306,-41.3687700308484,0 173.353625955303,-41.36865385653067,0 173.3536768332635,-41.36856685303032,0 173.3537516843898,-41.36850440810593,0 173.3537663522773,-41.36848873296231,0 173.3538339932311,-41.36845964922122,0 173.353914375837,-41.36839175467275,0 173.3539582987676,-41.3682919266415,0 173.3539982797509,-41.36824909574263,0 173.3540867909582,-41.36821791462795,0 173.3541324738862,-41.36812210842498,0 173.354176309784,-41.36801029410468,0 173.3542242554369,-41.36790183327187,0 173.3542325532604,-41.36779814871506,0 173.3542333900793,-41.36771147913179,0 173.3541845260287,-41.36763998186078,0 173.3541954217564,-41.36757745332162,0 173.3542991058979,-41.36747318238376,0 173.3543394221985,-41.3673858426754,0 173.3544167867928,-41.36719951289169,0 173.3544818320495,-41.36715886103973,0 173.3547223926794,-41.3671579387381,0 173.354816184907,-41.36714243298882,0 173.3549224616324,-41.36720794841977,0 - - -
- - Richmond Range Route Bryant Range - - - - - - - - - - - - - - -
Richmond Range Route Bryant Range
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)10.487
NAMERichmond Range Route Bryant Range
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1845.487
Tokm1855.974
categoryTramping Track
CycleProhibited
walkidWaiau Pass Track
GuidebookNelson Marlborough
colourred
mapNamemap083
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/waiau-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 173.244630423146,-41.45829377874142,0 173.2445884589413,-41.45829898370929,0 173.2445158721139,-41.45829806162004,0 173.244499023673,-41.45829672018076,0 173.2444380874719,-41.45827735832945,0 173.2443521730015,-41.45827777775149,0 173.2443182263782,-41.45827777779414,0 173.2442218348921,-41.45828967962635,0 173.2440769950454,-41.45828615973736,0 173.243947662753,-41.45830032455305,0 173.2438946882221,-41.45830946060264,0 173.2435743324696,-41.45831826232681,0 173.2434813773137,-41.45831641801006,0 173.243385739169,-41.4583146576547,0 173.2432973941606,-41.45833242719421,0 173.2432065341334,-41.45834173131997,0 173.2430760278152,-41.45838531706399,0 173.2430236413695,-41.45839487302246,0 173.242936553925,-41.45838422723894,0 173.2428519801607,-41.458389088815,0 173.2427756204512,-41.45839076505459,0 173.2427591929404,-41.45839344793146,0 173.2426059706064,-41.45838716146096,0 173.2426018636216,-41.45838716111544,0 173.2425598704965,-41.45839613017044,0 173.2425156977431,-41.4583927770262,0 173.2423360736756,-41.45836855335233,0 173.2422297914309,-41.4583666253058,0 173.2421811766776,-41.4583546395844,0 173.2420643324982,-41.45832245306993,0 173.241908848832,-41.4582227922759,0 173.24174271878,-41.45815766502019,0 173.2414923517994,-41.45804375496487,0 173.2411591710934,-41.45786999645513,0 173.241076190734,-41.45774141792663,0 173.2410114824095,-41.45764971923857,0 173.2409599328641,-41.45757377951595,0 173.2408873457309,-41.45750102564517,0 173.2407531517891,-41.45736364567282,0 173.240523236715,-41.45725912335344,0 173.2403378285937,-41.45709869435108,0 173.2401761418973,-41.45689182863759,0 173.240461294486,-41.45633853917974,0 173.2402962544572,-41.4561673800911,0 173.2401056497101,-41.45595556917151,0 173.240064578502,-41.45568558800292,0 173.2402908885208,-41.45538534814175,0 173.2405916323529,-41.455323658516,0 173.2408293419655,-41.45525844663715,0 173.2410163437246,-41.45496876875326,0 173.2415093666137,-41.45495745268855,0 173.2417725584504,-41.45467615541566,0 173.2422125237746,-41.45457624362634,0 173.2424312922024,-41.45441061649131,0 173.242753325154,-41.45427231516188,0 173.2428746955985,-41.45402756436755,0 173.2428446882582,-41.4539053560856,0 173.2429234779798,-41.45369572534088,0 173.2430870919133,-41.45331476708895,0 173.2430082184129,-41.4531208937811,0 173.2429110711517,-41.45299273462086,0 173.2428175302663,-41.45278008624382,0 173.2427204682244,-41.45265527933312,0 173.2426972492261,-41.45249937574504,0 173.2427048784105,-41.45227876461106,0 173.2426728585886,-41.45208656665943,0 173.2426227337362,-41.45194021912695,0 173.2425695926996,-41.45166227535457,0 173.2425404248641,-41.45125231632847,0 173.2426137654157,-41.45096825362727,0 173.2428023588845,-41.45086524025596,0 173.2428809815084,-41.45065636280902,0 173.243069070763,-41.45046609329591,0 173.2433317600665,-41.45037766417896,0 173.2436014898068,-41.45031907588589,0 173.2437332528666,-41.45006485222548,0 173.243827466167,-41.44975069808111,0 173.2441768233946,-41.44928575437643,0 173.24444797802,-41.44908701930778,0 173.2445779817662,-41.44888166328633,0 173.2447177919705,-41.44874922918512,0 173.2449781333268,-41.44869021986001,0 173.2449589388041,-41.44857916012332,0 173.2449626269011,-41.4484638244247,0 173.2451512202933,-41.44823458020915,0 173.2452707462398,-41.44786049601878,0 173.2452986578307,-41.44747987393243,0 173.2453207851704,-41.44712297106213,0 173.2454516267125,-41.44694854404938,0 173.2454101368486,-41.44683262191602,0 173.2452834856107,-41.44667395239766,0 173.2453092192095,-41.44648058246782,0 173.2452882646609,-41.44632811618644,0 173.2454524659146,-41.44604354961889,0 173.2456496923761,-41.44579896607473,0 173.2458735731105,-41.4456730696708,0 173.245906429162,-41.44550962268203,0 173.2458988852348,-41.44538163100096,0 173.2458534558327,-41.44509857369233,0 173.2459012319011,-41.44480017820634,0 173.2459004778151,-41.44460488033969,0 173.2458219397058,-41.44437714413929,0 173.2457881602927,-41.44424378774972,0 173.2457101263443,-41.4441313873218,0 173.2456159956216,-41.44389434705415,0 173.2455594190267,-41.44374028680362,0 173.2454738398437,-41.44366862085752,0 173.2455084571694,-41.4433712317559,0 173.2453010887341,-41.44332026901096,0 173.2448540818636,-41.44327827695213,0 173.2446511554054,-41.4431415680783,0 173.2445517450047,-41.44302413745118,0 173.2443174717941,-41.4426713426238,0 173.244283944451,-41.44243145220776,0 173.244194258647,-41.4423402575696,0 173.244133824566,-41.44218192348141,0 173.2441153836696,-41.44202669072645,0 173.2439950206906,-41.44191454103178,0 173.2438559639743,-41.44184119926622,0 173.2438024880601,-41.44168018220574,0 173.2438524442543,-41.44157825784684,0 173.2438926773845,-41.4414637624464,0 173.2439494236387,-41.44131758132919,0 173.2439885656898,-41.44122571603359,0 173.2440360925799,-41.44105832996263,0 173.2440955192436,-41.44091206561497,0 173.2441246881688,-41.44077929567867,0 173.2442195710476,-41.44068097609848,0 173.2442777418252,-41.44058785247957,0 173.244371787039,-41.44050537520705,0 173.2444649932506,-41.4404379845605,0 173.2445679234128,-41.44034779490545,0 173.2447027884018,-41.44028291957381,0 173.2447715194892,-41.44015886747473,0 173.2449173640311,-41.44009105819275,0 173.2450127513191,-41.43999407990086,0 173.2451148420736,-41.43989751960254,0 173.2451700780318,-41.43980531874091,0 173.2451487896888,-41.4396948452116,0 173.2450645512383,-41.43960574556112,0 173.2449897844392,-41.4394897408789,0 173.2448997620828,-41.43935277925176,0 173.2448717671105,-41.43921196362975,0 173.24480739501,-41.43903963146334,0 173.24475584597,-41.43886419860426,0 173.2447250836405,-41.4386168485366,0 173.2446177965273,-41.43847485935108,0 173.2445755511882,-41.43831208292319,0 173.2445933203971,-41.43816757950197,0 173.2446800727037,-41.43797596856548,0 173.2447386627545,-41.43776616909286,0 173.2448238224758,-41.43767053227845,0 173.2449924667104,-41.43753021949368,0 173.2451508848857,-41.4373801820867,0 173.2452674766697,-41.43718957808977,0 173.2451180268909,-41.43707583589347,0 173.2449875221431,-41.43691146679648,0 173.2449659795418,-41.43669865001191,0 173.2450107391367,-41.43626673035184,0 173.2451339528131,-41.43612784267883,0 173.2453005855527,-41.43592692823113,0 173.2454711568832,-41.43582969818412,0 173.2456163315716,-41.43574126933061,0 173.2458274719518,-41.43561688176354,0 173.2459528649342,-41.43548059172375,0 173.2460003908226,-41.43527288781167,0 173.2460152257064,-41.43503702142971,0 173.2458169943993,-41.43476393912047,0 173.2457642721338,-41.43459269669321,0 173.2457384562602,-41.43432347032882,0 173.2460158976664,-41.43383983415151,0 173.245991588697,-41.43356826081822,0 173.2459640964581,-41.43347337733766,0 173.2460000553117,-41.43332912473274,0 173.2460330803998,-41.43325176033978,0 173.2460745705183,-41.43317137741377,0 173.2459839615779,-41.43295403436904,0 173.2459912547931,-41.43274649835241,0 173.2459306533109,-41.43269067571592,0 173.2460041621916,-41.43238255673649,0 173.2460146388854,-41.43213218929282,0 173.2459742392592,-41.43193152619202,0 173.2458480917559,-41.43180479296182,0 173.2457894180138,-41.43161309802333,0 173.2457475931559,-41.43138779230964,0 173.2456489379093,-41.43119115286064,0 173.2455557304849,-41.43108637872301,0 173.2455284897068,-41.43092913437436,0 173.2454602603311,-41.43077323132052,0 173.2455293284092,-41.43045924548813,0 173.2456665396911,-41.43052588140649,0 173.2457157409389,-41.43021533191598,0 173.2457893338516,-41.43004735768901,0 173.2458330882322,-41.4299864217825,0 173.2459301509194,-41.42986764971507,0 173.2458662804912,-41.42976564236518,0 173.2458529528075,-41.42961124803684,0 173.2459300667482,-41.42946699567955,0 173.2459176616789,-41.42939155870433,0 173.2460653494711,-41.42905343259895,0 173.2459972892255,-41.42889744478049,0 173.2457942798298,-41.42866685828452,0 173.2458546293449,-41.42853509561857,0 173.2459817831772,-41.42837776718102,0 173.2461632516363,-41.42839092731908,0 173.246166017992,-41.42816134580894,0 173.2461815236969,-41.42799463049435,0 173.2464838591417,-41.42760956585723,0 173.2464443801758,-41.42726523745068,0 173.2465495727292,-41.42705292371603,0 173.246555356297,-41.42694806514285,0 173.2465846930713,-41.42686449770168,0 173.2465148714731,-41.42675134214176,0 173.2464007943412,-41.42667054100048,0 173.246059398437,-41.42645688632984,0 173.2460017321446,-41.42623292228335,0 173.2458814503244,-41.42595455846139,0 173.245898885136,-41.42579949388039,0 173.2458386189209,-41.42560712930317,0 173.2457657801106,-41.42542498989902,0 173.2457462499918,-41.42530688934983,0 173.2458227772297,-41.42519239199135,0 173.2458400438964,-41.42504797199131,0 173.2457665346608,-41.42482434247521,0 173.2457823767872,-41.42461538183355,0 173.2457452448383,-41.42438865163277,0 173.2457124715738,-41.42423903484976,0 173.2455262260149,-41.42411992731351,0 173.2453608509791,-41.42399411477528,0 173.2451909510889,-41.42389772313649,0 173.2450521450094,-41.42386587267075,0 173.2448530756484,-41.423893448895,0 173.2446449520596,-41.42385195871695,0 173.2444658326272,-41.42375648906489,0 173.2440571297758,-41.42334326101539,0 173.2441447202613,-41.42322557961149,0 173.2441799256664,-41.42296909285972,0 173.2440166443685,-41.42282919869459,0 173.2437087792713,-41.42271914464914,0 173.2434885914957,-41.42266104995419,0 173.2432290937781,-41.42235903560279,0 173.2430802193627,-41.42199989339387,0 173.2433114769708,-41.42175547696615,0 173.2433542242734,-41.42153494886986,0 173.2433470981257,-41.42112146975059,0 173.2431855793468,-41.42094419192635,0 173.2428736895712,-41.4208756284644,0 173.2431173512634,-41.4202137934641,0 173.2432643693713,-41.42014388843038,0 173.2433861583997,-41.41995009872916,0 173.2433599240235,-41.41976645113936,0 173.243389091546,-41.4195376250804,0 173.2434392999359,-41.41935598929062,0 173.2435768470922,-41.41919748740683,0 173.2437801912113,-41.41917368389628,0 173.2440246926595,-41.41902549186358,0 173.2440854609514,-41.41887562289714,0 173.2442365864671,-41.41866448268526,0 173.2443599682361,-41.41853062310806,0 173.2444921507354,-41.4184873734749,0 173.2446251720168,-41.41844479207346,0 173.2447769675773,-41.41836088977554,0 173.2447306996089,-41.41818587649272,0 173.2446684229371,-41.41807355750702,0 173.2445914770593,-41.41798932014834,0 173.2444576175081,-41.41793894514683,0 173.2444581200361,-41.4178508509164,0 173.2444184732001,-41.4176918460951,0 173.2444307954652,-41.41752764427998,0 173.2443261890994,-41.41742446402335,0 173.2442266971079,-41.41729085603775,0 173.2440677757496,-41.41709589284294,0 173.2441266987709,-41.41680269379373,0 173.2444019617055,-41.41662206330987,0 173.2445161226867,-41.41651905063126,0 173.2447044644584,-41.41652483481718,0 173.2448532444284,-41.41653514363215,0 173.2450017698872,-41.41654075984657,0 173.2451077172833,-41.4164255921314,0 173.2451848317645,-41.41629533682345,0 173.2453025961083,-41.41616047300099,0 173.2454695645786,-41.41603533135242,0 173.2455375422474,-41.41591438030059,0 173.2456449983346,-41.41581555761073,0 173.2459960866562,-41.41583396572501,0 173.2460395949526,-41.41575651653115,0 173.2461108343788,-41.4157417628911,0 173.24622633803,-41.41570865523043,0 173.2463300264184,-41.41566666695588,0 173.2464555831569,-41.41560908197472,0 173.2465520636962,-41.41553942775485,0 173.2465967422037,-41.4154515937083,0 173.2465876925882,-41.41537506491663,0 173.2465914659393,-41.41530180451452,0 173.2466227285166,-41.41520583113339,0 173.2467473768176,-41.41511623574698,0 173.2468564219571,-41.41501539981601,0 173.2469834976907,-41.41493535329988,0 173.2471214563871,-41.41486142553588,0 173.2472882616354,-41.41483796181209,0 173.2474412277315,-41.41486318744423,0 173.247551535392,-41.41495597411957,0 173.2476866545244,-41.41504281992388,0 173.2478715526894,-41.41509218230105,0 173.2479946807039,-41.4150705654178,0 173.2480611504188,-41.41509571090163,0 173.2481702918148,-41.41506377608085,0 173.2483298762685,-41.4150121417162,0 173.2485091740043,-41.41495422500142,0 173.248686695593,-41.41492388494476,0 173.2488491432167,-41.41489966273694,0 173.2488839262466,-41.41477988220386,0 173.2489094985811,-41.41466966511015,0 173.2490720184764,-41.41465859889755,0 173.2492342169009,-41.41463513242046,0 173.24939991974,-41.41464351791773,0 173.2495422426795,-41.41459557365555,0 173.2497144957443,-41.41455123124923,0 173.2498823867539,-41.41451460584278,0 173.2500789434283,-41.41450848960926,0 173.2502184146011,-41.41444663040064,0 173.2503746570638,-41.41439768291708,0 173.2505382723032,-41.41444646490258,0 173.2506840330063,-41.41447044175239,0 173.2505624961725,-41.41436349019231,0 173.2504019050762,-41.41430137494896,0 173.2502472532004,-41.41425058349881,0 173.2500916942222,-41.41419408481286,0 173.2500822205829,-41.41418772083451,0 173.2501412229837,-41.41412535561504,0 173.2502477655277,-41.41410909314844,0 173.250393441825,-41.41417799405039,0 173.2505555432406,-41.41418981490816,0 173.250629898613,-41.41414840726434,0 173.2506472413728,-41.41416735205534,0 173.2506469957971,-41.41418159807564,0 173.2506577990382,-41.41419174139678,0 173.2506669375978,-41.41420741719112,0 173.2506920899633,-41.4142228428131,0 173.2507098609015,-41.4142280365958,0 173.2508546949125,-41.41425695771089,0 173.2510033106836,-41.41427699252465,0 173.2511123532733,-41.4142928340202,0 173.2511911411354,-41.41430439981601,0 173.2511970952942,-41.41430038024291,0 173.2512287732103,-41.41427247045854,0 173.2512622282094,-41.41417288888687,0 173.2513129335225,-41.41407725188165,0 173.2514064802556,-41.41397357115915,0 173.2515080721839,-41.41390366830448,0 173.2515819986217,-41.41380560331226,0 173.2516436946993,-41.41372236897504,0 173.2517047122618,-41.41362706863684,0 173.2517317868215,-41.41352640285557,0 173.2517330495939,-41.41342640334998,0 173.2517489747253,-41.41330344747613,0 173.2517384152514,-41.41319900787928,0 173.2516670889282,-41.41311300371102,0 173.2515319800738,-41.41304838602975,0 173.2513811070323,-41.41302223347149,0 173.2512573805529,-41.41295617821091,0 173.2511366005315,-41.41288492891909,0 173.2510641910455,-41.41280321254293,0 173.2510436498924,-41.41275124579285,0 173.2510101277211,-41.41267630830406,0 173.2511148142336,-41.41262182451339,0 173.2511987238615,-41.41257723487796,0 173.2513236941569,-41.41261788611529,0 173.2514139618894,-41.41268343703993,0 173.2514791729102,-41.41276566344877,0 173.2515789990121,-41.41283774906627,0 173.2518746295824,-41.41288276350886,0 173.2520002763144,-41.41295979053569,0 173.2521074758394,-41.413055263039,0 173.2522127497034,-41.4131573485212,0 173.2523238964699,-41.4131985054672,0 173.2524642048171,-41.41322063646526,0 173.2526082121271,-41.41318911813378,0 173.2527398894045,-41.4132222344745,0 173.2528885899274,-41.41320781538359,0 173.2530422261696,-41.41313883534188,0 173.2531649351334,-41.41304889495477,0 173.253332330108,-41.41299634560517,0 173.253490416243,-41.41295284661572,0 173.2536607277266,-41.41293163493644,0 173.2538235900464,-41.41292686385972,0 173.2539853635012,-41.41288738244404,0 173.2540177170636,-41.41283927269789,0 173.2540138655066,-41.4128267021145,0 173.253997434053,-41.41278353263163,0 173.25401588351,-41.41269325756691,0 173.2540708699412,-41.41270272923356,0 173.2541247598482,-41.412741540984,0 173.2542325527542,-41.41281295815554,0 173.2543731960166,-41.41281915708535,0 173.2545350474528,-41.41287582523411,0 173.2546789628634,-41.41295939256068,0 173.2547908696506,-41.41304622648266,0 173.254984066453,-41.41311051615622,0 173.2550746745333,-41.41312308896944,0 173.2552128071192,-41.41317028142726,0 173.255371055439,-41.41321973411259,0 173.2555274661602,-41.4132325604405,0 173.255560065604,-41.41323674952066,0 173.2556089343158,-41.4132601363393,0 173.2557466538527,-41.41330221456844,0 173.255816467243,-41.41336013393354,0 173.25581974241,-41.41340044907913,0 173.2558614019824,-41.41341830494774,0 173.2558929896981,-41.41343967724036,0 173.2559202313595,-41.4134503239618,0 173.2560395961731,-41.41351914022619,0 173.2560825094075,-41.41350824102966,0 173.2561107561341,-41.41350363293791,0 173.2561192226773,-41.41349961652427,0 173.2561542558938,-41.41351167895225,0 173.2564322884774,-41.4134482317729,0 173.2569003388693,-41.41328696806502,0 173.2569119850248,-41.41330767120314,0 173.2569363785668,-41.41335251500938,0 173.2569895142707,-41.41338428496881,0 173.2571151670119,-41.41340826075873,0 173.2572370354419,-41.41343382029373,0 173.2573722375346,-41.41344312452676,0 173.2579782537339,-41.41333257567388,0 173.2580452236332,-41.41332243429166,0 173.2580829387807,-41.41332880813477,0 173.2580896445108,-41.41329653875428,0 173.2581355763921,-41.41322797631164,0 173.2582007965443,-41.41321716319759,0 173.2583743850466,-41.41322386968952,0 173.2583975169897,-41.41322638580301,0 173.2584235041325,-41.4132250411575,0 173.2584872010712,-41.41323476137693,0 173.2585575312171,-41.41328027898359,0 173.2586489712716,-41.41333434052464,0 173.2587315313617,-41.41339972196769,0 173.2588347979495,-41.41343106577197,0 173.2589088893694,-41.41342537472608,0 173.2589899464827,-41.41343911801652,0 173.2594312546698,-41.41337943853656,0 173.2595519516911,-41.41336510820118,0 173.2596863178894,-41.41337148503688,0 173.2599466639473,-41.41334106133887,0 173.2600491731091,-41.41330057573308,0 173.2601195858038,-41.41329001101369,0 173.2602836143051,-41.41320049476418,0 173.2603282916136,-41.41319471440603,0 173.2603977777688,-41.41320745512017,0 173.2605207361348,-41.41317795529091,0 173.2605743866352,-41.41316328475894,0 173.2607106812023,-41.41315825693994,0 173.260839510302,-41.4131714159763,0 173.2609126791296,-41.41314668911038,0 173.261035561497,-41.41325431127582,0 173.2610779658112,-41.41334039147049,0 173.2610974976611,-41.4133982298499,0 173.2611633817333,-41.41348096265318,0 173.261270328086,-41.41354164261095,0 173.2615305837155,-41.41361666905475,0 173.2616611784124,-41.41365597305167,0 173.2619257124942,-41.41370207454857,0 173.262046153054,-41.41369269454688,0 173.2621453120046,-41.4136369513617,0 173.2621966070082,-41.41363460510637,0 173.2622039051046,-41.41363201320757,0 173.2622369288668,-41.41362522189792,0 173.2622535325009,-41.41362530205062,0 173.2623251891181,-41.41361491420012,0 173.2624391901088,-41.41357384269611,0 173.2625105212689,-41.41353494558616,0 173.263214593204,-41.41369580224315,0 173.2632592641038,-41.41378858528468,0 173.2633940449013,-41.41393343032677,0 173.263500165442,-41.41392941136839,0 173.2635947925306,-41.41390158279075,0 173.2637154888359,-41.41391457707989,0 173.2638206074125,-41.413874676638,0 173.2639203497191,-41.41380343395284,0 173.2640035009742,-41.41379881776705,0 173.2640478399602,-41.41375556792585,0 173.2641030749639,-41.41372716096036,0 173.2641916784698,-41.41372187457065,0 173.2642642654287,-41.41377132792321,0 173.2643489231712,-41.41377854038217,0 173.2644697820781,-41.41382338249909,0 173.2645850351119,-41.41390267965313,0 173.2646675147467,-41.41395514465061,0 173.2647412722516,-41.41399479746223,0 173.2648799087433,-41.41404927958386,0 173.2650141908272,-41.4140824749508,0 173.2651132637249,-41.41410787057034,0 173.2652160164367,-41.41407509749512,0 173.2652643045917,-41.41402036693106,0 173.2653736048363,-41.41398264337035,0 173.2655045245221,-41.41397024686517,0 173.2656307558159,-41.41396102089344,0 173.2657351185858,-41.41399313061915,0 173.2658395527082,-41.41401953018484,0 173.2659138981659,-41.41397812169876,0 173.2660163335781,-41.4139917854054,0 173.2661390355337,-41.41397653376252,0 173.2662506903251,-41.41396262175643,0 173.2663554632193,-41.41395650451518,0 173.2664537009816,-41.41390453302827,0 173.2665852121296,-41.41389933728556,0 173.2666845377877,-41.41393437537714,0 173.2667750591395,-41.41391819599483,0 173.2668509217748,-41.41389741254056,0 173.266943121927,-41.41394527120292,0 173.2670762231054,-41.4139850046071,0 173.2671886272937,-41.41399984123445,0 173.2672392502006,-41.41407200677043,0 173.267247884673,-41.41417041700834,0 173.2673573427231,-41.41419036671058,0 173.2675171128679,-41.41418063917558,0 173.2676591013174,-41.41417830027054,0 173.267767140992,-41.41418441183912,0 173.2678927907633,-41.41418215480115,0 173.2679786217802,-41.41418056415797,0 173.2680891771191,-41.41418475185044,0 173.2681607495578,-41.41414728288526,0 173.2682591591784,-41.41407570627342,0 173.2683780164462,-41.41402039009837,0 173.2684656909148,-41.41404897017335,0 173.2684881582298,-41.41404654154808,0 173.2685474985787,-41.41403422301658,0 173.2686696267827,-41.41404595671289,0 173.2687655077391,-41.41403891314634,0 173.2688864613761,-41.41407076597901,0 173.2690313867554,-41.41405819761719,0 173.2691734661154,-41.41402491649884,0 173.2692182198137,-41.41404377814337,0 173.2692968430996,-41.41415936222857,0 173.2694092369983,-41.41418049120474,0 173.2695223969447,-41.41418400576367,0 173.2696264168988,-41.41419574393103,0 173.2697408343687,-41.41422642217673,0 173.2698446839422,-41.41422559047155,0 173.2699483726137,-41.41414948003368,0 173.2700584231201,-41.41407018570003,0 173.2701431586481,-41.41404018611868,0 173.2702076216584,-41.41402568477803,0 173.270313910152,-41.41406599803593,0 173.2703677146274,-41.41410757489327,0 173.2704627626377,-41.41411955857283,0 173.2705481827219,-41.41416113488705,0 173.270645568597,-41.41416842988485,0 173.2707288849698,-41.41418686964511,0 173.2707934356093,-41.41418510898931,0 173.2708878172648,-41.41420053388192,0 173.2709707123573,-41.41422727584411,0 173.2710968600022,-41.41421210087365,0 173.2711776593229,-41.41415552844603,0 173.2712705354762,-41.4141153789242,0 173.2713675979158,-41.41408118156912,0 173.2714580393823,-41.41403943428948,0 173.2715333061905,-41.4139813523817,0 173.2716321245289,-41.41397321858622,0 173.2717301103345,-41.41397204772687,0 173.2718419240885,-41.4139563734413,0 173.271964634709,-41.41397280331964,0 173.2720865944886,-41.41396040158819,0 173.2723189433569,-41.4139614138144,0 173.2724147460797,-41.41396183197147,0 173.2725260572029,-41.41396937254113,0 173.2726263133611,-41.41401153459383,0 173.2727468345343,-41.414016226546,0 173.2728474261597,-41.41399410324286,0 173.2729685429413,-41.41399787477549,0 173.2730125460701,-41.41399125339283,0 173.273081784277,-41.41393057258038,0 173.273357304523,-41.4138382040806,0 173.2734147106259,-41.41380945421216,0 173.2734446433625,-41.41380769145637,0 173.2735995305951,-41.41382982597855,0 173.2737173800192,-41.41384231211757,0 173.2738151225113,-41.41387500584983,0 173.273922403425,-41.41395027812192,0 173.2740113416284,-41.41396553235855,0 173.2741225616713,-41.41393912474193,0 173.2742366423172,-41.41391037724321,0 173.2743219747327,-41.41387173759274,0 173.2744465330056,-41.41385455495107,0 173.2745577565724,-41.41382622829727,0 173.2746905223924,-41.41381826487373,0 173.2748538014951,-41.41384181888701,0 173.2749602539132,-41.41381398964546,0 173.2752118855088,-41.41371936605055,0 173.2753305732805,-41.4136971540508,0 173.2754028282152,-41.41367535573676,0 173.2754304828077,-41.41361132223308,0 173.2755532865502,-41.41358064473609,0 173.2757008844214,-41.4135435960921,0 173.2758429641683,-41.4135403280947,0 173.2759667633775,-41.41358576360057,0 173.2761136929474,-41.4136042846702,0 173.2762514154412,-41.41364377117876,0 173.2764023636784,-41.41368526146161,0 173.2765460335474,-41.41372817422318,0 173.276650638206,-41.41369062237853,0 173.2767433410998,-41.41370504576159,0 173.2767661473751,-41.4136980046287,0 173.2768627060304,-41.41369590505394,0 173.2769294170064,-41.41373387357873,0 173.2768930452434,-41.41370001155855,0 173.2768250654507,-41.41361879618318,0 173.2767369758921,-41.41353119953226,0 173.2767199631153,-41.41345811243519,0 173.2767274232157,-41.41340220338082,0 173.2768652292739,-41.41334922887581,0 173.2769777153311,-41.41326533000076,0 173.2771131592541,-41.41322819980759,0 173.2772150932595,-41.4132190637806,0 173.2772568264134,-41.41320137953397,0 173.2772609362426,-41.41319174413176,0 173.2773478561706,-41.41311823278436,0 173.2774286600956,-41.4130730550353,0 173.277549777789,-41.4130371830041,0 173.2776294038826,-41.41304254226974,0 173.2777037529236,-41.41301832522413,0 173.2778094498166,-41.41297356542648,0 173.2779344316796,-41.41294942683853,0 173.2780760027096,-41.41293073183568,0 173.2782122873995,-41.41288933142546,0 173.2783200035215,-41.41289251631722,0 173.2784234368924,-41.41284994126499,0 173.2785477385638,-41.41280057163066,0 173.2787517565253,-41.41267476231497,0 173.2788431209934,-41.41265539352263,0 173.2789258445058,-41.41262605890121,0 173.2790500655811,-41.41258348783669,0 173.2791556013777,-41.41252020491081,0 173.2792812487885,-41.41248415882493,0 173.2793676669898,-41.41243756180581,0 173.279669072749,-41.41239195833347,0 173.2798166058245,-41.41237193249278,0 173.2799512154749,-41.41234250967121,0 173.2801201061267,-41.41230990733331,0 173.2801884269955,-41.41227772444424,0 173.2803123950062,-41.41226347245866,0 173.2804605005353,-41.41229180878301,0 173.2806184097831,-41.4122874433183,0 173.2807768349599,-41.41229230644053,0 173.2809301340598,-41.41230379072334,0 173.2810597188581,-41.41225132668082,0 173.2813748049831,-41.41215141556251,0 173.2815381682441,-41.41210757779722,0 173.2816879492714,-41.41207086742196,0 173.2818269219139,-41.41206625751286,0 173.2819589410633,-41.41206928218335,0 173.2820799737702,-41.41203994328927,0 173.2821917862657,-41.4120054132931,0 173.2823449331854,-41.4119810215784,0 173.2824591756578,-41.41196115329908,0 173.2825528869259,-41.41192000268295,0 173.2826365392546,-41.41181128652381,0 173.282702082099,-41.41175915447417,0 173.282755727523,-41.41171079697725,0 173.2827720747043,-41.4116984749724,0 173.2827743450029,-41.41167541719388,0 173.2828498607998,-41.41161700298538,0 173.2829035867464,-41.41155388629999,0 173.28299957088,-41.41152136529295,0 173.2830893289221,-41.4115752584211,0 173.2832459890041,-41.41165204260547,0 173.2833609048687,-41.41164718290393,0 173.2836373444836,-41.41149831809075,0 173.2837308861344,-41.41150485575454,0 173.2837986116351,-41.41147971340892,0 173.2838992777678,-41.41149103260283,0 173.2839797521666,-41.41150192324245,0 173.2840661635519,-41.41147158498502,0 173.2841361572662,-41.4114200356321,0 173.284228439612,-41.4113979048754,0 173.2843135139667,-41.41139933766709,0 173.2843072339632,-41.41141316630966,0 173.284316114341,-41.41145951898609,0 173.2843664915696,-41.41149505549833,0 173.284421804039,-41.41152967092236,0 173.2844829969747,-41.41155732963927,0 173.2845807339299,-41.4115715820428,0 173.2846367251113,-41.41158868134471,0 173.2846364727826,-41.41157418427098,0 173.2846476195786,-41.41157393240692,0 173.2846641278387,-41.41157996177429,0 173.2846721762541,-41.41158532659049,0 173.2847026873686,-41.41159027732775,0 173.2847905239711,-41.41155783804013,0 173.284797569812,-41.41171499654633,0 173.2848663777631,-41.41173636963928,0 173.2848659577906,-41.41175280410537,0 173.2848876725736,-41.41174551185261,0 173.2849567413519,-41.41176604653701,0 173.2850403859009,-41.41174903211019,0 173.2851160792551,-41.41178038280158,0 173.2851922699573,-41.41181600090459,0 173.2852004825285,-41.41186243623523,0 173.2852489255901,-41.41189026936292,0 173.2853003125811,-41.41191574509717,0 173.2853499346842,-41.41195925205079,0 173.2854232710191,-41.41196511694226,0 173.2854526874948,-41.41196595463197,0 173.2855319857721,-41.4120179261603,0 173.2856079294665,-41.41204047009992,0 173.2856570415394,-41.4120876613827,0 173.2856995307173,-41.41213015903013,0 173.2857809293648,-41.41217231952321,0 173.2858029692707,-41.41218514291219,0 173.2858803368603,-41.41221909123171,0 173.28596389945,-41.412258068341,0 173.2859691795619,-41.41225094103569,0 173.2860446223533,-41.41222630153264,0 173.2861107569327,-41.41225120068206,0 173.2861807403488,-41.41225337221285,0 173.2862483872199,-41.41224633655946,0 173.2863400825189,-41.41225145349632,0 173.2864254975842,-41.41218690697475,0 173.2865144211056,-41.41213443712076,0 173.2866195321243,-41.41214156514521,0 173.2869092141082,-41.41209437757528,0 173.2870018414655,-41.41203536851263,0 173.2870804604939,-41.41196781370849,0 173.2871409828339,-41.41188114849919,0 173.2872313341862,-41.41180210126899,0 173.2873015841073,-41.411721473788,0 173.2873828842478,-41.41168224902324,0 173.2874744197371,-41.41164503433964,0 173.2875938586544,-41.41162131255336,0 173.2876570558223,-41.41161150475357,0 173.2876899141965,-41.41160874104487,0 173.2877741683417,-41.41145867035635,0 173.2879321266135,-41.41133591082174,0 173.2879431822765,-41.41107278797632,0 - - -
- - Richmond Range Route Richmond Range - - - - - - - - - - - - - - -
Richmond Range Route Richmond Range
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)75.204
NAMERichmond Range Route Richmond Range
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1855.974
Tokm1931.178
categoryTramping Track
CycleProhibited
walkidWaiau Pass Track
GuidebookNelson Marlborough
colourred
mapNamemap083
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/waiau-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 172.9578235500016,-41.76892866647562,0 172.9574743287564,-41.76834516222066,0 172.9574625938582,-41.76827182081984,0 172.9574878231356,-41.76819906504589,0 172.9575744924871,-41.76814902518529,0 172.9576502646675,-41.76805573487953,0 172.9577419631941,-41.76796278003957,0 172.9579252749116,-41.76795599026065,0 172.957977075532,-41.76794207714356,0 172.9580670967775,-41.76788533149995,0 172.958044045921,-41.76779002957541,0 172.958130044236,-41.76777502551082,0 172.9581588791566,-41.76770461722872,0 172.9582044760219,-41.76763923826118,0 172.9582573654626,-41.76740395774864,0 172.9583279423097,-41.76756489131702,0 172.958387452943,-41.76760353234424,0 172.9584688414142,-41.76757612276607,0 172.9585705975926,-41.76754242726251,0 172.9586285159145,-41.76743052853804,0 172.9587521498261,-41.76733539386307,0 172.9587884440575,-41.76732173240945,0 172.9588339568139,-41.76725476071157,0 172.9588968215458,-41.7671541773553,0 172.9589830713725,-41.76710153954442,0 172.9590208734167,-41.76700766190797,0 172.9591055311413,-41.76687941929557,0 172.9591909418747,-41.76685905053199,0 172.9593263932336,-41.76677498006615,0 172.9594345206183,-41.76664363538123,0 172.9595339300929,-41.76658873382988,0 172.9596520308101,-41.76656794659634,0 172.9598153938635,-41.76653953260948,0 172.9599197491279,-41.76649946704242,0 172.9600761555344,-41.76636451864881,0 172.9602138700812,-41.76631162937328,0 172.960438086303,-41.76628539364327,0 172.9605651550306,-41.76626477428447,0 172.9606844301549,-41.76616921989106,0 172.9606663252413,-41.76610979248006,0 172.9607885323318,-41.76599957102203,0 172.9610181974645,-41.76609009512251,0 172.9611100622733,-41.76597207734248,0 172.9611378911004,-41.76586755560567,0 172.9611794648547,-41.76578708908759,0 172.961187931074,-41.76577476852256,0 172.9612020959389,-41.76574895193689,0 172.9612092211437,-41.76574392300844,0 172.9612434190327,-41.76567292758237,0 172.9613333570303,-41.76557242855026,0 172.9614196902902,-41.76549615356121,0 172.9614959664188,-41.76532817989999,0 172.9616138992386,-41.76531569057081,0 172.961692856026,-41.76532206058257,0 172.961824452563,-41.76534712322852,0 172.9619697944576,-41.76531879295671,0 172.9620752381756,-41.76533899276464,0 172.9621062519785,-41.76532868273374,0 172.9622133726646,-41.765228184167,0 172.9623463933785,-41.76517345064371,0 172.9623918231529,-41.76515517763237,0 172.9625399317266,-41.76508904501274,0 172.9625931569719,-41.7650690946498,0 172.9627436951893,-41.76496574727878,0 172.9628725255606,-41.76490112295486,0 172.9629701753854,-41.76482526657549,0 172.9631320294727,-41.76474723030947,0 172.9632465266249,-41.76470448266103,0 172.9633349541375,-41.76467757717111,0 172.9633707453875,-41.76465553305383,0 172.9634254801917,-41.76459895386367,0 172.9634841536872,-41.76459115892221,0 172.9635567405355,-41.76453215073963,0 172.963588927035,-41.764502059427,0 172.9637007406599,-41.76441874367342,0 172.9637657855261,-41.76431003033513,0 172.9637783568971,-41.76429368472408,0 172.9638736595653,-41.76418857646687,0 172.9639602444358,-41.76413124503645,0 172.9640154819906,-41.76414205728712,0 172.9641073477717,-41.76407868907914,0 172.9642110312219,-41.76401674759079,0 172.9643415383048,-41.76389663426617,0 172.9643927519789,-41.7638566534918,0 172.9645232570825,-41.76379571620688,0 172.9645292920937,-41.76379026881121,0 172.9645919903409,-41.76373821755269,0 172.9646737957346,-41.76379236423225,0 172.9646800005264,-41.76378222241466,0 172.9647548494573,-41.76370125229657,0 172.9648279394171,-41.76363562148534,0 172.9650051329712,-41.76359731731291,0 172.9651104937305,-41.76356068800082,0 172.965138070469,-41.76354568433949,0 172.9651962406902,-41.76345189095019,0 172.9652472864177,-41.76339824696147,0 172.9653633750081,-41.76339346865425,0 172.965457588638,-41.76329732885066,0 172.9655737621849,-41.7632750325637,0 172.965659256089,-41.76320319998455,0 172.9657532184559,-41.76310538364996,0 172.9657826373521,-41.76309817417112,0 172.9659015779966,-41.76317922785834,0 172.9659490204797,-41.76316766157808,0 172.9660672885593,-41.76307596346518,0 172.9662077684097,-41.76309054763257,0 172.9662581433927,-41.76303371810425,0 172.9663924221656,-41.76295274813715,0 172.9665258624287,-41.76286188803651,0 172.9665334902164,-41.76284671699869,0 172.9665696990709,-41.76273917716608,0 172.9666550276846,-41.76266474706076,0 172.9666553625507,-41.76254773488464,0 172.9667579570872,-41.76246265888021,0 172.966959960458,-41.76241546800841,0 172.9671207259475,-41.7623629976675,0 172.9672669894771,-41.76231656309647,0 172.9673332897854,-41.76229711684875,0 172.9674802261703,-41.7622660193859,0 172.9676151740248,-41.76222863684458,0 172.9676504618517,-41.76222125921008,0 172.9676970652098,-41.76221371631378,0 172.9677583359864,-41.76218614045157,0 172.9678068690597,-41.76214221861392,0 172.9679299982475,-41.76203945657397,0 172.9679594188199,-41.76199838456598,0 172.9680610905603,-41.76185002545636,0 172.968050948618,-41.76175195665957,0 172.9680343533697,-41.76169604983348,0 172.9680291574433,-41.76159949108792,0 172.9679982281838,-41.76152992018319,0 172.9680288218775,-41.76141517266976,0 172.9680652833762,-41.76134945751469,0 172.9681281272779,-41.76131824574605,0 172.9681372704902,-41.76109106092405,0 172.9685139485837,-41.76059150440386,0 172.9695908638557,-41.75963377722744,0 172.9696683139469,-41.75892065218451,0 172.9698175089611,-41.7586561130644,0 172.9702867262962,-41.75825831930769,0 172.9702485054536,-41.75788095732223,0 172.9699132244728,-41.75761525755019,0 172.9698904337908,-41.75737117855857,0 172.9703031520503,-41.75702466047145,0 172.9707638223021,-41.75677269920102,0 172.9717118182994,-41.75597709599568,0 172.9717891006127,-41.75565757902029,0 172.9716558364325,-41.75525139030372,0 172.9716980641702,-41.75505508118691,0 172.972168472201,-41.7544502418406,0 172.9720594946337,-41.75384775603251,0 172.9722291485676,-41.75361741830707,0 172.9724660237899,-41.75341659095488,0 172.9726068404809,-41.75322934450207,0 172.9727069205727,-41.75277386436582,0 172.9731270183739,-41.75212661357438,0 172.9732198946592,-41.75160073745202,0 172.9735831552326,-41.75139554526778,0 172.9743925199903,-41.75103746911855,0 172.9749755691991,-41.75113319220245,0 172.9755346423307,-41.75114341222072,0 172.9762600037581,-41.75074846160151,0 172.9763020791686,-41.75069447746461,0 172.9763515393421,-41.75033976079632,0 172.9768638483251,-41.75025426559652,0 172.9773233365014,-41.7499141280787,0 172.977482084931,-41.74962780049727,0 172.9777280054145,-41.7485041245961,0 172.978468806899,-41.74803976160804,0 172.9795633178776,-41.74727382776526,0 172.9800119258652,-41.7470066175035,0 172.9805941225954,-41.74641702467115,0 172.9809790201458,-41.74610555800167,0 172.9816306260984,-41.74587606576394,0 172.982005974423,-41.7453880600659,0 172.9823306914698,-41.74509285334315,0 172.9823596862663,-41.74501641570191,0 172.9823526438228,-41.74462380277765,0 172.9820113374292,-41.74410328621646,0 172.982146112799,-41.74390430322123,0 172.9822555843454,-41.74388535939275,0 172.9833086830053,-41.7439468841684,0 172.9836417841541,-41.74389659335625,0 172.9842982531984,-41.74369139848078,0 172.9857617292774,-41.74253922345165,0 172.9868802218687,-41.74147874665144,0 172.9868611036762,-41.74119057751914,0 172.9867769529032,-41.74105194357366,0 172.9869093822424,-41.74076561570351,0 172.9882379168028,-41.740435538352,0 172.9883629755959,-41.74023201728154,0 172.9885626350468,-41.73965585100705,0 172.9888898556332,-41.73924345622734,0 172.9885990095049,-41.73873836481929,0 172.988283344191,-41.73833569860945,0 172.9882030406656,-41.73764067076766,0 172.9883041349377,-41.73736960489748,0 172.9889797161151,-41.7371798375327,0 172.9889823935793,-41.73653594132227,0 172.9893792004912,-41.73600217392404,0 172.9894851364454,-41.73575641819082,0 172.9895778457726,-41.735068436727,0 172.9895454923795,-41.7347137077624,0 172.9894289795522,-41.73429495319204,0 172.9894304930608,-41.7337033606944,0 172.9894881571481,-41.73362507188025,0 172.9895372762618,-41.7336140057548,0 172.9895723186947,-41.73360629617272,0 172.9897478265129,-41.73365122129724,0 172.9904557729203,-41.73404132065517,0 172.9910049495859,-41.73422236775847,0 172.9911636995143,-41.73440157514692,0 172.9912560772031,-41.73456720180197,0 172.9915107142975,-41.73533882722963,0 172.9918027370697,-41.73570898554416,0 172.9922915710514,-41.73607559956395,0 172.9926486327756,-41.73623586437081,0 172.9930548369738,-41.73626571119255,0 172.9935116425425,-41.73609102840585,0 172.9935320914708,-41.73599379719343,0 172.9934637057106,-41.73589841641912,0 172.9932340264247,-41.73588031149926,0 172.9930212955713,-41.73582801085473,0 172.9929480361268,-41.73570730065531,0 172.9928615398574,-41.73542282278248,0 172.9928568405419,-41.73515090851793,0 172.9928905503882,-41.73505100492763,0 172.9930107427506,-41.73497003230627,0 172.9934182694617,-41.73483139409822,0 172.9934375473548,-41.73470616879507,0 172.9931818977815,-41.73450182007402,0 172.993050976532,-41.73424969669147,0 172.9930269999116,-41.73369682676709,0 172.9919215881521,-41.73178507823182,0 172.991559254705,-41.73119505715008,0 172.9915186855356,-41.7311626196262,0 172.991437632366,-41.73110922678772,0 172.9913460190515,-41.73104242333924,0 172.9912425852866,-41.7309818220978,0 172.9911579296259,-41.73091451553069,0 172.9910991715645,-41.73083178626457,0 172.9910588546382,-41.73073522711653,0 172.9910216386943,-41.73063984091758,0 172.9909982525589,-41.73054772355882,0 172.9909690833847,-41.73045208577235,0 172.9909170332928,-41.73035896274662,0 172.9909190433507,-41.73026768413326,0 172.9908997655191,-41.73017129231281,0 172.9908439417002,-41.73008453966867,0 172.9907871968161,-41.72999904431497,0 172.9907394195864,-41.72991354785103,0 172.9906942415072,-41.72983199308163,0 172.9906705201391,-41.72974348025809,0 172.9906586173572,-41.72965387672914,0 172.9906294493026,-41.72956502838351,0 172.990615955105,-41.72947224071105,0 172.9905985214419,-41.72938263851941,0 172.9905870368304,-41.72929597042421,0 172.9905549339867,-41.72920728934975,0 172.9905342307949,-41.72912036918865,0 172.9905086656164,-41.72903076630777,0 172.9904729599799,-41.72893864960194,0 172.9904241765701,-41.7288517288893,0 172.9903701972911,-41.72876824482567,0 172.990348655989,-41.72867629499113,0 172.9903419498201,-41.72858334121214,0 172.9903178945042,-41.7284990183685,0 172.9902814326609,-41.72841008643574,0 172.990236673322,-41.72832928449397,0 172.990190992175,-41.72823859356573,0 172.9901335752916,-41.7281528456068,0 172.990073729114,-41.72807137397372,0 172.9900692876905,-41.72803935516588,0 172.9900160620484,-41.72796483935358,0 172.989985552178,-41.72787875768552,0 172.9899503481842,-41.72778613824695,0 172.9899135502398,-41.72769175776548,0 172.9898710550087,-41.7276013173776,0 172.9898287258512,-41.72751833576151,0 172.9897819562661,-41.72742923611646,0 172.9897470865189,-41.72734005284346,0 172.9897021585444,-41.72724743335404,0 172.9896826293456,-41.72716101571066,0 172.9896588252526,-41.7271008335536,0 172.9896092887549,-41.72700955476199,0 172.9895656190423,-41.72692322137928,0 172.9895203560398,-41.72683135477541,0 172.9894781945237,-41.72674368033722,0 172.9894406445667,-41.72665315555786,0 172.9893981473386,-41.72656112252142,0 172.9893665474442,-41.72647378317392,0 172.9893552333403,-41.72638703026166,0 172.9893074561387,-41.72630723464526,0 172.9892849930472,-41.72621243554156,0 172.989258421694,-41.72612467689825,0 172.9892034356113,-41.72603784060819,0 172.989176361705,-41.72594387961137,0 172.9891552411137,-41.72585394083247,0 172.9891318551649,-41.72576542856348,0 172.9891299260105,-41.72566928840372,0 172.9891171865561,-41.72558169765702,0 172.9890776241079,-41.72549703977568,0 172.9890683203127,-41.72539922268789,0 172.9890503826354,-41.72530895002199,0 172.9890332827237,-41.72521339657431,0 172.9890249848118,-41.7251188491508,0 172.989019452857,-41.72502773639661,0 172.9889889439436,-41.7249449239967,0 172.9889635466329,-41.72490829598788,0 172.9889255757087,-41.72482212860557,0 172.9888808180776,-41.72474174671698,0 172.9888318667387,-41.72466245336227,0 172.9887789766537,-41.7245769582083,0 172.9887081494307,-41.72449925781966,0 172.9886388305878,-41.7244185401518,0 172.9885762192586,-41.72433941556588,0 172.9885076534511,-41.72425836282759,0 172.9884619729189,-41.72416708298412,0 172.9884302891045,-41.72409868707067,0 172.9884147824554,-41.72400874959813,0 172.98839986359,-41.72391981646703,0 172.9883498228523,-41.7238412784813,0 172.9882860373902,-41.72375779507278,0 172.9882174732338,-41.72367967576918,0 172.9881696954143,-41.72358906751279,0 172.9881129507028,-41.72350717628515,0 172.9880090993024,-41.72345269413766,0 172.9879217589923,-41.72337893393203,0 172.9878636736597,-41.72330014358122,0 172.9877776745062,-41.72323778189553,0 172.9876806957751,-41.7231846404398,0 172.9875633501235,-41.72315924307824,0 172.9874448292734,-41.72312496176656,0 172.9873001572601,-41.72314876695586,0 172.987180462944,-41.72311548952762,0 172.9870900230204,-41.72304348922751,0 172.987045095626,-41.7229399736376,0 172.9869945530156,-41.72284617875945,0 172.9869473638652,-41.72275146370787,0 172.9869351258748,-41.72266295130771,0 172.9869109854547,-41.72256873785328,0 172.9868793862291,-41.72246882564802,0 172.9868293458553,-41.72240897942227,0 172.9868554983607,-41.72239858641588,0 172.986815431533,-41.72231166506894,0 172.9867522321302,-41.72223664752876,0 172.9867165249239,-41.72215559477836,0 172.9866946486581,-41.72206817108682,0 172.9866460343646,-41.72199223104736,0 172.9866066395974,-41.72191947697394,0 172.9865612923326,-41.72183632709019,0 172.9865269269684,-41.72175108342081,0 172.9865368175031,-41.72165494363352,0 172.9865332975716,-41.72155586866033,0 172.9865543349879,-41.72146685299429,0 172.9866085668807,-41.72139216970319,0 172.9865781406513,-41.72131648214243,0 172.9865526591638,-41.72123568001406,0 172.986495327821,-41.72115596850385,0 172.9864586974831,-41.72106695326448,0 172.9864404260641,-41.72098606729119,0 172.9864187172962,-41.72089478850764,0 172.9864006947825,-41.72080845505469,0 172.9863662457807,-41.72071868524444,0 172.986351576494,-41.7206262318528,0 172.9863195589861,-41.72053445012132,0 172.9863023756559,-41.72044342314751,0 172.986283348236,-41.72035205998346,0 172.9862308783093,-41.72027369006793,0 172.9861766467481,-41.72020328129975,0 172.9861346537198,-41.72011694761017,0 172.9860438778981,-41.72006087278108,0 172.9860129491444,-41.71996339138822,0 172.9859823534438,-41.71987169349774,0 172.9859060800065,-41.71980639884435,0 172.985882861041,-41.71971587364786,0 172.9858033177086,-41.71964588491789,0 172.9857469906396,-41.71958025485301,0 172.9856907480205,-41.71951923460705,0 172.9856363489662,-41.71942368130563,0 172.9856355951879,-41.71932108663373,0 172.9855521948576,-41.71922913701039,0 172.9854460811207,-41.71917121781105,0 172.9853462511834,-41.71910399497457,0 172.9852590803135,-41.71902227042315,0 172.9851765190709,-41.71891883926539,0 172.9851058591468,-41.7188443242132,0 172.9850251411637,-41.71878305186433,0 172.984989434594,-41.71869613129174,0 172.9848947187354,-41.71863427245957,0 172.9848568332928,-41.71851986005538,0 172.9848252327232,-41.71841693072985,0 172.9847809768857,-41.71832405886278,0 172.9847043660935,-41.71825951904592,0 172.9846799749622,-41.71816849083385,0 172.984670168652,-41.71807788248795,0 172.9846396583828,-41.71798752537617,0 172.9846020221132,-41.71790043778302,0 172.9845645562159,-41.7178151930571,0 172.9845624592047,-41.71772148458492,0 172.9845449424566,-41.71762559521833,0 172.9845285963553,-41.71753104626241,0 172.984537566668,-41.71744697598453,0 172.9845045410839,-41.71736022403581,0 172.9845001820423,-41.71728009257191,0 172.9844963265792,-41.71718554528979,0 172.9845030329347,-41.71709761875798,0 172.9845030334442,-41.71700541744787,0 172.984509822547,-41.71691321704731,0 172.9845148506095,-41.716820429145,0 172.9844990921884,-41.71672764114486,0 172.9845085642115,-41.71663653006313,0 172.9845056315424,-41.71654399418343,0 172.9844915483803,-41.71644877538065,0 172.9844874416467,-41.71635456311927,0 172.9844926386422,-41.71625909291259,0 172.9845051274391,-41.71616027034169,0 172.9845261655933,-41.71606748278045,0 172.9845514800253,-41.71597838240815,0 172.9845658973652,-41.71588769170479,0 172.9845741951276,-41.71579976536267,0 172.9845832474824,-41.7157131793819,0 172.9846036985001,-41.71562642648831,0 172.9846381492814,-41.71553556732123,0 172.9846473690514,-41.71544713849495,0 172.9846837473179,-41.71537388037041,0 172.9846864285148,-41.71529098283842,0 172.9846911228401,-41.71520481689293,0 172.9847139217351,-41.71511621963055,0 172.9847052881104,-41.71503491574637,0 172.9847140897869,-41.71494983930008,0 172.9847296785887,-41.71486484662032,0 172.9847382289553,-41.71477474146297,0 172.984723894821,-41.71468363077179,0 172.9847348766168,-41.71459025635236,0 172.9846997549684,-41.71450677192125,0 172.9846353821982,-41.71442412663529,0 172.9846053751066,-41.71433829650297,0 172.9846044546542,-41.71424106544933,0 172.9846068848339,-41.71414735662395,0 172.9845738604864,-41.7140721706857,0 172.9845657282164,-41.71397175554145,0 172.9845619580583,-41.7138828241595,0 172.9845518990987,-41.71381157650553,0 172.9845401637561,-41.71372306467753,0 172.9844918844926,-41.71363027674769,0 172.9844938956222,-41.71354017160839,0 172.9845190413766,-41.71344872482275,0 172.9845453613997,-41.71335769701671,0 172.9845729381196,-41.71326926792852,0 172.9845833301924,-41.71318377285095,0 172.9846102369776,-41.71310137843178,0 172.9846211336531,-41.7130217506499,0 172.9846320306353,-41.71293063878775,0 172.9846705858421,-41.71284656878525,0 172.9847088911959,-41.71277146711918,0 172.9847583461262,-41.71269988599906,0 172.9848109829285,-41.71261774353472,0 172.9848359620858,-41.71253099025366,0 172.9848097255741,-41.71243895743834,0 172.9848217966132,-41.71234784570412,0 172.9848209578769,-41.71225966858591,0 172.9848177730317,-41.71217517777382,0 172.9848305972569,-41.71208599545943,0 172.9848209583724,-41.71199186617184,0 172.9847891906394,-41.71191835665849,0 172.9847612790436,-41.71186077403777,0 172.9847539872151,-41.71174929373184,0 172.9847478689185,-41.71166706691137,0 172.9847882686779,-41.71158173969474,0 172.9847851679532,-41.7114976695155,0 172.9847665596679,-41.71141292804858,0 172.9847232252512,-41.71134302342452,0 172.98472733314,-41.71125979095807,0 172.9847509690567,-41.71118376677842,0 172.9847728461526,-41.71109827137217,0 172.9848095585788,-41.71101403351526,0 172.9848345365433,-41.71092459789267,0 172.9848441768288,-41.71083818032517,0 172.9848947186218,-41.71075872073449,0 172.9849319350089,-41.71067683015684,0 172.984948698676,-41.71058932185079,0 172.9849563266879,-41.71050743188479,0 172.9849743473944,-41.71042084516296,0 172.984977447608,-41.71032721922122,0 172.985004940533,-41.71023434855734,0 172.9850327686208,-41.71014197962852,0 172.9850825580542,-41.71005866390106,0 172.9851167562942,-41.709973335744,0 172.9851721594033,-41.70989856936397,0 172.9851992335654,-41.70981089480267,0 172.9852467585001,-41.70973026102983,0 172.9852755925513,-41.70964652638902,0 172.9853195976158,-41.70956647940022,0 172.9853401340903,-41.70948215731922,0 172.9853823774701,-41.70939917555427,0 172.9854169945504,-41.70931879315869,0 172.98543199874,-41.70923623214947,0 172.9854682927285,-41.70915475919055,0 172.9855103689835,-41.709075634206,0 172.9855391202536,-41.7089937432375,0 172.9855772581303,-41.70890028469123,0 172.9856389484401,-41.7088212431785,0 172.9856808586792,-41.70872996478751,0 172.9857324895673,-41.70864346316527,0 172.9857580545533,-41.70855293931238,0 172.9858111955226,-41.70847456767434,0 172.9858499212523,-41.70839401811441,0 172.9858279612361,-41.70831497607139,0 172.9858131243452,-41.7082357673702,0 172.9857581396109,-41.70816209037706,0 172.9857151389653,-41.70808807888023,0 172.9856110358481,-41.70803761967681,0 172.9855037481533,-41.70799009449849,0 172.9853941966763,-41.70794516748667,0 172.9852839750599,-41.70791423826125,0 172.9851677178585,-41.70790635919418,0 172.9850440840851,-41.70790878950457,0 172.9849296717025,-41.70788666206075,0 172.984826825623,-41.70784123188719,0 172.9847138384854,-41.70780602786984,0 172.9846060461839,-41.70776193890354,0 172.9845129235376,-41.70771097667358,0 172.9844544182743,-41.70763495312111,0 172.984469672214,-41.70754199712123,0 172.9845086494343,-41.70745993843812,0 172.984545277401,-41.70736983245462,0 172.9845759556707,-41.70726883064177,0 172.9846147636199,-41.70717956439192,0 172.9846207987077,-41.70708392660612,0 172.9846291804356,-41.7069966711679,0 172.9846436808247,-41.70691176200447,0 172.9846934684747,-41.70682249538528,0 172.9847555794585,-41.70673968218949,0 172.984793633585,-41.70664882241064,0 172.9848464391822,-41.70656374533881,0 172.9848508815435,-41.70648227373552,0 172.9848705792822,-41.70639535302274,0 172.9848550713782,-41.7062987936483,0 172.9848378892099,-41.70619703783586,0 172.9848392307776,-41.70610416549522,0 172.9848400680929,-41.70600886296107,0 172.9848761944586,-41.70593543799086,0 172.9849864169449,-41.70589562381486,0 172.9851035971313,-41.70586737648754,0 172.9852590802491,-41.70587944627597,0 172.9853402173913,-41.70583502358105,0 172.9854474216653,-41.70579898075803,0 172.9855376937797,-41.70573678710807,0 172.9856137190477,-41.70566906122695,0 172.9856379414065,-41.70559043920585,0 172.9856855514794,-41.70551047533279,0 172.9857282992877,-41.70543177003268,0 172.9857949360803,-41.70535096810919,0 172.9858269541279,-41.70526035941838,0 172.9858562910544,-41.70517293621115,0 172.9858822751246,-41.70507713144693,0 172.9858876395097,-41.70499406653472,0 172.9859277895748,-41.70490329037401,0 172.9860161346968,-41.70484009180483,0 172.9860176422701,-41.70475526642231,0 172.9860317246134,-41.70465853873743,0 172.9860360827895,-41.70456977487745,0 172.9859745600861,-41.70451244239111,0 172.9859584661811,-41.70443549699396,0 172.9859398586718,-41.70436047881014,0 172.9859629918681,-41.70428981977953,0 172.9859954299228,-41.70424304789243,0 172.9859726312019,-41.70416308428633,0 172.9859449706634,-41.70407256101888,0 172.9859494975252,-41.70400433073429,0 172.9859089291359,-41.70392738593194,0 172.9859120305499,-41.70384817667944,0 172.9860001239935,-41.703802747356,0 172.9860812607882,-41.70376217827276,0 172.9861233382506,-41.70371347908596,0 172.9861113530376,-41.70365639852887,0 172.9860412796814,-41.70361507521352,0 172.9859987837775,-41.703548272236,0 172.9860844471394,-41.70345523263893,0 172.9861928232639,-41.7034549817997,0 172.9862588737462,-41.70339471577729,0 172.9863256770642,-41.70333746719203,0 172.9864285243164,-41.70337107869703,0 172.9865195514568,-41.70336755771436,0 172.9864887889316,-41.70326865216033,0 172.9864736190353,-41.70321442021808,0 172.9864602904441,-41.70318902393425,0 172.9864006952926,-41.70316035709504,0 172.9862897189672,-41.70314258724116,0 172.9862162937685,-41.70308525525326,0 172.9861752227101,-41.70299959246377,0 172.9861455511294,-41.70290571562646,0 172.9861526758654,-41.70281661610126,0 172.9861217453639,-41.70273137244603,0 172.9860985267806,-41.70263824936827,0 172.9860217502417,-41.70256985247367,0 172.985934996947,-41.70250153987878,0 172.9858637507937,-41.70242694034169,0 172.9857899896019,-41.70235619820407,0 172.9856910009137,-41.7022911544005,0 172.9856004748399,-41.70222636286843,0 172.9855122985805,-41.70215645730806,0 172.9854540433271,-41.70207615763295,0 172.9854217733964,-41.70199359683233,0 172.9853770975521,-41.70190659212532,0 172.9853645245185,-41.7018172406282,0 172.9853444919511,-41.70172579491484,0 172.9853369484205,-41.70162772694877,0 172.9853208547695,-41.7015350234343,0 172.9852927759425,-41.70144307318384,0 172.9853154897648,-41.70135472777693,0 172.9853750864885,-41.70127677679791,0 172.9853966276393,-41.70119144861468,0 172.9853747506674,-41.70109866060149,0 172.9853410554913,-41.70100738157544,0 172.9853146533463,-41.70092649680424,0 172.9853157408493,-41.70083748119465,0 172.985312976625,-41.70074745899787,0 172.9852262235526,-41.70068166063589,0 172.9852355269771,-41.70059298024687,0 172.9852946197065,-41.70051947155379,0 172.9853723207248,-41.70045593610551,0 172.9853582386467,-41.70036574762726,0 172.9854199280053,-41.70029852528283,0 172.9854722324024,-41.70022417707218,0 172.9855032449607,-41.70013826188415,0 172.9855472497342,-41.70006148426167,0 172.9856603226838,-41.70003013646417,0 172.9857504264029,-41.69998009589612,0 172.9857838717821,-41.6999124546159,0 172.9858245229861,-41.69985185329723,0 172.985890572709,-41.69979074798103,0 172.9859834443506,-41.69973794327648,0 172.9860387652295,-41.69966468503082,0 172.986047062256,-41.69959452761775,0 172.9859752305882,-41.69954063275787,0 172.9858838667138,-41.69948724075049,0 172.985777081682,-41.69944197841416,0 172.9856938486551,-41.69937165293743,0 172.9856259563731,-41.69929956842414,0 172.985506095183,-41.69925757649128,0 172.9853992266593,-41.69920703290136,0 172.9853486831281,-41.69912497411357,0 172.9852745860652,-41.6990440895255,0 172.9851947913671,-41.69896831570416,0 172.9851530488547,-41.69887745708329,0 172.9852175888423,-41.69880537223964,0 172.9852510326764,-41.69872322870331,0 172.9852641921779,-41.69863035775253,0 172.9852690546343,-41.69854125792551,0 172.9852591641895,-41.69845484123463,0 172.9852736654322,-41.69836993276273,0 172.9852543859604,-41.69827513371901,0 172.9852253845185,-41.6981881291028,0 172.9852047659906,-41.69809492233637,0 172.9851875829618,-41.69800925949498,0 172.9851770219694,-41.69791814727604,0 172.985156821438,-41.69783709479425,0 172.9851556480079,-41.69774506145279,0 172.9851358659903,-41.69765788956169,0 172.9850420732243,-41.69760365889404,0 172.9849256470245,-41.69758086011196,0 172.9848114863602,-41.69754758440276,0 172.9847044493615,-41.69750206971994,0 172.9846661445451,-41.69741573654492,0 172.9845694172278,-41.69735362654816,0 172.9845208862988,-41.69726863401495,0 172.984463386261,-41.69718976060324,0 172.9843653173316,-41.6971414807171,0 172.9842492291572,-41.6971118926113,0 172.9841704391321,-41.69704106581294,0 172.9840918166211,-41.69697392561,0 172.9840299585666,-41.69691902568899,0 172.9839416958404,-41.6969283294828,0 172.983852429716,-41.69689874021442,0 172.9837790873644,-41.69685465252281,0 172.9837012196988,-41.69678952525193,0 172.9836430493719,-41.69673403657976,0 172.9836120361113,-41.69667268179242,0 172.9835423823626,-41.69664778690095,0 172.9834933483534,-41.69661534873989,0 172.9833939390966,-41.69664468600158,0 172.9833051741572,-41.69665457649901,0 172.9832560559724,-41.69659498078548,0 172.9832027478178,-41.69653329027181,0 172.9831361955637,-41.69650152223288,0 172.9830730793642,-41.69644184241578,0 172.9830936992555,-41.69636003535096,0 172.9830749241956,-41.69626724727812,0 172.9830340207987,-41.69619332050594,0 172.9829974753359,-41.69615509868278,0 172.9829002440688,-41.69612131917224,0 172.9828423267393,-41.69605929363674,0 172.982803769736,-41.69598033573453,0 172.9827472755347,-41.69589576187402,0 172.9826341197043,-41.69592182952604,0 172.9825196236677,-41.6959661696632,0 172.9823965764078,-41.69598578375722,0 172.9823310299609,-41.69592266873041,0 172.9822649812517,-41.69594722735172,0 172.9822567670038,-41.69587346566026,0 172.9822993472961,-41.69579283214634,0 172.982405293166,-41.69574648052914,0 172.9824406647654,-41.69569325550391,0 172.9824062996443,-41.69561639316377,0 172.9824639675234,-41.69554078878452,0 172.9825517254788,-41.69553869266783,0 172.9825722619711,-41.69546895524499,0 172.9826195350192,-41.6953951956734,0 172.9826817284313,-41.69535479449446,0 172.9827710794756,-41.69532637956696,0 172.9827978181826,-41.69533685618384,0 172.9828123200652,-41.69525454743897,0 172.9828334400851,-41.69517181724636,0 172.9828964728686,-41.69509629540591,0 172.982930420525,-41.69510786292814,0 172.9830022530495,-41.69508447841241,0 172.9830611765352,-41.69500065848996,0 172.983122952867,-41.69491206156131,0 172.9831657867952,-41.69486606023614,0 172.9831669580213,-41.69486788885502,0 172.9832012389906,-41.69477593990088,0 172.983271227,-41.69469446784466,0 172.9833106233309,-41.69460335635758,0 172.9833604966709,-41.69452959594566,0 172.9834683712699,-41.69447243053562,0 172.9835544516863,-41.69440755538747,0 172.9836029843615,-41.69432549638615,0 172.9836559571054,-41.69423958203761,0 172.9837243528323,-41.69416774982376,0 172.9837660967071,-41.69408493589275,0 172.9838094309388,-41.69399985957612,0 172.983828959746,-41.69398284421781,0 172.9838274515289,-41.69392542883176,0 172.9838968534635,-41.69384043540394,0 172.9839712842033,-41.69376608818902,0 172.9840089191053,-41.69368687915321,0 172.9840580380428,-41.69362535633442,0 172.9840498230175,-41.69354279385577,0 172.9839865399561,-41.69346157389136,0 172.9839009605382,-41.69338915435684,0 172.983885454829,-41.69330692770688,0 172.9838019698378,-41.69323165852752,0 172.9837158874741,-41.69315898658226,0 172.9836385233535,-41.69308312998255,0 172.9835763291256,-41.69299595891332,0 172.983469376617,-41.6929208572686,0 172.9833504367185,-41.69286662605704,0 172.9832869858126,-41.69278054360756,0 172.9831650298617,-41.69272237384137,0 172.9830582452412,-41.69265674285342,0 172.983029158054,-41.69264249375154,0 172.9829126504509,-41.69256873313749,0 172.9828036857634,-41.69251919646661,0 172.9827008404756,-41.69245113560669,0 172.982584163519,-41.69237972189633,0 172.9824955662909,-41.69229305242973,0 172.9824300200439,-41.69220286282135,0 172.982342094614,-41.69211326060637,0 172.9822855159562,-41.69202692735119,0 172.9822302795719,-41.69191066981637,0 172.9821813282711,-41.69181167993303,0 172.9821003604909,-41.69171704811236,0 172.9820516624089,-41.69162484690341,0 172.9819930725325,-41.69152275606788,0 172.9819236706413,-41.69142728556344,0 172.9818668406712,-41.69132854650177,0 172.9818486517711,-41.69122679071993,0 172.9818391796205,-41.69113886409023,0 172.9818402696507,-41.69104448369999,0 172.9818443765153,-41.69095639078219,0 172.9818103463945,-41.69085354441966,0 172.9817517563576,-41.69076436160233,0 172.9817031425551,-41.69066738284649,0 172.9816337397984,-41.69059236469838,0 172.9815615712102,-41.69050385154068,0 172.9815701205445,-41.69040888417622,0 172.9815387720711,-41.69029338129918,0 172.9814852962012,-41.69019925332613,0 172.9814155592446,-41.69011065580044,0 172.9813611598893,-41.69003228563832,0 172.9813075996557,-41.69003614100839,0 172.9812316591507,-41.68994687492905,0 172.9812013172605,-41.68985626608912,0 172.981157563078,-41.6897598742496,0 172.9811049261032,-41.68966457169795,0 172.9810546341643,-41.6895758906701,0 172.9809821303048,-41.68948989277831,0 172.9809440768555,-41.68939911595589,0 172.9809304989292,-41.68930322711963,0 172.9808638611054,-41.68919174797395,0 172.9808263955518,-41.68910114054258,0 172.9807622735116,-41.68898437995659,0 172.980731679858,-41.68888748574385,0 172.9807114791153,-41.68878698589683,0 172.9806899376636,-41.68868162555803,0 172.980700749883,-41.68858137771256,0 172.9806961392492,-41.6884727497134,0 172.9806614387466,-41.68837593764593,0 172.9806194446565,-41.68827853977279,0 172.9806048608498,-41.68818944030483,0 172.9805835711839,-41.68808718114468,0 172.9806096380511,-41.68799087289775,0 172.9805521387478,-41.68790495830866,0 172.9805269940081,-41.68782415713208,0 172.9805014283547,-41.68773673381468,0 172.9804137538531,-41.68762123181754,0 172.9803557503273,-41.68752785730629,0 172.9802772968953,-41.68744588142119,0 172.980208563812,-41.68735887755639,0 172.980124829367,-41.68727019752492,0 172.9800539186109,-41.6871739725609,0 172.9799977608157,-41.68708336428358,0 172.9799323807699,-41.68698538020259,0 172.9798798271415,-41.686890161729,0 172.9798430294958,-41.68680114561971,0 172.9798287815067,-41.68670316142492,0 172.9798459628125,-41.68660794253481,0 172.9798649905701,-41.68651766889775,0 172.9798745459803,-41.68642018787153,0 172.9798314619121,-41.6862964705617,0 172.9797425296308,-41.68620158879504,0 172.979677319735,-41.68609773642037,0 172.9796676803467,-41.68600318923849,0 172.9796485693259,-41.68590352791431,0 172.9796312200226,-41.68580722026531,0 172.9795509206098,-41.6856979203043,0 172.9794894808609,-41.68557897968635,0 172.9794644183107,-41.68547722399789,0 172.97939778322,-41.68536616366532,0 172.9793364271519,-41.68527295733905,0 172.9792697918147,-41.68519022805523,0 172.9792052505265,-41.685082771747,0 172.9791355972936,-41.68498864237305,0 172.9790755815639,-41.68489216744705,0 172.9790556327975,-41.68479342818448,0 172.9790633458408,-41.68469636569132,0 172.9790930167194,-41.68459745892063,0 172.9791242817,-41.6845105391689,0 172.9791191692848,-41.68441699793591,0 172.9790731509903,-41.68432052103586,0 172.9789938598758,-41.68421549654182,0 172.9788982217738,-41.68415883476725,0 172.9788009910487,-41.68412639648523,0 172.9787905987037,-41.68401709622415,0 172.9786759337571,-41.68396663848732,0 172.9785488636235,-41.68391441831886,0 172.9785248918419,-41.68386312074114,0 172.9785631969279,-41.68381643384572,0 172.9785408180852,-41.68376614266415,0 172.9784894364596,-41.68375558116737,0 172.9784546515143,-41.68367368960858,0 172.978369322729,-41.68357386157771,0 172.978370664612,-41.68352792888977,0 172.9782780445239,-41.68352667203652,0 172.9781646371054,-41.68356313316844,0 172.9780469548101,-41.68358802727427,0 172.9779393324896,-41.68358249428177,0 172.9778728633459,-41.68350194483262,0 172.9778254225347,-41.6834229869806,0 172.9778065635091,-41.68334176662572,0 172.9777530858979,-41.68326775431184,0 172.9777499852263,-41.68321402686623,0 172.977751493648,-41.68316373474466,0 172.9777441183008,-41.68310548036876,0 172.9778226558173,-41.68305435195786,0 172.9778865249391,-41.68299274443821,0 172.9779117549236,-41.68291454096366,0 172.9779278483131,-41.68283323636207,0 172.9779589465089,-41.68275478269977,0 172.9780010223055,-41.68267817129758,0 172.9780056330163,-41.6825885688823,0 172.9779826670082,-41.68249385322093,0 172.9779712664694,-41.6824038316022,0 172.9779642256914,-41.68236477247308,0 172.977957939588,-41.68226905029531,0 172.9779107486416,-41.68218204640594,0 172.9778983443984,-41.68208674368052,0 172.9778776420499,-41.6819929507619,0 172.9778858560653,-41.68190376786512,0 172.9778702656904,-41.68180796192362,0 172.9778442803737,-41.68171794107586,0 172.9778194703688,-41.68162741604834,0 172.9778060592394,-41.68153638881221,0 172.9777905524981,-41.68144955220465,0 172.9777566907673,-41.68135852460976,0 172.9777314613,-41.68126917311095,0 172.9776631480509,-41.68118527068225,0 172.9775949198563,-41.68110262472985,0 172.9775574525359,-41.68101612427498,0 172.9775229189891,-41.68092031906777,0 172.9774956780796,-41.68082937465142,0 172.9774492421359,-41.68074237069862,0 172.9773891442166,-41.68065545050486,0 172.9774011291551,-41.680562327731,0 172.9774376757591,-41.68047314410646,0 172.9773951782729,-41.68039049857231,0 172.9772885616754,-41.68033853049727,0 172.9772054955668,-41.68027248158369,0 172.9771973660315,-41.68017474856464,0 172.9771406205704,-41.68009268917027,0 172.9770452340949,-41.68003602766298,0 172.9769681206226,-41.67997022926125,0 172.9769055919149,-41.67989445829559,0 172.9768345961507,-41.67982329546164,0 172.976760919784,-41.67973955982983,0 172.9766988947597,-41.67965766937841,0 172.9766268926178,-41.67957996879924,0 172.9765458398224,-41.67950285449985,0 172.976485826987,-41.67941643733848,0 172.9764438332709,-41.67932817646742,0 172.9763883458279,-41.67924393810837,0 172.9763023464539,-41.67916925545487,0 172.9762334473371,-41.67909197499971,0 172.9761668942013,-41.67901636941975,0 172.9761221350838,-41.67893556849281,0 172.9761022703684,-41.67884764174842,0 172.9761111551482,-41.6787565297324,0 172.9761189498475,-41.67866634072696,0 172.9761377262001,-41.67857489389467,0 172.9761328639474,-41.67851311988711,0 172.9760482904716,-41.67852342991662,0 172.9759437695102,-41.67853985788969,0 172.9758249962119,-41.6785614835103,0 172.9757039618429,-41.67855402346851,0 172.9755886268489,-41.67857598374057,0 172.9754641547123,-41.67858864113564,0 172.9753391818641,-41.67855318557562,0 172.975216470288,-41.67854589309159,0 172.9751503364794,-41.67847791608341,0 172.9751640845077,-41.67841563895503,0 172.9751085951118,-41.67833349593699,0 172.9750552874606,-41.67824565362389,0 172.9750393617111,-41.67815412287003,0 172.9750642559956,-41.67807189727365,0 172.9750473232815,-41.67798397006784,0 172.9750031516051,-41.67789948037922,0 172.9749692892287,-41.67780954357714,0 172.9749148890685,-41.67771507887878,0 172.9748401228472,-41.67764123432723,0 172.9747993868234,-41.67755297310357,0 172.9747302362544,-41.67747024413326,0 172.9746491003365,-41.67740008739074,0 172.9745628492473,-41.67733219386199,0 172.9744970518976,-41.67725373849476,0 172.974433350243,-41.67717159601315,0 172.9744150762981,-41.67708149136618,0 172.9743924452351,-41.67699046341098,0 172.9743803753396,-41.67690077626741,0 172.9743655402872,-41.67680991757489,0 172.9743853209271,-41.67672056629444,0 172.9744107176123,-41.67663548926037,0 172.9744204417499,-41.67654463063293,0 172.9744005774035,-41.67645133977991,0 172.9744156639674,-41.67636207210957,0 172.9744517899159,-41.67628378525857,0 172.9744859877696,-41.67619879212661,0 172.9745224489931,-41.67611069831129,0 172.9745447460945,-41.67602143131482,0 172.9745728249383,-41.67592738638282,0 172.9746072736643,-41.67584205819821,0 172.9746447416664,-41.67575606053018,0 172.9746824600387,-41.67567165447317,0 172.9747150641792,-41.67558062790672,0 172.9747334216021,-41.67549412700331,0 172.9747757509411,-41.67541198272657,0 172.974789496136,-41.67531928025949,0 172.974821850701,-41.67523277880392,0 172.9748650185854,-41.6751499654425,0 172.9748970367117,-41.67506002765295,0 172.9749196673389,-41.67497277104115,0 172.974894437901,-41.67489984881613,0 172.9748940189929,-41.67483086634273,0 172.9748025714571,-41.67476624143383,0 172.9747463297906,-41.67470304192773,0 172.9746515297088,-41.67461964159796,0 172.9743214517773,-41.67444999195151,0 172.9742055303815,-41.67445636199439,0 172.9740806389305,-41.6744552737518,0 172.9739637944054,-41.67445678126541,0 172.9738884424119,-41.67442048775276,0 172.9738094839503,-41.67438134530042,0 172.9736854320741,-41.67436927436692,0 172.9735538352895,-41.67436399387688,0 172.973436825088,-41.67434806832029,0 172.9733216581279,-41.67429945331256,0 172.9732495739341,-41.67422653064316,0 172.9731550251306,-41.67418948278159,0 172.9730816847606,-41.67416525973323,0 172.9729776646005,-41.67420289344549,0 172.9728845417347,-41.67419224844142,0 172.9728025665664,-41.6741297192448,0 172.9727128796967,-41.67407364449881,0 172.9726399573807,-41.67401329616629,0 172.9725673701633,-41.67398739583001,0 172.9724446594534,-41.67395688437887,0 172.9723906803422,-41.67391103658183,0 172.9724597464123,-41.67384347767914,0 172.9724073594187,-41.67378019417324,0 172.9723174211596,-41.67372956750198,0 172.9722100497153,-41.67367726481082,0 172.9721574940465,-41.67359369787528,0 172.9721510413947,-41.6735049332457,0 172.9721468507382,-41.67341935409791,0 172.9722380450036,-41.673391777254,0 172.9722857388077,-41.67332396739051,0 172.9722842295477,-41.67324081812895,0 172.9723491887532,-41.67318742659113,0 172.9724449938561,-41.67314744419925,0 172.9724939456442,-41.67309522597969,0 172.9725456610017,-41.67302188385288,0 172.9725633466217,-41.67293261609112,0 172.9725926832077,-41.67285365892479,0 172.9726595712825,-41.672768665967,0 172.972692092781,-41.67268317031738,0 172.972774151522,-41.67262827028885,0 172.9728799307549,-41.67257839730396,0 172.9729787531719,-41.67253363776682,0 172.9730491618218,-41.67247957517414,0 172.973132896993,-41.67242484101014,0 172.9731994505428,-41.67235577415848,0 172.9732538488771,-41.67227807375241,0 172.9732771491715,-41.67218964484306,0 172.9732996970006,-41.67210792070051,0 172.9733268553251,-41.67205561778837,0 172.9733660811294,-41.67197942701185,0 172.9733987708538,-41.67190809678355,0 172.9734169594521,-41.67183366562393,0 172.9734490617615,-41.67176778369252,0 172.9735142736492,-41.67173383624681,0 172.9735640629402,-41.6716793542473,0 172.9736219810989,-41.67164046191942,0 172.973716277914,-41.67161514901621,0 172.9737941452518,-41.67157256911906,0 172.9738495506157,-41.67152034907737,0 172.9738593567136,-41.67145262358511,0 172.9739171914672,-41.67141406705694,0 172.9739456896356,-41.67134692766044,0 172.9740081359571,-41.67131163993879,0 172.9740808903517,-41.67127408920411,0 172.9741407377485,-41.6712306709361,0 172.9741198660286,-41.67114115193387,0 172.9740606900579,-41.67105632784129,0 172.974045938022,-41.67096362345896,0 172.9740585954484,-41.67086664505102,0 172.9740801356507,-41.670771678144,0 172.9741212912961,-41.67068693700367,0 172.9741653794934,-41.67060445821581,0 172.974209216153,-41.67051083295462,0 172.9742918630522,-41.67044092868356,0 172.9744028392241,-41.67042114665066,0 172.974521779653,-41.67041418980595,0 172.9746300731348,-41.67042827127538,0 172.9747410482101,-41.67038946303664,0 172.9748470802072,-41.67034353072504,0 172.9749440576943,-41.67028577981259,0 172.9750370987675,-41.67025501709552,0 172.9750541971768,-41.67026943410925,0 172.9751523498285,-41.67024135474879,0 172.9752213326443,-41.67016952291483,0 172.9752903993407,-41.67010724408142,0 172.9753521737108,-41.67002392825709,0 172.9753892213294,-41.66993575043274,0 172.9754768966892,-41.66987665770349,0 172.975531043476,-41.66979066051256,0 172.9755839340257,-41.66969393276639,0 172.9756733686597,-41.66963509156525,0 172.9757835893948,-41.66958119691347,0 172.9759018597252,-41.66953367102549,0 172.9759454434998,-41.66943945776831,0 172.9759608669945,-41.66934172580047,0 172.975944355632,-41.66924776386426,0 172.975914096637,-41.66915472498209,0 172.9758960748272,-41.66906227232128,0 172.9759432657735,-41.66897753177291,0 172.9759855932762,-41.6688879290035,0 172.9760270851519,-41.66880972554285,0 172.9760981630217,-41.66875046583682,0 172.9761581774949,-41.6686837467407,0 172.9762473611763,-41.66862264152072,0 172.9763368796639,-41.66856857902047,0 172.9764545623189,-41.66852876439166,0 172.9765574912934,-41.66841192074909,0 172.9765590840095,-41.66828317501123,0 172.9764949622379,-41.66818091499791,0 172.9765174261893,-41.66808024893374,0 172.976598394328,-41.66801646301785,0 172.9766523740809,-41.66793549304908,0 172.9766489390484,-41.66783759320066,0 172.9766913500239,-41.66774824237495,0 172.9767647757097,-41.66766903269512,0 172.976817581319,-41.66757808964781,0 172.9767620945735,-41.6674818645313,0 172.9766926911795,-41.66738362976069,0 172.9766499426513,-41.6672874882365,0 172.9766415626172,-41.66719503582115,0 172.9766316708951,-41.6671008230933,0 172.9766061900438,-41.66700878962968,0 172.9766054359446,-41.66691843383379,0 172.9766368684803,-41.66684869573665,0 172.9766675462162,-41.66676663654417,0 172.9766926917623,-41.66667259124834,0 172.9766601702117,-41.66657837932635,0 172.976559921988,-41.66648626218431,0 172.9764700681424,-41.66642398521098,0 172.9764818858492,-41.66634117189497,0 172.9764382163686,-41.66625332841229,0 172.9764473531298,-41.66616347542778,0 172.9764588358904,-41.66608007567596,0 172.9764533877412,-41.66598955046734,0 172.976432432159,-41.66589525437231,0 172.9763834840126,-41.66580338806492,0 172.9762869238305,-41.66572778431925,0 172.9761865931054,-41.66565595102006,0 172.9760901153789,-41.66551454777025,0 172.9758775513677,-41.66529041607657,0 172.9758548364384,-41.66526862290266,0 172.9758836701882,-41.66514255975847,0 172.9758341331853,-41.66505823751005,0 172.9758175376632,-41.66494541800643,0 172.9757935657439,-41.66481642001825,0 172.9757639767458,-41.66468214082222,0 172.9757488898903,-41.66454434376215,0 172.9756745415007,-41.66444828612783,0 172.9756398407583,-41.66430747108776,0 172.9756461268711,-41.66417587458375,0 172.9756481389886,-41.66403522674155,0 172.9756625543957,-41.6639392536142,0 172.9756935686675,-41.66383389309033,0 172.9757378257558,-41.66373808748567,0 172.9757731962105,-41.66362694343407,0 172.9758270923472,-41.66352803684295,0 172.9758843413758,-41.66339208252696,0 172.9759439360921,-41.66327532300415,0 172.9760175292758,-41.66319963468945,0 172.9760913739593,-41.66312872289283,0 172.9761625363931,-41.66303149416588,0 172.9762440910363,-41.6629407166918,0 172.9762736798738,-41.66283384789429,0 172.9762597663477,-41.66267517782185,0 172.9762775354403,-41.66258222269481,0 172.9763369643259,-41.66246496032036,0 172.9764427439593,-41.66242011718744,0 172.9765328488043,-41.66236454499206,0 172.9766436570654,-41.66226723126616,0 172.9767453290353,-41.66218684821726,0 172.9768283941687,-41.66211912364744,0 172.9769477538111,-41.66203823777695,0 172.9770479165333,-41.66198794630704,0 172.9771285504594,-41.66189515850121,0 172.9772275405185,-41.66183464076478,0 172.9773114433351,-41.66173883606344,0 172.9774149604493,-41.66165996238705,0 172.9775266910238,-41.66156616889047,0 172.977614365424,-41.66144018878075,0 172.9777078238024,-41.66135687322457,0 172.9778191357457,-41.66125167984677,0 172.9779601194851,-41.66118621741027,0 172.9780405854096,-41.66113919540782,0 172.9781046239575,-41.66108018613851,0 172.9782347943706,-41.66106166233254,0 172.9783807234995,-41.661028469514,0 172.9785681428272,-41.66096233681385,0 172.9787053538655,-41.66098379404847,0 172.978820941679,-41.66097097023708,0 172.9789246237459,-41.66088882650514,0 172.9790168260311,-41.66081179757423,0 172.9792268763993,-41.66085488114581,0 172.9793441386041,-41.66084842699959,0 172.9794522656522,-41.66079486614336,0 172.9795659242977,-41.66075446568526,0 172.9796795831061,-41.66069017621675,0 172.9797846915486,-41.66062404316141,0 172.9799143602039,-41.66061163775802,0 172.9800232410741,-41.66058791644923,0 172.9801430187989,-41.66053921815216,0 172.9802732725861,-41.66054902510294,0 172.9803961514404,-41.66054743203399,0 172.9805183598226,-41.66053871582822,0 172.9806450937097,-41.66051876646809,0 172.9807591718457,-41.66045707548244,0 172.9808840615473,-41.66042983511984,0 172.9809269774931,-41.66048155079762,0 172.9809872430609,-41.66046545770364,0 172.9810911789839,-41.66050108122064,0 172.98120886064,-41.66046193720542,0 172.9812835434476,-41.66045682429039,0 172.9813955260663,-41.66042874450658,0 172.981488732702,-41.66037191509977,0 172.9815393596064,-41.66028692317881,0 172.9816110237645,-41.66020176346025,0 172.9817145413532,-41.66016614027647,0 172.9817951745616,-41.66009522856299,0 172.98188695703,-41.66002993453918,0 172.9819564424328,-41.65996346600598,0 172.9820556841964,-41.65992549546623,0 172.9821266793791,-41.65985366237336,0 172.9822105820737,-41.65979239038121,0 172.9822871922185,-41.65973748889773,0 172.982393475874,-41.65969356809212,0 172.9824923821832,-41.65964553967862,0 172.982609392498,-41.65962844015109,0 172.9827235547593,-41.65962106515797,0 172.9828238866317,-41.65957672422184,0 172.9828847387989,-41.65949039114483,0 172.9829421533836,-41.65940824767914,0 172.9829981460763,-41.65932937448937,0 172.9830446659354,-41.65927237656776,0 172.9831065237391,-41.65919635406817,0 172.9831815415915,-41.65913449458096,0 172.9832292342471,-41.65905109484143,0 172.9832632648383,-41.65895705017891,0 172.9833510237805,-41.65891203861009,0 172.9834518581648,-41.65886929146866,0 172.9835288879245,-41.65884666022072,0 172.9836395293446,-41.65883056663836,0 172.9837598926441,-41.65884154817687,0 172.9838802578475,-41.65882578990203,0 172.9839714520347,-41.65876795388228,0 172.9840515830787,-41.65871447754363,0 172.9841637331173,-41.65869176247133,0 172.9842701839636,-41.658693774885,0 172.9843522429886,-41.65872713436207,0 172.9844528248653,-41.65875152600648,0 172.9845687470296,-41.65874046186804,0 172.9846821536759,-41.65872612856059,0 172.9847561664972,-41.65876644564017,0 172.9848225506808,-41.65876368020503,0 172.9849286657944,-41.6587535376422,0 172.9850663800835,-41.65877424066413,0 172.9851579943003,-41.65872344648976,0 172.9852702282237,-41.65872101547435,0 172.9854044216887,-41.6586748319363,0 172.9855115437222,-41.6586671200104,0 172.9856158989329,-41.65866267815077,0 172.9857221797765,-41.65866762284758,0 172.9858274579593,-41.65865513387621,0 172.9859272859589,-41.65863007278565,0 172.9860606417026,-41.65860576417648,0 172.9861618952643,-41.65858045085418,0 172.9862352376709,-41.65861406284006,0 172.9863068176371,-41.65868991836016,0 172.986385775304,-41.65863216813725,0 172.986479569037,-41.6586119670408,0 172.9865708487465,-41.6585634361108,0 172.986663385351,-41.65852311892869,0 172.9867026952585,-41.65844717922921,0 172.986813252988,-41.65840434739703,0 172.9868994194085,-41.65832513797687,0 172.9875117172092,-41.6579640460104,0 172.987848083443,-41.65792372887865,0 172.9879979515015,-41.6578999250709,0 172.9882106004042,-41.65788751893256,0 172.9885282744974,-41.6578495487733,0 172.9888042902009,-41.65780043177181,0 172.9890481190124,-41.65781107656164,0 172.9891980712527,-41.65758116109367,0 172.9894750937369,-41.6574831766762,0 172.9895607567487,-41.65740698531825,0 172.989663099226,-41.65734906651655,0 172.9897081948209,-41.65727522137629,0 172.9897691298716,-41.65720053815474,0 172.9897917616837,-41.65713675202526,0 172.9898455743197,-41.65707724076706,0 172.9899207591118,-41.6570353305447,0 172.9899954428291,-41.65702535708531,0 172.989995694117,-41.65702359709672,0 172.990070795479,-41.65694514182471,0 172.9901257810039,-41.65686283149122,0 172.9902074210545,-41.65682025149835,0 172.9903056570712,-41.65671296326279,0 172.9903695254663,-41.65663534631709,0 172.9903881335829,-41.6565596585023,0 172.9902758179307,-41.65657273382785,0 172.99015562013,-41.65653652362627,0 172.9900529425103,-41.65655136046745,0 172.9899435578603,-41.6565301542856,0 172.9898876513165,-41.65645044189354,0 172.9898022396012,-41.65638305232428,0 172.989710457624,-41.65632429462716,0 172.9896615907925,-41.65624449898316,0 172.9896153219705,-41.65617182825318,0 172.9896606695111,-41.65611742970233,0 172.9897560556557,-41.65607627349716,0 172.9898526975153,-41.65604559631181,0 172.9899333321073,-41.65600653733369,0 172.9900462367608,-41.65603109631536,0 172.9901459814426,-41.65605045689774,0 172.9902270344489,-41.65599932719037,0 172.9903102667497,-41.65595909543056,0 172.9903606422682,-41.65589648244885,0 172.9904149567026,-41.65583613238142,0 172.9905164605225,-41.65580755012084,0 172.990622156947,-41.65578768528251,0 172.9907277694821,-41.65577452531138,0 172.9908285203762,-41.65575189467366,0 172.990904877697,-41.65568358105673,0 172.9910018572118,-41.65564351651713,0 172.9910970756165,-41.65560563059846,0 172.9911844985606,-41.65555559058014,0 172.9912749402802,-41.65549993472561,0 172.9913505452862,-41.65542944190869,0 172.9914260654207,-41.65535467601399,0 172.9915145789505,-41.65529047017984,0 172.9915718280972,-41.65521302139148,0 172.9916474326819,-41.65514068550173,0 172.9917446616967,-41.65509307681015,0 172.9918373659423,-41.65503934911378,0 172.9919216871068,-41.65498486685237,0 172.9920254548201,-41.6549400226902,0 172.992101479178,-41.65487548226817,0 172.9921809388196,-41.65480624746898,0 172.9922733925667,-41.6547417909154,0 172.9923566233944,-41.65467942965059,0 172.9924623208205,-41.65464062095406,0 172.9925577895253,-41.65459904808684,0 172.9926636540994,-41.65454565473677,0 172.9927687622796,-41.65451003157201,0 172.9928675856243,-41.65446258955958,0 172.9929470460185,-41.65440735323558,0 172.9930576870831,-41.65436913246371,0 172.9931408356794,-41.65432303133917,0 172.9932266663764,-41.65427315899491,0 172.9933288415866,-41.6542200179188,0 172.9934488697516,-41.65422236489555,0 172.9935654627552,-41.65420384004179,0 172.9936856585454,-41.65417433637953,0 172.9938007422976,-41.65416268551073,0 172.993924627516,-41.65416972585722,0 172.994027053997,-41.65413175591704,0 172.9941474172145,-41.65414608897999,0 172.9942605729657,-41.65415103424446,0 172.9943700414789,-41.65411708787238,0 172.9944745642087,-41.6541251345819,0 172.9945697820215,-41.65407207763544,0 172.9946669284432,-41.65401918733111,0 172.9947591296152,-41.6539592566775,0 172.9948683451961,-41.65392706982967,0 172.9949844349802,-41.65391206623753,0 172.9951003563233,-41.65388449025296,0 172.9952068911105,-41.65388323283424,0 172.9952893676319,-41.65381751872008,0 172.9953752838476,-41.65374836843486,0 172.9954772903382,-41.65370075856601,0 172.9955881833826,-41.65366144729215,0 172.9957088825371,-41.65363672075847,0 172.9957736752845,-41.65356656417859,0 172.9958838981881,-41.65352063138913,0 172.9959849835261,-41.6535192910887,0 172.9960726572559,-41.65356178654842,0 172.9961729891689,-41.65354812418504,0 172.9962906704435,-41.65355449524276,0 172.9964111189128,-41.65355885315638,0 172.9965327394741,-41.65356471968318,0 172.996655786333,-41.65357997524041,0 172.9967765691366,-41.65357653883794,0 172.996895257522,-41.65357083963832,0 172.9970150352782,-41.65356295970027,0 172.9971343931457,-41.65357134214582,0 172.9972560981917,-41.65356949863758,0 172.997353245549,-41.65359774573253,0 172.9973533692845,-41.65359695310225,0 172.9973641412774,-41.65352834270689,0 172.9973831669404,-41.65344569745955,0 172.9973869393888,-41.65335215493342,0 172.9973918849874,-41.65326339166028,0 172.9974122533718,-41.65317714084695,0 172.9974481285939,-41.65309214958317,0 172.9974743634159,-41.65301034124262,0 172.9975354681017,-41.65293347950822,0 172.9976162693483,-41.65286633964022,0 172.9976698279545,-41.65279249599476,0 172.9977233901145,-41.6527163888118,0 172.9977728433336,-41.65264966883861,0 172.997836880841,-41.65258588187341,0 172.9978627808676,-41.65251103060234,0 172.9979037687264,-41.65242863695931,0 172.9979787861198,-41.65236887453363,0 172.9980106378883,-41.65229226332328,0 172.9980692264228,-41.65221649112758,0 172.9981211939246,-41.65214214373247,0 172.9981482670154,-41.65205874456424,0 172.998140556984,-41.65197232651576,0 172.9981232898053,-41.65188649648097,0 172.9981396348139,-41.65179982751684,0 172.998157739154,-41.65171357741038,0 172.9981702279,-41.65162489706626,0 172.9981889206202,-41.65153847943181,0 172.9982036731256,-41.65144753560054,0 172.998229154748,-41.65135793220892,0 172.9982622609543,-41.65127185074977,0 172.9982924366504,-41.65119121769633,0 172.998330322248,-41.65111142061706,0 172.9983512771786,-41.65102433374682,0 172.9983648569771,-41.65094336446141,0 172.9983788547858,-41.65085761685538,0 172.9983992223008,-41.65077103166466,0 172.9984204293098,-41.65068034008834,0 172.9984499321563,-41.65059367124193,0 172.9984702177822,-41.65050926487484,0 172.9984880703672,-41.65042142221947,0 172.9985213462251,-41.65033785458791,0 172.998541379444,-41.65025504247925,0 172.9985550430022,-41.65016979834164,0 172.9985798520706,-41.65009159527882,0 172.9985928442717,-41.65000475864745,0 172.998617738624,-41.6499203523063,0 172.9986585581029,-41.64984055783793,0 172.9986627487072,-41.64975237901467,0 172.9986882312647,-41.64967065591372,0 172.9986928409269,-41.64958264642524,0 172.9987175668743,-41.64949782031913,0 172.9987419587863,-41.64941878043438,0 172.9987759879825,-41.64933462545334,0 172.9987883949241,-41.64924787254704,0 172.9988176467666,-41.64916497580447,0 172.9988318957347,-41.64908157630345,0 172.9988568745821,-41.64900295343252,0 172.9988668491549,-41.64893832942693,0 172.9988795884828,-41.64885518029897,0 172.9988926651841,-41.6487746306553,0 172.9989177268067,-41.64868988916429,0 172.9989479857651,-41.64860766342857,0 172.9989840281116,-41.64852602230294,0 172.9990125252716,-41.64843985677508,0 172.9990111863585,-41.64835654176901,0 172.9990339838082,-41.64828437340491,0 172.9990641594804,-41.64820834910763,0 172.9990799161854,-41.64812796608759,0 172.9990848613766,-41.64804506906355,0 172.9991024649745,-41.64796393215104,0 172.9991125223244,-41.6478756713628,0 172.9991390928067,-41.64779059475346,0 172.999176978917,-41.64771532617883,0 172.9991782372434,-41.64763519433711,0 172.9991932395483,-41.64755271711248,0 172.9992168772791,-41.64746747292123,0 172.9992367418346,-41.64738172610041,0 172.9992576979288,-41.64729539290575,0 172.9992767229769,-41.64720939386891,0 172.9993223216976,-41.64713554933022,0 172.9993377440337,-41.64704996908878,0 172.9993422697611,-41.64696263057675,0 172.9993529990725,-41.64687755380832,0 172.9993717740593,-41.64679549540839,0 172.9993909693157,-41.64671125725307,0 172.9994119237241,-41.64663154613471,0 172.9994320399181,-41.64654848071463,0 172.9994577724589,-41.64646256543459,0 172.9994625501619,-41.64637497470457,0 172.9994881997795,-41.64628294170637,0 172.9995144340614,-41.64620046356788,0 172.999541088575,-41.64611798632576,0 172.9995476265704,-41.64603022805969,0 172.9995574332194,-41.64594439645076,0 172.9995868542708,-41.64586694793886,0 172.9996239858299,-41.6457874881264,0 172.999630774584,-41.64571246967161,0 172.9996892807649,-41.64564591726161,0 172.9997883556874,-41.64559428446854,0 172.9998614456706,-41.64554097621417,0 172.9999379723112,-41.64548096113631,0 173.000005194787,-41.6454168405179,0 173.0000960542377,-41.6453603462576,0 173.0001571594054,-41.64528993760452,0 173.0002096292692,-41.64521047757712,0 173.0002577425564,-41.64516538279992,0 173.0002592505645,-41.64510905610814,0 173.0002475986697,-41.64502842254569,0 173.0002067801571,-41.64497368931411,0 173.0001392218621,-41.64492121781818,0 173.0000793741193,-41.64485734853309,0 172.9999974002324,-41.64479398091873,0 172.9998893567692,-41.644735056492,0 172.9997900326113,-41.64468149577856,0 172.9996825754725,-41.64463388603431,0 172.9995542481922,-41.64460932740378,0 172.9994272623634,-41.64457973899967,0 172.9993052228205,-41.64454772033783,0 172.9991826777525,-41.64452441963591,0 172.9990618957884,-41.6444853597737,0 172.9989285394558,-41.6444958358138,0 172.9987952677995,-41.64447102589178,0 172.9986801842836,-41.64441897456095,0 172.9985746555264,-41.64437916045795,0 172.9984648523877,-41.644323588054,0 172.9983614202549,-41.64429467162184,0 172.9982348528091,-41.64428913931176,0 172.9981256369308,-41.64424689458727,0 172.998056317875,-41.64416852335079,0 172.997972667175,-41.6440968576978,0 172.9978861658817,-41.64402753921938,0 172.9977809726196,-41.64397171584175,0 172.9976950588658,-41.64390298449497,0 172.9976389839482,-41.64383492384143,0 172.9975732694388,-41.64375864836298,0 172.9975076391553,-41.64368212064632,0 172.9974477921318,-41.64360366727477,0 172.9973527407842,-41.64354449123523,0 172.9972657377387,-41.64347567487468,0 172.9972107524119,-41.64338774858878,0 172.9971450387529,-41.64331407144354,0 172.9970690981377,-41.64324005983275,0 172.9970204002763,-41.64315917456467,0 172.9969480639535,-41.64307644486979,0 172.9968600523716,-41.64300226526236,0 172.9967770721995,-41.64292934313951,0 172.9967384317408,-41.64284334462129,0 172.9967607287817,-41.6427528189914,0 172.9968091754887,-41.64267872416868,0 172.996803475981,-41.64259398309245,0 172.9968434575541,-41.64250966030797,0 172.996874051175,-41.64242952922042,0 172.9969077462203,-41.64235132665412,0 172.9969671734906,-41.64227764999061,0 172.9969972652729,-41.64219005816459,0 172.9970237521521,-41.64210489909018,0 172.9970790726626,-41.64202635925676,0 172.9971345609038,-41.64195326967679,0 172.9971821696324,-41.64187967637118,0 172.9972186307268,-41.64179795284606,0 172.9972858534713,-41.64172897076971,0 172.9973545855079,-41.64165814310807,0 172.997409569999,-41.64158513714414,0 172.9974073916415,-41.64149989355347,0 172.9973770496106,-41.64141389451764,0 172.997344779096,-41.64133175232274,0 172.9973870234732,-41.64125556021526,0 172.9974588576778,-41.64118364358008,0 172.9974918815737,-41.64109965636611,0 172.9975302700803,-41.64102195720661,0 172.9975125841895,-41.64093042622731,0 172.9975689943448,-41.64085809034625,0 172.9976373913567,-41.64078676079215,0 172.9976606922922,-41.64070612671775,0 172.9977032723681,-41.64062222339948,0 172.9977857498216,-41.64055743148484,0 172.997869821721,-41.64049171809839,0 172.9979253930644,-41.64041661499969,0 172.9980168399376,-41.64037764051316,0 172.9981349403653,-41.64034704582072,0 172.9982475928642,-41.6403195539122,0 172.9983439852339,-41.6402801586023,0 172.998437779908,-41.64025702393293,0 172.9984657744634,-41.64022944776536,0 172.9984848856983,-41.64016222432805,0 172.9984623379129,-41.64008016542409,0 172.9984057599692,-41.64001294276471,0 172.9984005639465,-41.63993482385318,0 172.998395198764,-41.63985142489073,0 172.9983991392929,-41.63976441956718,0 172.9984404605421,-41.63968454037474,0 172.9984656909999,-41.63959711739259,0 172.9985227715449,-41.63951522526251,0 172.9985959451176,-41.63943601745538,0 172.9986389445427,-41.6393546285977,0 172.9986691190878,-41.63927005551407,0 172.9987339951311,-41.63919813797641,0 172.9988037328241,-41.63912001896658,0 172.998867016387,-41.63905003068545,0 172.9989195703615,-41.6389743415909,0 172.9989560323957,-41.63889454592137,0 172.9990108495009,-41.63881726522394,0 172.999045384209,-41.63873696600621,0 172.9991245920437,-41.63866907279049,0 172.9992005325795,-41.63860243600745,0 172.999220397846,-41.63853286605367,0 172.9992847706449,-41.63846036272161,0 172.9993704340716,-41.63838953571793,0 172.9994548389193,-41.63832625310294,0 172.9994950723712,-41.6382647293541,0 172.9995137630308,-41.63818158092889,0 172.9995290192134,-41.63816087875939,0 172.9994337165213,-41.6381576924682,0 172.9993190529959,-41.63812131431666,0 172.999201118855,-41.63808963240533,0 172.999078492053,-41.63809055382723,0 172.9989521760518,-41.63805878601959,0 172.9988320647677,-41.63799265282797,0 172.9987132925669,-41.63792325169395,0 172.9986418789545,-41.63787421727314,0 172.9986647610564,-41.63784672384821,0 172.9986565466929,-41.63775293048816,0 172.9986321542474,-41.63766257319375,0 172.9986232699398,-41.63757037229795,0 172.9986534450551,-41.63747716575514,0 172.9986745680826,-41.63738756379468,0 172.9987113647045,-41.63729804487742,0 172.9987461487902,-41.63721389062894,0 172.9987693666012,-41.63713375888221,0 172.998677836558,-41.63708279761066,0 172.998596700108,-41.63701255729967,0 172.998497877794,-41.63694851908611,0 172.9984349285121,-41.63686805297978,0 172.9984023229573,-41.63677694160295,0 172.9983436508678,-41.63669127832522,0 172.9982984720451,-41.63660452533813,0 172.9982774328685,-41.63651131990845,0 172.9982678780219,-41.63642029260036,0 172.998256980954,-41.63632582720583,0 172.998233260886,-41.63623136341629,0 172.9982304945324,-41.63614494610864,0 172.9982260520978,-41.63605743889937,0 172.9982516163566,-41.63597219566719,0 172.9982396300709,-41.63588963331402,0 172.9982247947358,-41.63580497583264,0 172.9982707279222,-41.63571914563443,0 172.998271565819,-41.63563515852958,0 172.9982638542215,-41.63553968886081,0 172.99825589156,-41.63544975143916,0 172.9982367808771,-41.635362831267,0 172.9981936981008,-41.6352811907634,0 172.9981678820671,-41.63519108641268,0 172.9981287389786,-41.63510282471908,0 172.9980780276487,-41.63502177131476,0 172.9980013331967,-41.6349510280287,0 172.9979493659465,-41.63488078773812,0 172.9979227951608,-41.63479235865855,0 172.997915084127,-41.63469848143514,0 172.9979524671377,-41.63461659005689,0 172.9980150797869,-41.63454282994564,0 172.9980581631199,-41.63446186097345,0 172.9980667960313,-41.63436773092609,0 172.9979778634531,-41.634327916479,0 172.9979195254784,-41.63424359503477,0 172.9978892670274,-41.63414502461305,0 172.9978524698549,-41.63405374542965,0 172.9978975652906,-41.63397327915221,0 172.9979299187685,-41.63388384411125,0 172.9980020872795,-41.63382089646375,0 172.9981059386774,-41.6337969245403,0 172.9981275649737,-41.63372626396916,0 172.9981870774434,-41.63366449053893,0 172.9982425640571,-41.63360631991439,0 172.9982704767814,-41.63352618738762,0 172.9983085297798,-41.63344505159881,0 172.9984182485356,-41.63344136379119,0 172.9984497645077,-41.6333893960231,0 172.9985089413749,-41.63332845919364,0 172.9984703853589,-41.63326894872417,0 172.9985161504861,-41.63319392978132,0 172.9985554609401,-41.63312528156449,0 172.9985747395879,-41.63304355816899,0 172.9986043275403,-41.63297038457341,0 172.9986492541982,-41.63289955753741,0 172.9986763281384,-41.63281724694198,0 172.9986842908337,-41.63274097187477,0 172.998681691793,-41.63267006050434,0 172.9987026472798,-41.63259286324173,0 172.9987068375765,-41.63252128270551,0 172.998711950179,-41.63243612195398,0 172.9987732235197,-41.63236655245469,0 172.9987673551975,-41.63229572481185,0 172.9987143818319,-41.63223185474894,0 172.9987443884519,-41.63214853895256,0 172.998732067436,-41.63205834925689,0 172.998731481129,-41.6319575986904,0 172.9987520175529,-41.63186841546172,0 172.9987913285783,-41.63177671760281,0 172.9988341584145,-41.63168309131407,0 172.9989074175025,-41.63160907948234,0 172.9989123619685,-41.63150732285124,0 172.9989605587479,-41.6314413578202,0 172.9989759816353,-41.63134228363663,0 172.9989927459529,-41.63121429169349,0 172.9990358288081,-41.63109627459494,0 172.9990660867522,-41.63100273276973,0 172.9990326429805,-41.63090424543912,0 172.9990623993515,-41.63078723341962,0 172.9990784922069,-41.63066175626635,0 172.9990594654392,-41.63052186272731,0 172.9991411888308,-41.63047903029697,0 172.9991924857903,-41.63040032532576,0 172.9992021243949,-41.63035296797425,0 172.9992949960801,-41.63028188967643,0 172.9993232443563,-41.63022614938075,0 172.9993495634671,-41.63015515529341,0 172.9992688441022,-41.63000142987637,0 172.9993072340646,-41.62987058900051,0 172.9993924769798,-41.62977159800099,0 172.9994018660449,-41.62967948090297,0 172.9994662379573,-41.62964075724823,0 172.9994048830849,-41.62953874983167,0 172.9993810789595,-41.62940623143033,0 172.999407230081,-41.62928209543881,0 172.9994442791828,-41.62919391733729,0 172.9994696759315,-41.62909861623413,0 172.9995299405343,-41.62901823308091,0 172.9995326243406,-41.62893013947266,0 172.9995370657913,-41.62883047785371,0 172.999528265524,-41.62872712950812,0 172.9995188770481,-41.62862109789965,0 172.9995013586484,-41.62852361684058,0 172.9995325402784,-41.62843527113857,0 172.9994651486351,-41.62838632092959,0 172.9995425966373,-41.62831482349537,0 172.9996000980452,-41.62823418988525,0 172.999645861959,-41.62814886252981,0 172.9996712603731,-41.62805984662726,0 172.9996865982293,-41.62802237919624,0 172.9997607271451,-41.62800753812515,0 172.9997076371893,-41.62800318479507,0 172.999687352711,-41.62790553621203,0 172.9996761212537,-41.62781425667766,0 172.9996539928674,-41.62772574413207,0 172.9996785519845,-41.62763077622577,0 172.9997022730554,-41.62754067132526,0 172.9997877690949,-41.62747462222272,0 172.9998704990007,-41.62741469168329,0 172.9998838258474,-41.62733204563865,0 172.9998917876671,-41.62724344849062,0 172.999901929569,-41.62714647009638,0 172.9998868419553,-41.62706231620219,0 172.9999009238146,-41.62698034119249,0 172.99990561783,-41.62690222127742,0 172.9999411582745,-41.62682074887632,0 172.9999478630566,-41.62672704010189,0 172.999987342131,-41.62664783121197,0 172.9999813901731,-41.62655747402928,0 172.9999964778014,-41.62646996674347,0 173.0000116494164,-41.62638438700907,0 173.0000077934781,-41.62629277421185,0 173.000010559357,-41.62620317183069,0 173.000002092423,-41.62610937747417,0 173.0000048594987,-41.62602547488297,0 172.9999841562284,-41.62594324853999,0 172.999956160182,-41.62585448382061,0 172.9999334462579,-41.62575884656361,0 172.9999143349766,-41.62567544655926,0 172.9998479507774,-41.62559414248953,0 172.9997741898952,-41.62552138714946,0 172.9997022732116,-41.6254200499408,0 172.9996529874406,-41.6253757926418,0 172.9995476271927,-41.62533598019785,0 172.9994670760742,-41.62525023256698,0 172.9993141908642,-41.62514445322674,0 172.9992097525698,-41.62505392871769,0 172.9991168808695,-41.62496516421778,0 172.999028786851,-41.62490028783159,0 172.9989436274946,-41.62479911845724,0 172.9988289616317,-41.62462309930714,0 172.9988322308048,-41.62453634503081,0 172.9988764877692,-41.62445068284146,0 172.998923426357,-41.62436744991283,0 172.9990363302895,-41.62434783670879,0 172.9990285360587,-41.62425379185331,0 172.9990990276122,-41.62420132063999,0 172.9991617235351,-41.62414097157812,0 172.9991287833013,-41.62407525707167,0 172.9990419468912,-41.62404038928187,0 172.9990571171221,-41.62401524294052,0 172.9990019656419,-41.62393972201027,0 172.9989808417921,-41.62385548413219,0 172.9990018804443,-41.62378197426894,0 172.9990202374209,-41.62370016688791,0 172.9990373362547,-41.62362162822911,0 172.9990355762608,-41.62355264611615,0 172.9990196514354,-41.62347419094582,0 172.9990511671962,-41.62340017855277,0 172.9990452983772,-41.62331602366688,0 172.9990434556715,-41.62323924666357,0 172.9990609743528,-41.62317118524747,0 172.9989875481845,-41.62311368497506,0 172.9989488228144,-41.62303824791621,0 172.9989389338293,-41.62296373345939,0 172.9989014665209,-41.62289491763001,0 172.9988454745064,-41.62282979008189,0 172.9987793414191,-41.62277136830179,0 172.9987315652074,-41.6227071631257,0 172.9987286314797,-41.62264245492697,0 172.998751597973,-41.6225636650564,0 172.998746568232,-41.62250406935774,0 172.9987687793703,-41.62243768517762,0 172.9987911606241,-41.6223869745299,0 172.9987854606021,-41.62235026177025,0 172.998784789619,-41.62228429618079,0 172.9987757376288,-41.62220894223027,0 172.9987850420694,-41.6221369418786,0 172.9988453913097,-41.62211028821079,0 172.9989271989654,-41.62214473727447,0 172.9989621504888,-41.6220976305152,0 172.9990620632086,-41.62208874571141,0 172.9990896397634,-41.62201406311783,0 172.9991712799084,-41.62200668768712,0 172.9992727854709,-41.62199042666321,0 172.9993499810546,-41.62192856794761,0 172.9994205575918,-41.62185941776519,0 172.9995010239609,-41.62179529634123,0 172.9995871895908,-41.62173603519901,0 172.9996199630415,-41.62166554357246,0 172.9996318653458,-41.62158558073065,0 172.9996967405299,-41.62152699047578,0 172.9997608629135,-41.62148038794642,0 172.9998367177618,-41.62143177317877,0 172.9997933840486,-41.62138407964847,0 172.9997478716051,-41.62136228738244,0 172.99970604447,-41.62131803009518,0 172.9995907933147,-41.62133135688946,0 172.9995043759332,-41.6212623744193,0 172.9994779728729,-41.62119783365478,0 172.999434722565,-41.6211324551269,0 172.9993940700173,-41.62106062199086,0 172.9993377428488,-41.62100873803778,0 172.9993267637489,-41.62093799492082,0 172.9993086591919,-41.62087236428475,0 172.999281333432,-41.62080539330351,0 172.9992535899033,-41.62074621629981,0 172.9991910598235,-41.620677065307,0 172.9991245925152,-41.62061956604776,0 172.9990676791122,-41.62055745690677,0 172.9990355762527,-41.62049182610466,0 172.9989866263515,-41.62042477110008,0 172.998910266047,-41.62036919917927,0 172.9989700294345,-41.62031563893175,0 172.9988939215528,-41.62024808013216,0 172.998891742482,-41.6202020628929,0 172.9988757329931,-41.62014867127206,0 172.9988807615119,-41.62006703126961,0 172.9989003767982,-41.61998337917767,0 172.9989296284201,-41.61990366785442,0 172.998950165018,-41.61984717357189,0 172.9989699457233,-41.61976788098934,0 172.999010179104,-41.6196933660323,0 172.9990282840631,-41.61960963013477,0 172.9990761454254,-41.61953997734067,0 172.9991415232207,-41.6194802975005,0 172.9991866175283,-41.61941349363584,0 172.9991863665586,-41.61932581960029,0 172.9991907260241,-41.61924485060996,0 172.999200699441,-41.61916689908786,0 172.9992015383351,-41.61908123548111,0 172.999175638502,-41.61899364413146,0 172.9991904743492,-41.61892482871176,0 172.9991873725259,-41.61884159703567,0 172.9991530908413,-41.61875652044754,0 172.9991502411517,-41.6186721988879,0 172.9991493192555,-41.61858393756342,0 172.999108331511,-41.61849953194628,0 172.9991069907092,-41.61841478975826,0 172.9990936622878,-41.61832761821446,0 172.9990757258593,-41.61824002779098,0 172.9990102626761,-41.61815251983169,0 172.9989246003496,-41.61808404040114,0 172.9988483235665,-41.61801212382739,0 172.9988044869209,-41.61793299902572,0 172.9987564588975,-41.61785244831093,0 172.9986920861402,-41.61777919057614,0 172.9986406217863,-41.61770249578468,0 172.9985804385079,-41.61762446058103,0 172.9985157302425,-41.61754458149414,0 172.9984848852612,-41.61746612597388,0 172.9984347610141,-41.61738683430751,0 172.9984299846138,-41.61730318282829,0 172.9983975459393,-41.61722087214385,0 172.9983761719611,-41.61713034788022,0 172.9983452433491,-41.61705097087032,0 172.9983002317996,-41.61696681708694,0 172.9982639390339,-41.61689439718836,0 172.998245497539,-41.61680898546862,0 172.9982076964328,-41.61672634047331,0 172.9981390486543,-41.61665693745942,0 172.9980578277257,-41.61659465984423,0 172.9980172590745,-41.6165131883843,0 172.9979791211084,-41.61643188358903,0 172.9979631946918,-41.61634756173507,0 172.9979305903162,-41.61626323958298,0 172.9979124844775,-41.61617305124469,0 172.9978992422381,-41.61608302962862,0 172.9978767782836,-41.61599208459459,0 172.9978866688879,-41.61591027712659,0 172.9979058638342,-41.61583475690637,0 172.9978734250241,-41.61576284044777,0 172.9978759399254,-41.61568002673221,0 172.9978619425922,-41.61559821882236,0 172.9978238894382,-41.61551515483865,0 172.9978255653457,-41.61543401735821,0 172.9978348689728,-41.61535288092247,0 172.9977833200966,-41.61527174422533,0 172.9977382249924,-41.61519639119986,0 172.9976534835769,-41.61513193345711,0 172.9975753645042,-41.61505917918594,0 172.9975279233831,-41.61498097612813,0 172.9975039509876,-41.61490612516715,0 172.9975399931428,-41.61482557569615,0 172.9976114904074,-41.6147582685476,0 172.9976107375539,-41.61466849933739,0 172.9976414977496,-41.61460353951291,0 172.9976182806605,-41.61451955250481,0 172.9976020192137,-41.61443254820322,0 172.9976380616222,-41.61436758938888,0 172.9976613637959,-41.61428829612166,0 172.9977077979501,-41.61421981475034,0 172.9977167675606,-41.61414789814348,0 172.9977239766957,-41.61406709672733,0 172.9977292560967,-41.61397833283756,0 172.9977708314193,-41.61390834442172,0 172.9978607690527,-41.61384455750666,0 172.9979290816422,-41.61378395600772,0 172.9979839828791,-41.61371463789256,0 172.9979624423314,-41.61374716007932,0 172.9979940400142,-41.6137044958769,0 172.9980276528978,-41.6136209278541,0 172.9980875830826,-41.61354507229255,0 172.9981271451709,-41.61346728791206,0 172.9981838910877,-41.61338388774994,0 172.9982404685747,-41.61330954077148,0 172.9983061832228,-41.61323812666971,0 172.9983634310112,-41.61317828045296,0 172.998409950359,-41.61309705979083,0 172.9985042475633,-41.61304609698383,0 172.9985835408217,-41.61298398741286,0 172.9986727236454,-41.61292925305906,0 172.9987426286482,-41.61285607962926,0 172.9987995422233,-41.61278592345498,0 172.99882577689,-41.61270998337531,0 172.9987810186949,-41.61261987771034,0 172.9988150490593,-41.61252641945919,0 172.9988567895165,-41.61243338101134,0 172.9988888920505,-41.61234461550271,0 172.9989375909082,-41.61226448542144,0 172.9989352444056,-41.61219659123984,0 172.998928454895,-41.61211864039093,0 172.9988586339878,-41.61203976658845,0 172.9988909880106,-41.61197178897697,0 172.9989741368224,-41.61192376023728,0 172.9990300446381,-41.61186123129477,0 172.9989877996647,-41.61179107504194,0 172.9989726280074,-41.61170658573095,0 172.9989918230283,-41.61161924592207,0 172.9990505800645,-41.61154112629379,0 172.9991073264921,-41.61147306504461,0 172.9991580369054,-41.61141246535392,0 172.9991367463884,-41.61133727963578,0 172.9991433678972,-41.61124482626908,0 172.9991558558295,-41.61116033627937,0 172.9992290309731,-41.61111499144285,0 172.9993424387154,-41.61108272086668,0 172.9994550911956,-41.61107752425851,0 172.9994641421995,-41.61103502705402,0 172.9993924768489,-41.61098482011688,0 172.9993332171168,-41.61090049813977,0 172.9992696827873,-41.61078851564326,0 172.9992089987962,-41.61070243356968,0 172.9991725369915,-41.61062288911558,0 172.9992105897833,-41.61054317765351,0 172.9992954996776,-41.61048727001677,0 172.9993236612893,-41.61043379306059,0 172.9993163701109,-41.61044167258417,0 172.9992246716382,-41.61033287576392,0 172.9992406815844,-41.61026732898615,0 172.9991631488372,-41.61018309055416,0 172.9991397633833,-41.61009508113587,0 172.9991767275734,-41.60999801804543,0 172.9992275210722,-41.60991277438632,0 172.9992895489544,-41.60985158652115,0 172.9993758814539,-41.60977681938,0 172.9994609581313,-41.60973264719614,0 172.9995289362029,-41.60964958234472,0 172.9995501415088,-41.60953718145861,0 172.999584088665,-41.60945411642921,0 172.9996485460903,-41.60939485683234,0 172.9997116617294,-41.60930902571389,0 172.9997656403524,-41.60923778003286,0 172.9998154279217,-41.60916125335014,0 172.9998363829697,-41.60903812382547,0 172.9997844982337,-41.60893712147423,0 172.9997596886881,-41.6089367854524,0 172.9998061252442,-41.60884902758046,0 172.9998241457786,-41.60874995379864,0 172.9998650494557,-41.60865213655879,0 172.9999313504631,-41.60857913078463,0 173.0000417398551,-41.60855624689005,0 173.0000645377279,-41.60846748279994,0 173.0000060343175,-41.60841476048699,0 173.0000005856692,-41.60837477895232,0 173.000008883438,-41.6082764599463,0 173.0000322681188,-41.60817218891717,0 173.000081387247,-41.60807286286756,0 173.0001462616427,-41.60799432468784,0 173.0002277337389,-41.60791955778651,0 173.0003130618183,-41.60787504989084,0 173.0003761776629,-41.60781746612904,0 173.000424038564,-41.60776432478496,0 173.0004772626748,-41.60769819218831,0 173.000532752411,-41.60761915121778,0 173.0005256275773,-41.60751186187076,0 173.0004786894812,-41.60735335997578,0 173.0005301528717,-41.60731857541289,0 173.000510287735,-41.60722838645331,0 173.000615062816,-41.60720097766994,0 173.0006295632645,-41.60713928669108,0 173.000607266792,-41.60706887865736,0 173.0006103685502,-41.60701079245835,0 173.000622186768,-41.60695505260515,0 173.0006522767467,-41.60690341996917,0 173.0006872306434,-41.60684265121081,0 173.0006782613887,-41.60676587315338,0 173.000700222805,-41.60670711578815,0 173.0007284699566,-41.60661231572398,0 173.0007185790566,-41.60654031513982,0 173.0007125440719,-41.6064637892698,0 173.0006739862097,-41.60638323823382,0 173.0006103680082,-41.60631635137603,0 173.0005610815905,-41.60625256472264,0 173.0005460784371,-41.60617327274284,0 173.0005672847007,-41.60609012366867,0 173.0005809483193,-41.60601049557328,0 173.0005961191377,-41.60592148007564,0 173.0005814506584,-41.60582114796749,0 173.0005506890205,-41.60572567897588,0 173.0005090310539,-41.60568209199663,0 173.0004854773981,-41.60559517177055,0 173.0005692972141,-41.60553809129885,0 173.0006220200497,-41.60546592372802,0 173.000652528982,-41.60537623708667,0 173.0006748256354,-41.60528453915695,0 173.0007261223181,-41.60520097192111,0 173.0008062534583,-41.60513584508412,0 173.0008765774183,-41.60507348260308,0 173.0009506743454,-41.60501489320076,0 173.0010196560164,-41.60493166075332,0 173.0011113550584,-41.60485404408981,0 173.0011670948292,-41.60477659525825,0 173.0012237562057,-41.60470358968871,0 173.0013097537591,-41.6046568174862,0 173.0013595435522,-41.60459797769139,0 173.0014241671569,-41.60453083746766,0 173.0014468822191,-41.60448264187831,0 173.0015204749623,-41.60441717954649,0 173.001545788677,-41.60434459215862,0 173.001607395656,-41.60426094151315,0 173.0016613750301,-41.604183659994,0 173.0017311967327,-41.60412222113594,0 173.0017606177928,-41.60404544164003,0 173.0017904563864,-41.60396799289331,0 173.0018657270981,-41.60390286627721,0 173.0019012643523,-41.60381795756562,0 173.0018815675816,-41.6037275165821,0 173.0018999246676,-41.60363992577632,0 173.0019414980461,-41.60355652567002,0 173.0019709195952,-41.60347295822093,0 173.0020092236773,-41.60338427716945,0 173.0020592642521,-41.60329978878327,0 173.0020940498513,-41.60321965748677,0 173.0021353716658,-41.60312904877186,0 173.0022007511433,-41.60305369523643,0 173.002251041975,-41.60296778090338,0 173.0023086253576,-41.60288287252025,0 173.0023595881889,-41.60280399822791,0 173.0023830566713,-41.60272034701448,0 173.0024314216841,-41.60265412978994,0 173.0024426530909,-41.6025657851195,0 173.0025082824368,-41.60249018009096,0 173.0025879943209,-41.60242245428988,0 173.0026355202483,-41.60233084093149,0 173.0026898349116,-41.60224668542868,0 173.002751777117,-41.6021699913643,0 173.0028108694057,-41.60209991859073,0 173.00288119237,-41.60202473297142,0 173.0028851324382,-41.60195264930056,0 173.0029416275928,-41.60188383304107,0 173.0029732263872,-41.60180152267182,0 173.0029945169309,-41.60171904503046,0 173.0030417915136,-41.6016390815324,0 173.0030625778766,-41.60155584907525,0 173.0030871359173,-41.6014745449727,0 173.0031037327834,-41.60138837893964,0 173.0031243517828,-41.6012967642862,0 173.0031767401081,-41.60121227532335,0 173.0032543558459,-41.60114731523755,0 173.0032819312217,-41.601060227419,0 173.0032845308524,-41.60097389422108,0 173.0032577932041,-41.60089552250064,0 173.0032396884253,-41.60081698479841,0 173.0031611494662,-41.60074255339382,0 173.0031868803183,-41.60065395692036,0 173.0031445530543,-41.60056116852421,0 173.0030694505934,-41.60049704761214,0 173.0029755739189,-41.60044952218123,0 173.0028938497943,-41.60040342132047,0 173.0027976256756,-41.60034382692574,0 173.002764181595,-41.60025305039481,0 173.0028056730661,-41.60015523285156,0 173.0028778412496,-41.60006529501074,0 173.0029579717027,-41.59998767889707,0 173.0029191632312,-41.59988776734501,0 173.0028702968243,-41.59979229752948,0 173.0028077680895,-41.59970864650057,0 173.002862334519,-41.59961988093842,0 173.0028817799505,-41.59953354730721,0 173.0028491738854,-41.59944578911433,0 173.002892174889,-41.59936171842526,0 173.0029273780793,-41.59927152925729,0 173.0030233500136,-41.59923012292821,0 173.003118485099,-41.59918159176517,0 173.0032604740873,-41.59918041868021,0 173.003404978755,-41.59912124194232,0 173.0034816724402,-41.59885276990259,0 173.003618968962,-41.59863903056503,0 173.003681162777,-41.59823443600583,0 173.0038738621175,-41.59809253047291,0 173.0040956467901,-41.59796034786115,0 173.0042528926255,-41.59784635476371,0 173.0044317621831,-41.59776848620018,0 173.004583474214,-41.59772498399732,0 173.0047741630465,-41.59767108916233,0 173.0048268840766,-41.59756245891342,0 173.0049155655659,-41.59744913610302,0 173.0050604881577,-41.59734025496363,0 173.0051892335868,-41.59721209604098,0 173.0053451385502,-41.59706407101312,0 173.0055621448473,-41.59696298618093,0 173.0058820822823,-41.59690959298984,0 173.0060581857445,-41.596916046582,0 173.0062759479619,-41.59691789130611,0 173.0063953902376,-41.5969429529471,0 173.0065186880778,-41.59698083884176,0 173.0066616821987,-41.59694152728252,0 173.0067828846827,-41.59695242353274,0 173.0068886645043,-41.59697463555567,0 173.0070116286398,-41.59700816411134,0 173.0071135512842,-41.59702341891905,0 173.0072120398571,-41.59698553347623,0 173.0073706255187,-41.59699944780564,0 173.0074690291478,-41.5970486492449,0 173.00754873942,-41.59709994602668,0 173.0076478978985,-41.59714747100786,0 173.0077479787083,-41.59717018612311,0 173.0079108127804,-41.59713559870745,0 173.0080324565774,-41.59712038144506,0 173.0081203123173,-41.59715081994959,0 173.0082223936542,-41.59713623978208,0 173.0083344597115,-41.59715057314096,0 173.008450633421,-41.5971574462385,0 173.0085676441952,-41.5971785687053,0 173.0086826445538,-41.5972042173785,0 173.0087844843995,-41.59722307543594,0 173.0089008254863,-41.59724168457919,0 173.0090119689495,-41.59726339252265,0 173.0091027448873,-41.59729448938748,0 173.0091802774064,-41.59736934020091,0 173.0092361848454,-41.59745299103177,0 173.0093185784469,-41.59751795224429,0 173.0094180715709,-41.59755944167345,0 173.0095361735276,-41.59756832664535,0 173.0096336542305,-41.59760755342302,0 173.0096762352472,-41.59757444531326,0 173.0097019663676,-41.59749146518775,0 173.0097506661668,-41.59748492627003,0 173.00979115062,-41.59742717522033,0 173.0098311324599,-41.5973630542349,0 173.0099265173002,-41.59735894681577,0 173.0099765578166,-41.59733237635053,0 173.0100505698906,-41.59727009792821,0 173.0101574402831,-41.59725014907477,0 173.0102577713212,-41.59720974872396,0 173.0103721845502,-41.59718359746668,0 173.0104601938929,-41.59721419180028,0 173.010571421928,-41.5972364864096,0 173.0106646290757,-41.59722768577496,0 173.0107768621492,-41.59724637716646,0 173.0108927839745,-41.59725132386305,0 173.0109379625497,-41.59721452564909,0 173.0109477696335,-41.59714361563273,0 173.0110176742368,-41.59706633531447,0 173.0110709838646,-41.59699743514491,0 173.0111323387918,-41.59692786582784,0 173.0111922694601,-41.59686634193729,0 173.0112742454894,-41.59680716586479,0 173.0113393731246,-41.59673382470557,0 173.0114062604873,-41.59666492483619,0 173.0115195829697,-41.59664673590277,0 173.0116218434126,-41.5966024790389,0 173.0116988715715,-41.59653073166469,0 173.0117683569996,-41.59645981908975,0 173.0118594681888,-41.59640064435762,0 173.0119521732147,-41.59633777909575,0 173.0120493197108,-41.59627893866016,0 173.0121236671711,-41.59621774963641,0 173.0122266807345,-41.59617064404458,0 173.0123250837702,-41.5961156583661,0 173.0124106627712,-41.59604608936038,0 173.0124772986615,-41.59596453362363,0 173.0125444373802,-41.59589655630822,0 173.012626496571,-41.59585188100819,0 173.0127418319254,-41.59584584599998,0 173.0128696561587,-41.59584098403284,0 173.0129808846072,-41.59580712118039,0 173.0130755999499,-41.59575615973349,0 173.0131690583364,-41.59570863373449,0 173.0132878292301,-41.59566412579135,0 173.0134025775823,-41.59565297764431,0 173.0135363525328,-41.59564627224654,0 173.0136475803526,-41.59560696203047,0 173.0137262860375,-41.59554602455561,0 173.0138183189185,-41.59548517189239,0 173.0138798433034,-41.59542054788258,0 173.0139212503636,-41.59532952046231,0 173.0139712903389,-41.59524855133752,0 173.0140217496575,-41.59515417025912,0 173.0141178901428,-41.59510983084574,0 173.0142169634393,-41.59507823092187,0 173.0143205640585,-41.59506389824802,0 173.0144308690155,-41.59502517286482,0 173.014534470747,-41.59498963409981,0 173.0146309451162,-41.59493867294592,0 173.0147457768856,-41.59491059331537,0 173.0148539880973,-41.59486918631535,0 173.0149564983197,-41.59482702513999,0 173.0150542324356,-41.59477279381028,0 173.0151696503814,-41.59473918319475,0 173.01524676334,-41.59468168296875,0 173.0153149921789,-41.59461395787885,0 173.0154137314705,-41.59457104198543,0 173.0154944503077,-41.59451622438206,0 173.015587320588,-41.59446786061137,0 173.0156279734059,-41.59440625413067,0 173.0156315768123,-41.5943521908902,0 173.0156666973375,-41.59430743060744,0 173.0157234427507,-41.59424573992682,0 173.0157651840293,-41.59417114110807,0 173.01579385174,-41.59409813475558,0 173.0158560444249,-41.59404189178181,0 173.01592393825,-41.5939833862448,0 173.0159280438117,-41.59389872870595,0 173.0159592265,-41.59382228567498,0 173.0159467377213,-41.59374223947133,0 173.0159648425287,-41.59365439680067,0 173.016020330546,-41.59357217038527,0 173.0161060760285,-41.59349706808547,0 173.0161927446449,-41.59342934257766,0 173.0162943341698,-41.59336949628417,0 173.0164045558258,-41.59334007625811,0 173.0164906384502,-41.59329615511874,0 173.0165982618933,-41.59327025443312,0 173.0166820810896,-41.59322532735986,0 173.0168217233653,-41.59323463137964,0 173.0169567547922,-41.59323085910175,0 173.0170766173616,-41.59320814474579,0 173.0171784570495,-41.5931775506671,0 173.0172806325444,-41.59313773656635,0 173.017387921149,-41.59309582649965,0 173.0174825517754,-41.59303857881186,0 173.017593361582,-41.59301401969711,0 173.0176945310229,-41.59296959544278,0 173.0177876551194,-41.59294201871083,0 173.0178647678132,-41.59293891814637,0 173.0179594828172,-41.59288108277622,0 173.018041122777,-41.59281872050968,0 173.0181153856885,-41.59274705659281,0 173.0182020547625,-41.59269198663159,0 173.018287383329,-41.59264923881617,0 173.0183986951782,-41.59262987696407,0 173.0185045581921,-41.59258025582406,0 173.0185975977422,-41.59252879196315,0 173.0186785658799,-41.59246626180877,0 173.0187747909781,-41.59242812450408,0 173.0188624657654,-41.59236903121393,0 173.0189392435688,-41.59231463426292,0 173.0190454428976,-41.59229795319899,0 173.0191361355696,-41.59223718383618,0 173.0192398186791,-41.5921963643216,0 173.0193331935984,-41.59214674450833,0 173.0194313449084,-41.59210902516561,0 173.0195034292591,-41.59204632929295,0 173.0195829734039,-41.59199335549229,0 173.0196077839911,-41.59191909139967,0 173.0196210279247,-41.59184424109797,0 173.0196369538526,-41.5917588292636,0 173.0196736655566,-41.59168498466384,0 173.0197066905472,-41.59161264940792,0 173.0197256338308,-41.59154282779665,0 173.0197586584409,-41.59146965393858,0 173.0198294863123,-41.59140947111264,0 173.0199264643927,-41.5913535639803,0 173.0200014823097,-41.59128734722174,0 173.020065351485,-41.59122557296413,0 173.0201268756921,-41.59116639588901,0 173.0201981215265,-41.59110973461218,0 173.0202708769648,-41.59104653552198,0 173.0203461464662,-41.59098517973681,0 173.020399371603,-41.59090873696329,0 173.0204392694194,-41.59083346658376,0 173.0205132810853,-41.59076825578134,0 173.0206046430134,-41.59071025397437,0 173.0206662507219,-41.59063758273844,0 173.020714278603,-41.59056424106667,0 173.0207846863201,-41.59049425235303,0 173.0208414322889,-41.59043742305811,0 173.0209140207537,-41.59037045131833,0 173.0209796494351,-41.59029744500464,0 173.0210220619818,-41.59021412772331,0 173.0210619609688,-41.59013123153138,0 173.0211186212289,-41.59004875378611,0 173.0211698366854,-41.58997373506995,0 173.0212247379026,-41.58990265725105,0 173.0212966536915,-41.589839960257,0 173.0213669782258,-41.5897730724138,0 173.0214378884907,-41.58970367047697,0 173.0215293362312,-41.58964734417393,0 173.0215846572083,-41.58959219192938,0 173.0216610992852,-41.58952639353997,0 173.0217390514667,-41.58945975713392,0 173.0217997362361,-41.58938993626161,0 173.021870982046,-41.58931843798443,0 173.0219089518667,-41.58924065440202,0 173.021954298253,-41.58916044012466,0 173.0220428943757,-41.58910495163192,0 173.0221304857812,-41.58904493708361,0 173.0221990495749,-41.58898115117954,0 173.0222781759571,-41.5889308588476,0 173.0223619934257,-41.58887729949763,0 173.0224127891477,-41.58880965728284,0 173.0224039871125,-41.58873547746014,0 173.0223781703258,-41.58866263853036,0 173.0223538639183,-41.58858225567307,0 173.0224508425611,-41.58857764575044,0 173.022562992216,-41.58855543427598,0 173.0226723746666,-41.58852165424248,0 173.0227896384809,-41.58850539447374,0 173.0228969270521,-41.58848837815727,0 173.0229603777877,-41.58842266434181,0 173.0230231589079,-41.58836365567472,0 173.023078227548,-41.58829048181395,0 173.0231391639139,-41.58822342721696,0 173.0231927244947,-41.58815444381011,0 173.0232334599668,-41.5880734742296,0 173.0233416702607,-41.5880562915743,0 173.0233498848701,-41.5880657628971,0 173.0233723475691,-41.58802108745378,0 173.0233297685304,-41.58801614207596,0 173.0233708400697,-41.58793626226452,0 173.0234283396938,-41.58787256072755,0 173.0234831575118,-41.58781154029288,0 173.0235313528985,-41.58772503858304,0 173.0236243913248,-41.58767424436325,0 173.0236405700346,-41.58759193488165,0 173.0236855807158,-41.58752462655109,0 173.0237694834023,-41.58745966738464,0 173.0238458422202,-41.58740216777998,0 173.0239283197693,-41.58736126373168,0 173.0239806226659,-41.58728582645979,0 173.0240496907805,-41.58723955856087,0 173.0241305088318,-41.5871827973321,0 173.0242321646323,-41.58710855025311,0 173.0243035786837,-41.58710922063982,0 173.0243895750894,-41.5870828181945,0 173.0244688678798,-41.58703587862644,0 173.0245535258462,-41.58703017876486,0 173.0246564567102,-41.58703596195164,0 173.0247360845347,-41.58699363387434,0 173.0248050670222,-41.58696723117762,0 173.0248698590118,-41.58698843662088,0 173.0249523372294,-41.58700528495233,0 173.0250244207542,-41.58702179771378,0 173.0250676722314,-41.58697066816037,0 173.0251187179032,-41.58693068524875,0 173.0251809949056,-41.58687678985367,0 173.025260454846,-41.58685449462084,0 173.0253375694627,-41.58687268324482,0 173.0254100728471,-41.58684024540276,0 173.0254723510008,-41.58679925733593,0 173.0255174454459,-41.58677419528316,0 173.0255522303737,-41.58677017209707,0 173.0256473640618,-41.58678878074858,0 173.0257046969893,-41.58673949431527,0 173.025725651171,-41.58668685626744,0 173.025728921223,-41.58663438610649,0 173.0257604356124,-41.58658216542762,0 173.0257633696799,-41.58652659322024,0 173.0257535632423,-41.58645467738742,0 173.0258016761657,-41.58642131790344,0 173.025854733268,-41.58637622255564,0 173.0258740940924,-41.58629986406593,0 173.0258935416206,-41.58624244793633,0 173.0259181839893,-41.58618813275616,0 173.0259910217968,-41.58619047893371,0 173.0260258908226,-41.5861248491269,0 173.0260615989597,-41.58605469294033,0 173.026128485315,-41.5860107715855,0 173.0261700598258,-41.58593734707608,0 173.0262283971658,-41.58587372769636,0 173.0262825460234,-41.58580977417181,0 173.0263479247095,-41.5857943512888,0 173.0264514403729,-41.58578823136894,0 173.0265139704424,-41.58574246698746,0 173.0265558800485,-41.58569779091929,0 173.0265771688514,-41.58565034985421,0 173.026616898879,-41.585606680385,0 173.0266152221297,-41.58555521475052,0 173.0266316518343,-41.58550157145599,0 173.0266781708053,-41.58544884893622,0 173.026723851794,-41.58538908646646,0 173.0267546975853,-41.58533359780666,0 173.0268142936621,-41.58532253374354,0 173.026845892071,-41.58525958591949,0 173.0269174738514,-41.58522119619799,0 173.0269231739868,-41.58516126555931,0 173.0269411948293,-41.58508038010226,0 173.0269751419965,-41.58503176594084,0 173.0269993662979,-41.58496496196671,0 173.0270398499802,-41.58490343875879,0 173.0270954222515,-41.58486764769505,0 173.0271497365106,-41.5848617810252,0 173.0272422726965,-41.58485993695554,0 173.0273246669188,-41.58481911694463,0 173.0273700976794,-41.58475734203878,0 173.0274188795972,-41.58470235693498,0 173.0274403378762,-41.5846409173834,0 173.0274604542541,-41.58456958720655,0 173.0275222284608,-41.58453379715472,0 173.0275531579352,-41.58449146794865,0 173.027598671257,-41.5844189652095,0 173.027668157419,-41.58438158073445,0 173.0277431757122,-41.58434796895162,0 173.0277820677501,-41.58430379756586,0 173.027849961397,-41.58429365510653,0 173.0279023484607,-41.58423221517571,0 173.0279674747807,-41.58422592845611,0 173.0280444205828,-41.58422265986977,0 173.0281129861494,-41.58417982862524,0 173.0281710718095,-41.58415241953548,0 173.0282257221761,-41.58407698332336,0 173.0282840594461,-41.58402166312936,0 173.0283351898898,-41.58397413691507,0 173.0283839708036,-41.58392007374719,0 173.0284268877939,-41.58386106518183,0 173.028488745774,-41.5838166410722,0 173.0285475865846,-41.58375344100965,0 173.0286128819047,-41.58369912683604,0 173.028720171331,-41.58366484434105,0 173.028812118902,-41.58361933165403,0 173.0289109417794,-41.58358203094257,0 173.0290189854268,-41.58356375849179,0 173.0291047314292,-41.58352612404125,0 173.0291740508024,-41.5834740729691,0 173.0292898883049,-41.58345001738635,0 173.0293907231875,-41.5834062638033,0 173.0294883720206,-41.58338455366807,0 173.0295622173009,-41.58332981972456,0 173.0296627993598,-41.58330065062253,0 173.0297651431541,-41.58325471835146,0 173.0298524816622,-41.58319143457296,0 173.0299413286522,-41.58315036329688,0 173.030031267371,-41.58309663637964,0 173.0301102249975,-41.58304735017274,0 173.0301834835068,-41.58298398335941,0 173.030283059931,-41.58294819179326,0 173.0303723274462,-41.58289697872776,0 173.0304462557063,-41.58283268921579,0 173.0305172502611,-41.58285423122681,0 173.0305677927524,-41.58277627922738,0 173.0305563937047,-41.58268508400287,0 173.0306107925037,-41.58259858300336,0 173.0306912596749,-41.58255734403857,0 173.0307392839195,-41.58253057945358,0 173.0307635942737,-41.5825111594684,0 173.0308506821457,-41.58245977816844,0 173.0309406192316,-41.5824087329158,0 173.0309783397388,-41.58232248303029,0 173.0310322336316,-41.5822456207031,0 173.0310391922297,-41.58214411618175,0 173.0310656782216,-41.58206398436678,0 173.0311062467233,-41.58198603301482,0 173.0311642501468,-41.58191906225468,0 173.03125619866,-41.58186927362602,0 173.0313026347592,-41.58180221766723,0 173.0313963452968,-41.58175989011135,0 173.0314403480863,-41.58167757905399,0 173.0315190552403,-41.58161236788486,0 173.03155643764,-41.58153642767498,0 173.0316436949269,-41.58146744540854,0 173.0316930648249,-41.58140072535614,0 173.0316996853212,-41.58133626890736,0 173.0317363976829,-41.58126468656406,0 173.0317840915319,-41.5811810349576,0 173.0318464520347,-41.58110962112951,0 173.0319347983933,-41.58106637136467,0 173.0320416680011,-41.58103728489571,0 173.0321159308028,-41.58098271941143,0 173.0322050301012,-41.58098037239988,0 173.0323248921204,-41.58096218359483,0 173.0324407305751,-41.58092496782464,0 173.0325437437011,-41.5809022528604,0 173.0326384587316,-41.58083394056659,0 173.0327557215486,-41.58081256616109,0 173.0329137201896,-41.58079362366848,0 173.0330376891786,-41.58076361713664,0 173.0331164781526,-41.58068071895295,0 173.0331973641739,-41.58059606278072,0 173.0332826920016,-41.58052037385952,0 173.0333621515732,-41.58046664553728,0 173.0334656677167,-41.58043739298262,0 173.0335404345422,-41.58039145994875,0 173.0335868698748,-41.58036656545219,0 173.0336588718236,-41.58035147784046,0 173.0337428572755,-41.58033044002854,0 173.0338364847563,-41.58029699622891,0 173.0338995990817,-41.58024159157722,0 173.0339812403933,-41.58021166855473,0 173.0340255791336,-41.58017428493864,0 173.0341034475902,-41.58019926350577,0 173.0342118261827,-41.58019037800937,0 173.034311234403,-41.58016187982491,0 173.0343940491434,-41.58013287850763,0 173.0344853265613,-41.58011636595795,0 173.0345394733926,-41.58006842171091,0 173.0346219529834,-41.58008166469963,0 173.0346717406571,-41.5800478857241,0 173.0347390479595,-41.58001276565076,0 173.0348043428407,-41.57994973333859,0 173.0348705586323,-41.57988619810065,0 173.0349522832469,-41.57983222028818,0 173.0349842188382,-41.57976013483516,0 173.03507893272,-41.57975074736319,0 173.035148336843,-41.57970313864619,0 173.0351585608883,-41.57961864857852,0 173.0351958619454,-41.57952217317376,0 173.0352884805353,-41.57943491781408,0 173.0353596426371,-41.57936065393938,0 173.0355224202197,-41.57928773176757,0 173.0356294577517,-41.57920357649513,0 173.0357545986015,-41.57925722043559,0 173.0358911394845,-41.57930868630555,0 173.0360094930922,-41.57931212252733,0 173.0361122542375,-41.57929829287326,0 173.0364206624965,-41.57925737077512,0 173.0366030868041,-41.57912480061787,0 173.0368483008286,-41.57892033787037,0 173.0373358890774,-41.57887080059442,0 173.0374464857481,-41.57885204018908,0 173.0375631615885,-41.57880996221709,0 173.0376415328636,-41.57875103855642,0 173.0377494921962,-41.5787275687929,0 173.0378098411368,-41.57870669789547,0 173.0379140280258,-41.57866956599779,0 173.0380201428164,-41.5786390555524,0 173.0381069807001,-41.57865447798167,0 173.0382016950471,-41.57862698590526,0 173.0382764623907,-41.57859521830373,0 173.038348966209,-41.57855967824178,0 173.0384559187414,-41.57855884131696,0 173.0385421682365,-41.578619695238,0 173.038615845573,-41.57868155268005,0 173.0387049450179,-41.57873737627257,0 173.0388103879364,-41.57877526249225,0 173.0389280706978,-41.57881356871751,0 173.0390233730375,-41.57887626435853,0 173.0391275596012,-41.5789426490032,0 173.0392368599249,-41.57899855717972,0 173.0393486753574,-41.57904155599341,0 173.0394677814907,-41.57906779135411,0 173.0395682802913,-41.57912277718464,0 173.0396556211388,-41.57916845749114,0 173.0397863780149,-41.57921204382283,0 173.0398800867213,-41.57924422967552,0 173.040011097923,-41.57931455482329,0 173.0401440331501,-41.57940742539413,0 173.0402399230115,-41.57946056754116,0 173.040341260553,-41.57950616496385,0 173.0404446925198,-41.57953407656711,0 173.0406099834568,-41.57955989276023,0 173.0407206252393,-41.57960875982001,0 173.0408157605446,-41.5796701984039,0 173.0408620267927,-41.57975913024382,0 173.0409379671817,-41.57983155007401,0 173.0410226250012,-41.57990153927022,0 173.0410984810254,-41.57995576962711,0 173.0412029204802,-41.57999306942386,0 173.0413001496783,-41.58004436640536,0 173.0414092827635,-41.58008803611485,0 173.041535765356,-41.58010622492594,0 173.0416513518674,-41.5801262586439,0 173.0417709605837,-41.58014972708222,0 173.0418932537049,-41.58017252607296,0 173.0420010446911,-41.58018048885909,0 173.0421263539139,-41.58019054743637,0 173.0422566923727,-41.58020488070905,0 173.042347133124,-41.58025106403478,0 173.04247353315,-41.58027235487347,0 173.0425906275577,-41.58029875797416,0 173.0427061299224,-41.5803156894411,0 173.0428259912503,-41.58031367765878,0 173.0429355427755,-41.58033664421791,0 173.0430526375511,-41.58033605639002,0 173.0431750976229,-41.5803237352838,0 173.0432830570461,-41.58035877193004,0 173.0434020787596,-41.58039984281317,0 173.0435240369901,-41.58044938024726,0 173.0436387832974,-41.58047402313873,0 173.0437534490049,-41.58049288233833,0 173.0438552892156,-41.58044736824672,0 173.0439753170663,-41.58042171997468,0 173.0440925812994,-41.58042666512418,0 173.0441968507139,-41.58046077907603,0 173.0443150373184,-41.5804899488499,0 173.0444307903014,-41.58052833754419,0 173.0445399227269,-41.58059472256033,0 173.0446702605311,-41.58059396762516,0 173.0448368937861,-41.58062548425544,0 173.0450128295373,-41.58067141683419,0 173.0451411565555,-41.5807235522729,0 173.0452877562814,-41.58081307069264,0 173.0453839795291,-41.58090845727332,0 173.0455195984609,-41.58098246910648,0 173.0456318333749,-41.58106695927805,0 173.045737026307,-41.58114918499687,0 173.0458559654051,-41.58123032245908,0 173.0459701281437,-41.58131866756515,0 173.0460530242128,-41.58140265382824,0 173.0461815187023,-41.58143743902336,0 173.0462938364957,-41.58151471994895,0 173.0464196484047,-41.58158227865853,0 173.046547053229,-41.58165084270794,0 173.0466432770569,-41.58174606158607,0 173.0467328807098,-41.58181856569379,0 173.0467896251171,-41.58191462195314,0 173.0469048767292,-41.58197907915348,0 173.0470254929976,-41.5820065706827,0 173.0470640494614,-41.58205392893274,0 173.0471417497582,-41.58210489116925,0 173.047204445977,-41.58217219789997,0 173.0472880972216,-41.58221712448881,0 173.0473758558829,-41.58225995602235,0 173.0474561543552,-41.5822967529583,0 173.0475451704535,-41.58232156288896,0 173.0476271458943,-41.58236607017842,0 173.0476948706454,-41.58241217221941,0 173.0477671220696,-41.5824504773984,0 173.0478541275166,-41.58247319191693,0 173.0479211825694,-41.58254125305437,0 173.0479894947241,-41.58259757978576,0 173.0480664419616,-41.58264066210207,0 173.0481468240109,-41.58268382940005,0 173.0482154720132,-41.58275574663021,0 173.0482642533188,-41.58283042840275,0 173.0483608969705,-41.58287803833981,0 173.0484007952202,-41.58297233453205,0 173.0484846977874,-41.5830187697668,0 173.0485750551305,-41.58305615345572,0 173.0486564424364,-41.58311566465387,0 173.0487252585793,-41.5831976399823,0 173.0487803276252,-41.58326662263384,0 173.0488498976032,-41.58332169179451,0 173.0489319567908,-41.58337416238592,0 173.0490043759199,-41.58344465437856,0 173.049073023934,-41.58350475257958,0 173.0491557539107,-41.58353316777246,0 173.0492309392708,-41.58357909996843,0 173.0492934676416,-41.58364338996471,0 173.0493536499949,-41.5837240229187,0 173.0494483649738,-41.58377724882603,0 173.049534446674,-41.58384396863855,0 173.0496088787487,-41.58391588523576,0 173.0496665466193,-41.58399576429051,0 173.0497825523754,-41.58401202548227,0 173.0498780206536,-41.58406566954478,0 173.0499550519551,-41.58410808220471,0 173.0500576462425,-41.58413783831026,0 173.0501691247127,-41.58415720049763,0 173.050256967691,-41.58421629249955,0 173.0503587244956,-41.5842501560392,0 173.0504878895442,-41.58424537775635,0 173.0505979433268,-41.58427119390132,0 173.0506924905386,-41.58430086650456,0 173.0507863684396,-41.58436272518981,0 173.0508877887214,-41.58440128122241,0 173.0509939886702,-41.58444587265305,0 173.051099348912,-41.58447973483518,0 173.0511907945072,-41.58453404973944,0 173.0512715969381,-41.58459649571952,0 173.051343429424,-41.5846544987335,0 173.0513923808746,-41.58472105087124,0 173.0514539879328,-41.5847707554356,0 173.0515058722704,-41.58483202792158,0 173.051547194085,-41.58490184766659,0 173.0515815602153,-41.58497938077797,0 173.0516404850734,-41.5850440890343,0 173.0516826461027,-41.58511432989055,0 173.0517512935229,-41.58516084974225,0 173.0518377950861,-41.58520275876673,0 173.0519340193598,-41.5852103859785,0 173.0520398826628,-41.58522463542953,0 173.0521357720306,-41.58527073648977,0 173.0522338384118,-41.58529822825582,0 173.0523340859909,-41.58532278706264,0 173.0523895743698,-41.58536033853,0 173.052463336118,-41.58539990107281,0 173.0525618229281,-41.58543946307816,0 173.0526661788963,-41.5854568985313,0 173.0527745569583,-41.58545295857518,0 173.0528480657491,-41.58550115450573,0 173.0529471387671,-41.58549268888147,0 173.0530817883647,-41.58560161626127,0 173.0531302183941,-41.58559250730826,0 173.0532452697793,-41.58561519036088,0 173.0533845425401,-41.58564241075189,0 173.0535298654618,-41.58566508306383,0 173.0536085996284,-41.58570141703407,0 173.0536934104474,-41.58576957006871,0 173.0537782303623,-41.58585135831621,0 173.0539477727284,-41.58587401967019,0 173.0541536428967,-41.58589666817068,0 173.0544200778603,-41.58594656451802,0 173.0546198960301,-41.58597375923922,0 173.054831830902,-41.58601004072779,0 173.0550982707172,-41.58606448149114,0 173.0552920684827,-41.58613713426025,0 173.0555706459676,-41.58623248113611,0 173.0557281048283,-41.58628696494989,0 173.0559885568194,-41.58643231921302,0 173.0561158357841,-41.58661409239034,0 173.0562794290551,-41.58677766908415,0 173.0564308845061,-41.5869003393636,0 173.0565580872242,-41.58697301725044,0 173.0567639876356,-41.58703202539705,0 173.056939643562,-41.58712741159781,0 173.0570850147009,-41.58720917188838,0 173.0573212524261,-41.58734998823178,0 173.0573515680421,-41.58740452232182,0 173.0576058847591,-41.58751809183664,0 173.0577022771159,-41.58751314622135,0 173.0577972436234,-41.58756276666637,0 173.0578991671601,-41.58759973094987,0 173.0579606914431,-41.58764214422718,0 173.0580276625084,-41.58771112720007,0 173.0581115653624,-41.58775672489685,0 173.058167891484,-41.58781263094357,0 173.0582269838808,-41.58784263862683,0 173.0582926981202,-41.58787298160225,0 173.0583939515232,-41.58791899813802,0 173.0584813758152,-41.58797213919752,0 173.0585604997018,-41.58802729215213,0 173.0586396241722,-41.58808294765498,0 173.0586611663936,-41.58810859580537,0 173.0587700479632,-41.58811957686798,0 173.0588186619602,-41.5881810998922,0 173.0588823653004,-41.58825159186001,0 173.0589864685654,-41.58827849739248,0 173.0590597259331,-41.5883476485725,0 173.0592019169787,-41.58857900038303,0 173.0593809459752,-41.58878035349176,0 173.060230537029,-41.59019509960185,0 173.0607912201498,-41.59066806577822,0 173.0601619979132,-41.59208800195424,0 173.0598127514828,-41.59329749093133,0 173.059463407522,-41.59440181926055,0 173.0587635918328,-41.59519081903735,0 173.058413979757,-41.59597966588113,0 173.0578543425348,-41.59692634068213,0 173.0572246825165,-41.59792561948786,0 173.0568751514722,-41.59887220425412,0 173.0564552920488,-41.59945075627436,0 173.0559656434915,-41.60039739413453,0 173.0556158886238,-41.60108107526592,0 173.0544258208895,-41.60218572917587,0 173.0546914856074,-41.60280002836887,0 173.0553491988831,-41.60324907658605,0 173.0567987413008,-41.60377973401475,0 173.0577155826197,-41.60420164906081,0 173.0584202287159,-41.60479832963102,0 173.0588945121749,-41.60534378161514,0 173.0593472783507,-41.60597658275953,0 173.0597242735704,-41.6063554952248,0 173.059887582724,-41.60654901468778,0 173.0606136234527,-41.60683682681136,0 173.0611646603099,-41.60730569924035,0 173.0615419592692,-41.60803667230837,0 173.0618275933015,-41.60816170048418,0 173.061949992386,-41.60819495974214,0 173.0624418776859,-41.60819383253809,0 173.0632226706492,-41.60792424115298,0 173.0643514498863,-41.60774271887996,0 173.0652487963272,-41.60769816387386,0 173.0655487444905,-41.60772052677039,0 173.0660419143956,-41.60782113151732,0 173.0673212043757,-41.60825989812247,0 173.0678144935116,-41.60848385307694,0 173.0685741613673,-41.60874638630114,0 173.0693398882452,-41.60906653852504,0 173.0697095383056,-41.60920591028737,0 173.0702196609327,-41.60945325685324,0 173.0705065505641,-41.60961247906908,0 173.0706856218283,-41.60993743647185,0 173.0707494993229,-41.61024354608264,0 173.0711528957511,-41.610533265336,0 173.0719904637034,-41.61066877454464,0 173.0723420728138,-41.61074781924245,0 173.0728496422609,-41.61081507089138,0 173.0736151628921,-41.61088307640769,0 173.0743988973081,-41.61116356611225,0 173.074590849858,-41.61115175163527,0 173.0748943367775,-41.61109575198447,0 173.0752446251564,-41.61105052964489,0 173.0755061387487,-41.61105076846912,0 173.0758517114343,-41.61105107872061,0 173.0762573868304,-41.61119671114872,0 173.0764519718356,-41.61140909783413,0 173.0765744546732,-41.61151077424331,0 173.0770713429684,-41.6116797610158,0 173.0773940590989,-41.61165525879512,0 173.0779398576571,-41.61155588657491,0 173.0783524758716,-41.61145569196649,0 173.07870507755,-41.61133032020569,0 173.0789317985229,-41.61129506610811,0 173.0792483815788,-41.61114810443785,0 173.0796512613774,-41.61092185140952,0 173.0798165472812,-41.61066242711561,0 173.079966139689,-41.61031567170576,0 173.0802933299078,-41.61000122108666,0 173.0806685423316,-41.6097191557428,0 173.0809227882274,-41.60962805396871,0 173.0809863250165,-41.60958299353864,0 173.0811770491324,-41.60955045893833,0 173.0818742732073,-41.60970219116577,0 173.0823399325053,-41.60984056080642,0 173.0828930821913,-41.60989603366331,0 173.0832709919658,-41.60988408442224,0 173.0837926902819,-41.60971536739655,0 173.0841703759683,-41.60951072530841,0 173.0846031839248,-41.60925292007326,0 173.0852336138194,-41.6087122489934,0 173.085501021196,-41.60859861812288,0 173.0855069933989,-41.60857610357986,0 173.0861630719218,-41.60842979664987,0 173.0864809966614,-41.60842688187257,0 173.086838205951,-41.60816911962171,0 173.0869147863215,-41.60800068770809,0 173.086974692722,-41.60793401552554,0 173.0870358754496,-41.60793127334574,0 173.0871126053842,-41.60788800098839,0 173.0879474705487,-41.60777487789953,0 173.0883767795597,-41.60761970897047,0 173.0887005041916,-41.60745830944462,0 173.0891332679126,-41.60718968196745,0 173.0894809436763,-41.60699674787262,0 173.0903002810186,-41.60695025026085,0 173.0903098505431,-41.60692773263668,0 173.0904406033954,-41.60691593479404,0 173.0911264086752,-41.60658138960457,0 173.0917020413893,-41.60640809560174,0 173.0925727847243,-41.60622738085449,0 173.0928126778275,-41.60619299037911,0 173.0930405445451,-41.60613609722641,0 173.0934722425559,-41.60599081260948,0 173.0938212452826,-41.60591041752826,0 173.0943501191328,-41.6057686594872,0 173.0946675157033,-41.60537583759043,0 173.0946980232836,-41.6048580699726,0 173.0946881642693,-41.60465998351073,0 173.0953031209384,-41.60430745703635,0 173.0955866717275,-41.60373277185403,0 173.0956319893202,-41.60353194276118,0 173.0958102114684,-41.60314012226317,0 173.0960354226377,-41.60290133933344,0 173.0964128889316,-41.60259310645718,0 173.0965301374325,-41.6023598074889,0 173.096636385869,-41.60197704522771,0 173.0969995808064,-41.60176516707453,0 173.0973030329819,-41.60172981734166,0 173.0974588398266,-41.60162614923708,0 173.0974596251189,-41.60132180384686,0 173.0974902912454,-41.60093819863904,0 173.0977438810266,-41.60040945239818,0 173.0979079780032,-41.60023014055859,0 173.0980014646312,-41.60017154051318,0 173.0984643005733,-41.60002621226916,0 173.0988697077261,-41.59999077912996,0 173.099335962479,-41.5997184847966,0 173.0994402152747,-41.59964006542709,0 173.0997071872036,-41.59925987492482,0 173.0998280109737,-41.59902296734349,0 173.0999330922292,-41.59868072125697,0 173.0999484979148,-41.59854654506931,0 173.1000094368467,-41.59837721702832,0 173.1001865939981,-41.59811055034555,0 173.1003687451195,-41.59798254638158,0 173.1006956972134,-41.59761401328702,0 173.1007995972989,-41.59728977745862,0 173.1007715215564,-41.59694673833253,0 173.1007268766027,-41.59676128741755,0 173.100560888963,-41.59644086829202,0 173.1005460613998,-41.59613383587105,0 173.1007063123374,-41.59579334841472,0 173.1009494811127,-41.59556084494219,0 173.1011146582445,-41.59531219551992,0 173.101201764499,-41.59499157508598,0 173.1013511550067,-41.59460967523272,0 173.1015030927455,-41.59433222251684,0 173.1017282554008,-41.5940961303167,0 173.1021176930372,-41.59382478860607,0 173.1023560321689,-41.59357877991865,0 173.1025677936753,-41.5932031306678,0 173.102850037686,-41.59263293220623,0 173.1029266529333,-41.59253022177757,0 173.1033616808604,-41.5922768459717,0 173.1036590645272,-41.59222437728683,0 173.1042131847952,-41.59221131386975,0 173.1042431535819,-41.59219958350543,0 173.104489021866,-41.5921885749744,0 173.1046496962632,-41.59215512612183,0 173.1050583520282,-41.59191797382773,0 173.1052369662103,-41.59185029260129,0 173.1054322892327,-41.59172677117707,0 173.1058997270289,-41.59150037163219,0 173.1063601191121,-41.59137662488964,0 173.1074128657888,-41.59114972216892,0 173.1084355743269,-41.59089312212159,0 173.1088849580859,-41.59063701142195,0 173.1090176633679,-41.59035956590385,0 173.1091093652898,-41.58993808720285,0 173.1092109575863,-41.58970838988458,0 173.1092887900961,-41.58962548289179,0 173.1096769913877,-41.58936852284531,0 173.1100222555565,-41.58926647160168,0 173.1104706812928,-41.58917513441758,0 173.1107870682147,-41.58901637965896,0 173.1108781129064,-41.58894786694486,0 173.1111162568979,-41.58861089595614,0 173.1110714319144,-41.58832730167541,0 173.1111175881256,-41.58793467511303,0 173.1112781263647,-41.5878237803252,0 173.1114303171948,-41.58774350656285,0 173.1120320670418,-41.58753857285267,0 173.1122681809832,-41.58743931432036,0 173.1127186999649,-41.58716788035301,0 173.1128527748041,-41.58701108549834,0 173.1129449045723,-41.58687413698144,0 173.1132592777376,-41.58622104411466,0 173.1137532159671,-41.58610714086125,0 173.1141008205086,-41.58598436537479,0 173.1143802060751,-41.58594989420259,0 173.1145610463289,-41.58579215366463,0 173.1146831783576,-41.58493663574808,0 173.114743082686,-41.58489966398911,0 173.1148196910855,-41.58480955035482,0 173.1152510507745,-41.58457324051304,0 173.1155228786578,-41.58432267052191,0 173.115806128746,-41.58372812584442,0 173.1158351645439,-41.58315542824534,0 173.1158936892897,-41.58301040453704,0 173.1161786798823,-41.58274811555287,0 173.1163859310595,-41.58261465883356,0 173.1164649427271,-41.58253084495588,0 173.1166886812102,-41.58221638685117,0 173.1167040471576,-41.58208220808329,0 173.1167769096452,-41.58190655705555,0 173.1169717979673,-41.58155430681074,0 173.1170323753642,-41.58120488439556,0 173.1170319049062,-41.58092305109172,0 173.1170913953574,-41.58064116123254,0 173.1171219317275,-41.58025665063673,0 173.1171674425469,-41.58022059027699,0 173.1175837148853,-41.57959259968279,0 173.1178100010032,-41.57937628317273,0 173.1180636408629,-41.57902667741396,0 173.1184067844862,-41.57842036285798,0 173.1186911180209,-41.57778889191523,0 173.1187973577191,-41.57750245449282,0 173.1189606742178,-41.57693232788189,0 173.1190359675345,-41.57678368483828,0 173.1191550030433,-41.57626672535832,0 173.1192146884205,-41.57610729225879,0 173.1192434745879,-41.57540853207839,0 173.1193039979038,-41.57503749775345,0 173.1194092666324,-41.57488882601248,0 173.1195600855146,-41.57473110579159,0 173.1197528739139,-41.57457424599721,0 173.1199337621413,-41.57447052175252,0 173.1201107909502,-41.57421462863182,0 173.1202612361824,-41.57384170639877,0 173.1202620226109,-41.57360219150415,0 173.1206645213642,-41.57267796113401,0 173.1206927390471,-41.57235377904748,0 173.1205581660927,-41.57219363373755,0 173.1203189349994,-41.5718354958263,0 173.1202297791758,-41.57158796382151,0 173.1204966558373,-41.57129056384864,0 173.1209517885865,-41.57099838148385,0 173.1215687691332,-41.5707510314785,0 173.1212724739168,-41.57053174359188,0 173.1210034996481,-41.57017006515494,0 173.1211581452439,-41.57002505794682,0 173.1212816428864,-41.56989966354962,0 173.1213395294605,-41.56969631937941,0 173.1216065766541,-41.5696431776713,0 173.1218183875564,-41.56966346228222,0 173.1219979279647,-41.56959699410744,0 173.1222089843173,-41.56960386686807,0 173.1223698337914,-41.56951082739328,0 173.1225788774892,-41.56950512826979,0 173.122514840388,-41.56940865221777,0 173.1226444252916,-41.56932089424483,0 173.1231813684489,-41.56953085970817,0 173.123533660785,-41.56929683759798,0 173.1234616590619,-41.56902434281987,0 173.1234514346712,-41.56878713460173,0 173.1234964448001,-41.56862963879738,0 173.1238585434627,-41.56849862932857,0 173.1236768231212,-41.56831188020102,0 173.1238634877338,-41.56827525087071,0 173.1239378369156,-41.56820978824426,0 173.1241407628202,-41.56809562643328,0 173.1243165297192,-41.56793494636534,0 173.1247267396626,-41.56790167036074,0 173.124814162787,-41.56780477536259,0 173.125173328031,-41.56772925376978,0 173.1252459993101,-41.56767661677652,0 173.1252055983617,-41.56750663001515,0 173.1251653651121,-41.56736749141332,0 173.1254986301229,-41.56724033715386,0 173.1255562981483,-41.5670411839283,0 173.1257757361985,-41.56686315259906,0 173.1259789974414,-41.56667539712873,0 173.1261261835495,-41.56649627690451,0 173.1263487227231,-41.56623358731364,0 173.1263860220653,-41.56622763569715,0 173.1264687682465,-41.56606333896995,0 173.1264764635061,-41.56601976556913,0 173.1265834995737,-41.56584433236755,0 173.1266568406855,-41.56571566990958,0 173.1266774609443,-41.56553872755617,0 173.1265335438706,-41.56545448896429,0 173.1264401691799,-41.56533169450845,0 173.1266594397238,-41.5649259270127,0 173.1268283351459,-41.56473699903802,0 173.1269471909392,-41.56472199494594,0 173.1271846502387,-41.56470958973106,0 173.1273340992829,-41.56469316066256,0 173.1275015701631,-41.5647155412,0 173.1276425533392,-41.56448352928879,0 173.1277541159301,-41.56438479112286,0 173.1279139599436,-41.56448151809627,0 173.1279968562053,-41.56446441907112,0 173.1281326438579,-41.56439443025117,0 173.1283602948511,-41.56450565851664,0 173.1285215643204,-41.56437272084732,0 173.1287738590963,-41.56425772096281,0 173.128958260861,-41.56415194184644,0 173.1290158445839,-41.56406544001054,0 173.1292384670571,-41.56402914709992,0 173.1293243825743,-41.56413249542287,0 173.1294335986027,-41.56420206601201,0 173.1293845645059,-41.5640470839713,0 173.1298442275868,-41.5643073430455,0 173.1303069929905,-41.5643841206366,0 173.1305822533751,-41.56450523916017,0 173.1307713509947,-41.56463993544626,0 173.1310901975908,-41.56443432820717,0 173.1315021689891,-41.56448922958901,0 173.1318733197639,-41.56461328249976,0 173.1321573813301,-41.56470682376553,0 173.1323501663177,-41.56478997225434,0 173.1326389223407,-41.56487119297425,0 173.1326417727388,-41.56495719095853,0 173.1328177914203,-41.56507386713936,0 173.1329564291231,-41.56515986581574,0 173.1331761177633,-41.56515307675125,0 173.1334002500712,-41.56530554374938,0 173.1335516278375,-41.56541685468341,0 173.1337030886517,-41.56551467141256,0 173.1338547172786,-41.56561047730629,0 173.1340969540174,-41.56571684296864,0 173.1343381849232,-41.5658409789831,0 173.1345165523412,-41.5660003194088,0 173.1346501585658,-41.56614138652886,0 173.1346891342316,-41.56634297124638,0 173.1347027970355,-41.56653047469181,0 173.1346927390574,-41.56673717265161,0 173.1346582892691,-41.56693112945371,0 173.1346095914685,-41.56712315913599,0 173.1346123571093,-41.56735307379803,0 173.1347714452691,-41.56745047302449,0 173.1347911436083,-41.56769036146967,0 173.1349144413562,-41.56794894383509,0 173.135000858906,-41.56826586309414,0 173.1351465370151,-41.56854456202774,0 173.1353774578422,-41.56860926935752,0 173.1356325184573,-41.56863902628188,0 173.1358218664725,-41.56872846097323,0 173.1361781803578,-41.56905225344005,0 173.1363140517418,-41.56921402464596,0 173.1365275382094,-41.56934444717838,0 173.1368074934415,-41.56955994565639,0 173.1369857779301,-41.56974384436239,0 173.1373919633883,-41.56992883350324,0 173.13770226219,-41.57014475109386,0 173.1378979802898,-41.57031532273974,0 173.1381744984905,-41.57033334323928,0 173.1385953547194,-41.57046695152787,0 173.1389926569197,-41.57073433403656,0 173.1393714341358,-41.57089551766112,0 173.1399419893747,-41.5709536885399,0 173.140227058512,-41.57106617437579,0 173.1405248690615,-41.57123448313096,0 173.1407827788614,-41.57135585228697,0 173.1410713670157,-41.57143313283641,0 173.1415916327656,-41.57141108921451,0 173.142091697743,-41.57131662577958,0 173.1425977960764,-41.57137722663597,0 173.1433280279064,-41.5715689199284,0 173.1437812374577,-41.57187921895996,0 173.1444293253561,-41.57217258457235,0 173.1448252870724,-41.57228029256537,0 173.145529449719,-41.57224819036268,0 173.1460698315434,-41.57223285111731,0 173.1468020755705,-41.57235036505353,0 173.1474873794083,-41.5725052627461,0 173.1481101551707,-41.57266066385656,0 173.1480489679238,-41.57287054603603,0 173.1486428257557,-41.57281162129628,0 173.149370793321,-41.5732105162536,0 173.149403146391,-41.57312376330345,0 173.1495436274937,-41.57306056355996,0 173.149821740094,-41.57301203208829,0 173.1500322927227,-41.57293718220668,0 173.1503412505406,-41.57302167189452,0 173.1510355239636,-41.57264406712765,0 173.1512875678991,-41.57227685525178,0 173.1514747340899,-41.57201928002665,0 173.1516458931845,-41.57187762571279,0 173.1515952662787,-41.57172172231558,0 173.1516693631504,-41.57148124577229,0 173.1517025558147,-41.57122492699809,0 173.1518731267771,-41.57109752180907,0 173.1520796572964,-41.57092594456456,0 173.1522640577701,-41.57078688932209,0 173.1524254940983,-41.57066007007208,0 173.1525597724761,-41.57048296081994,0 173.1525012663703,-41.57008624529221,0 173.1526503803526,-41.56976496726426,0 173.1528150848431,-41.56963026978848,0 173.1527066226025,-41.56951434799279,0 173.1525494622366,-41.56912375237959,0 173.1526630377901,-41.56885804538474,0 173.1529156675159,-41.56850726282614,0 173.1528924510765,-41.5681691364231,0 173.1530149929913,-41.56773126516139,0 173.1533235309399,-41.5674344621,0 173.1536708770806,-41.56720664223213,0 173.1542438634566,-41.56706582614045,0 173.1548998316062,-41.56680883669554,0 173.155520596507,-41.56642871836444,0 173.1559615673784,-41.56622788779865,0 173.1565212283862,-41.56610593078795,0 173.1573106483384,-41.56614479387773,0 173.1573122993673,-41.56614409895395,0 173.1574343000269,-41.56602329929147,0 173.1574617992705,-41.5660115998245,0 173.1574700998917,-41.56600709919832,0 173.1576482995995,-41.56596829907431,0 173.1577270007144,-41.56592709962911,0 173.1578533998716,-41.56573749897759,0 173.1579562012497,-41.56571439897764,0 173.1579615011679,-41.56570749927396,0 173.1579883993272,-41.56567709855496,0 173.1580351992465,-41.56552059914149,0 173.1581132004983,-41.56550749881605,0 173.1582084002935,-41.56542799963021,0 173.1583414005014,-41.56515039926206,0 173.1584577995276,-41.56500139879783,0 173.1585019988679,-41.5647280990765,0 173.1584844992494,-41.56447379980805,0 173.1586039994715,-41.56390549919366,0 173.1587741986816,-41.56370869871345,0 173.1588315990477,-41.56355049901541,0 173.1588756999553,-41.5634950996316,0 173.159359299777,-41.56321759942293,0 173.1596482998522,-41.56289399947395,0 173.1596824006358,-41.5627029989788,0 173.1598989001709,-41.56225989941128,0 173.1598767996211,-41.56207059829814,0 173.1601099007133,-41.5617998984561,0 173.1601301997989,-41.56159589868075,0 173.1602081006334,-41.5614509987681,0 173.1602305989002,-41.56142959927405,0 173.1603692996398,-41.5612520988641,0 173.160402399986,-41.56114609919283,0 173.1603727000607,-41.56112229905656,0 173.1603757990646,-41.5610781992315,0 173.160379201071,-41.56107079944813,0 173.160389100001,-41.56104419953869,0 173.1604246003701,-41.56095049875309,0 173.160437600097,-41.56094019872116,0 173.1604972995424,-41.560894198619,0 173.1605269992136,-41.5608083990434,0 173.1606470993045,-41.56073289830725,0 173.1607160001441,-41.56060889865633,0 173.1606833006835,-41.56056269969528,0 173.1608528008937,-41.56045279906756,0 173.1608605998374,-41.56043159925741,0 173.1609115004723,-41.56037289916753,0 173.1609129997015,-41.56037199903646,0 173.1609174004639,-41.56036889885034,0 173.1609484001151,-41.56026069874841,0 173.1608582001023,-41.55998569979358,0 173.1609774990374,-41.55976789891429,0 173.161289600025,-41.55963169999426,0 173.1613111000791,-41.55958109893502,0 173.1613344990387,-41.55953939987752,0 173.1613436005733,-41.5594884991464,0 173.16136100002,-41.55938569899126,0 173.1613489993134,-41.55931049900067,0 173.1614391000886,-41.55921989904226,0 173.161451600104,-41.55907069894651,0 173.1613774002504,-41.55880219920676,0 173.1613976991517,-41.55870709895719,0 173.1613577000874,-41.55847269897376,0 173.1614452991812,-41.55823699847085,0 173.1615067994843,-41.55814059912685,0 173.1620781009309,-41.55769110001706,0 173.1621940997778,-41.55764549883536,0 173.1621707000612,-41.55759189931536,0 173.1624278000743,-41.55729909900012,0 173.1624803010199,-41.55716939901192,0 173.1627571006393,-41.55680059931833,0 173.1629697999032,-41.55636359869547,0 173.1629728992886,-41.55598579943692,0 173.1630294004975,-41.5558377995461,0 173.163155499697,-41.55565539905887,0 173.1633185996614,-41.55555259978858,0 173.1634401000998,-41.55539359943393,0 173.163460499925,-41.55521689912118,0 173.1633888989893,-41.55508339916693,0 173.1635620997296,-41.55488059895448,0 173.1637113991118,-41.5547846985689,0 173.1638639005246,-41.55450439917438,0 173.163944900458,-41.55439909842259,0 173.1640043997499,-41.55416389884764,0 173.1640064003215,-41.55392259859956,0 173.1642155002921,-41.55358709918973,0 173.1642656001922,-41.55331299924766,0 173.1644333007684,-41.55304649911584,0 173.1644386008366,-41.55277489871853,0 173.1645082995481,-41.55267569907712,0 173.1645355997045,-41.55254849941299,0 173.1646564996931,-41.55233109838787,0 173.1649109002135,-41.55202999854039,0 173.1662746011997,-41.55232139932234,0 173.1669488997454,-41.55231129877154,0 173.1680379997549,-41.5518119995149,0 173.1676886691445,-41.55160568497178,0 173.1671463009077,-41.55094269906594,0 173.1671474137164,-41.55028218835606,0 173.1673397001207,-41.54991179988032,0 173.1671439934389,-41.54940656758127,0 173.167194100573,-41.54934769893836,0 173.1672638994049,-41.54933179940331,0 173.1673083993536,-41.54932189861687,0 173.1673582000969,-41.54929239906274,0 173.1673945995533,-41.5492458986671,0 173.1674076001546,-41.54918939901676,0 173.1674296008055,-41.54914499937071,0 173.1674611000613,-41.54911399877032,0 173.1674915997752,-41.54910269873433,0 173.1675155000688,-41.54908819898277,0 173.1675461001818,-41.54905309951099,0 173.1675767002738,-41.54903889893617,0 173.1676157004232,-41.54901849894416,0 173.1676369003849,-41.54901419854658,0 173.1676497996047,-41.54902019936985,0 173.1676619001106,-41.54902149950501,0 173.1677060999467,-41.54897769975336,0 173.1677380995089,-41.54894689831136,0 173.1677975993341,-41.54891249972106,0 173.1678208000482,-41.54890989876026,0 173.1678263001207,-41.54890389903123,0 173.1678578006291,-41.54888879903253,0 173.167869300163,-41.54889139888481,0 173.1678814998101,-41.54889209896262,0 173.1678882008281,-41.54889239903293,0 173.1679195004444,-41.54886129951472,0 173.1679377998574,-41.54882919933791,0 173.1679352001803,-41.54882079835726,0 173.1679508005666,-41.54877619898407,0 173.1679681001457,-41.54876409843218,0 173.167998300231,-41.54874599903753,0 173.1680531993614,-41.54870709884319,0 173.1680870997276,-41.54868579910145,0 173.1680526010533,-41.54866959932118,0 173.168086200466,-41.54862469980083,0 173.1680925000586,-41.54861399884251,0 173.1681247991594,-41.54861379939958,0 173.1681428003074,-41.54861519894634,0 173.1682094988625,-41.54861419886499,0 173.1682496009299,-41.54860599933397,0 173.1682907009038,-41.54860069870295,0 173.1683393004127,-41.54859199850342,0 173.1683610999199,-41.54856189907699,0 173.1683780994722,-41.54854789834684,0 173.1683981992821,-41.54853649980887,0 173.1684315999762,-41.54851909908624,0 173.1684609001164,-41.54850129903288,0 173.1684639996188,-41.54850129899338,0 173.1684771996528,-41.54849339910513,0 173.1685053004207,-41.54847639974986,0 173.1685236995466,-41.54846899935009,0 173.1685331005088,-41.54846089875302,0 173.1685598996167,-41.54844409945285,0 173.1685700002485,-41.54842839920879,0 173.1686198005769,-41.54841029883846,0 173.1686929007571,-41.5483138991991,0 173.1687363008446,-41.54830559918091,0 173.1687716007814,-41.54828319918715,0 173.1688435002928,-41.54821119858504,0 173.1688787995599,-41.54817889945117,0 173.1688968002161,-41.54814559887556,0 173.1689273993875,-41.54813039992138,0 173.1689626007677,-41.5481134990136,0 173.1690074008028,-41.54809769909499,0 173.1690455993268,-41.54806269974371,0 173.1690703002273,-41.54803039901825,0 173.1691016997371,-41.5480057996464,0 173.1691393997232,-41.54799669989858,0 173.1691760992875,-41.5479832996831,0 173.1692133998113,-41.54796769897752,0 173.1692544003876,-41.54794469955836,0 173.1692953003408,-41.54793139941204,0 173.1693444997521,-41.54791849956884,0 173.169397200469,-41.54789739873549,0 173.1694428990991,-41.54786949952247,0 173.1694666992883,-41.54784179920414,0 173.1694883991402,-41.54781469916038,0 173.169531900852,-41.54778579972684,0 173.1695724001739,-41.54776469878675,0 173.169623099893,-41.5477285990209,0 173.1696500998424,-41.54771729907115,0 173.169677400114,-41.54768649951055,0 173.1697137993089,-41.54767159893983,0 173.1697346992512,-41.54765549893735,0 173.1697436001321,-41.54765479943708,0 173.1700139017297,-41.54735449778294,0 173.1704737001979,-41.54735999973465,0 173.1717493998733,-41.54589559906895,0 173.1717746998712,-41.54582319961087,0 173.1718025012522,-41.54575319778164,0 173.1717848003607,-41.54575579853366,0 173.1717764016197,-41.54573319805913,0 173.171778798513,-41.54571829807775,0 173.1718010004994,-41.54567769838215,0 173.1718138008455,-41.54564509777283,0 173.1718589023591,-41.54558059880296,0 173.1719376989636,-41.54553159887819,0 173.1719454018415,-41.54553319878288,0 173.1719521007888,-41.54553419849004,0 173.1719900015505,-41.54552599824123,0 173.1720382017349,-41.54550249795358,0 173.172215901675,-41.54543359755061,0 173.1723099011963,-41.54537660036784,0 173.1723795004382,-41.54529259953893,0 173.172406901709,-41.54505199930853,0 173.1724738004452,-41.54499959764827,0 173.1724883011152,-41.54496949936205,0 173.1724903994808,-41.54494339823663,0 173.172521898431,-41.54488779707451,0 173.1725870015751,-41.54487759851185,0 173.1728933017986,-41.54460629823063,0 173.1729868002167,-41.54454729799762,0 173.1730355999764,-41.54451299924136,0 173.1731216997701,-41.54445909740063,0 173.1731434017055,-41.54445309913879,0 173.1731715004585,-41.54444229841172,0 173.1732054019661,-41.54444849847813,0 173.1732486001766,-41.54442189856673,0 173.1732605999246,-41.54435339738011,0 173.1732362026731,-41.54425199843369,0 173.1734725016687,-41.54408219989112,0 173.1736244000936,-41.54381269862501,0 173.1737498992865,-41.54373679843651,0 173.1738590003167,-41.5435928982666,0 173.1739180986676,-41.5435011984364,0 173.1739369023464,-41.54345939916721,0 173.1739807020927,-41.5434137988012,0 173.1740987007585,-41.54318369870427,0 173.1741537993196,-41.54312169943651,0 173.1742062000554,-41.54290419989086,0 173.1742241011875,-41.54282599950954,0 173.174239301199,-41.54281259871276,0 173.1744874997584,-41.54266899960432,0 173.1746150004162,-41.54254499960633,0 173.174618602326,-41.54244529952857,0 173.1745628005122,-41.54235999876729,0 173.1745306993001,-41.54219229849681,0 173.1745605015983,-41.54206019962622,0 173.1745563018141,-41.54179939901946,0 173.1745706007358,-41.54163249842058,0 173.1747430010979,-41.54137909936713,0 173.174716601375,-41.54112969978705,0 173.1747503997084,-41.54107099774628,0 173.1747413017369,-41.54104399842411,0 173.174747301439,-41.54103569710948,0 173.1748082001558,-41.54089309782042,0 173.1748370998644,-41.54075169739167,0 173.1749234013953,-41.54065849914297,0 173.1747060010915,-41.54003179848399,0 173.1744101021995,-41.53989819790883,0 173.1741595020671,-41.5396950990403,0 173.1741401990653,-41.53958739992487,0 173.1741440009197,-41.53953609710155,0 173.1741492997215,-41.53948239874484,0 173.1741770000604,-41.53925739909584,0 173.1740984003785,-41.53914569950506,0 173.1741149000661,-41.53894089787098,0 173.174006102132,-41.53871529956473,0 173.1740067006405,-41.5386916993026,0 173.1738895007176,-41.53868269805138,0 173.173889499726,-41.53866039756036,0 173.1737892997864,-41.53863489869232,0 173.1735824012951,-41.53859739905859,0 173.1734666000826,-41.53859939779361,0 173.1733030998987,-41.53854559907146,0 173.1732394009515,-41.53855709930234,0 173.1731837014636,-41.53848529883221,0 173.173014301065,-41.53829339828712,0 173.1730073022695,-41.5382191978411,0 173.1729242004827,-41.53811149807471,0 173.1728413990989,-41.53799449856884,0 173.1727536011685,-41.53777339909463,0 173.1727450016022,-41.53770659880001,0 173.172646201007,-41.53754119854592,0 173.1726124002708,-41.53743219861129,0 173.172528600289,-41.53734759994536,0 173.1725452002247,-41.53725459805187,0 173.1724973005152,-41.53715509861041,0 173.1724451005183,-41.53710559841689,0 173.1724137007843,-41.53699719921135,0 173.1723466021609,-41.53694909853981,0 173.1722932010806,-41.53682229954264,0 173.1720112021321,-41.53653819890632,0 173.1719432008781,-41.53638979842953,0 173.1719694005606,-41.53616429972185,0 173.1718738997976,-41.53593549889003,0 173.1716806991091,-41.53566459829251,0 173.1716622018566,-41.53558939885988,0 173.1716538002274,-41.53553979867451,0 173.1715663007155,-41.53536939946995,0 173.1715756999325,-41.53531159851521,0 173.1714670013384,-41.53515789993568,0 173.1713719022539,-41.53505369913808,0 173.1713139012679,-41.53490279910528,0 173.1712238005646,-41.53482679919209,0 173.1711171011355,-41.53467459972545,0 173.1709941021029,-41.53439799803805,0 173.1707713994925,-41.53418219920678,0 173.1706948998831,-41.53402299807117,0 173.1705930015947,-41.53395699895407,0 173.1705767996366,-41.53387689949759,0 173.1705322007606,-41.53382939938454,0 173.1705511507235,-41.53372760301897,0 173.1705666993241,-41.53369819872847,0 173.1704400007837,-41.53354049862451,0 173.1704098011009,-41.53337629890443,0 173.1703659006747,-41.5332644983817,0 173.1701464008748,-41.53294979772829,0 173.170114599867,-41.53281639747488,0 173.1696680782266,-41.53177624950204,0 173.1696801001274,-41.53173629926044,0 173.1696424003557,-41.53166429838773,0 173.1697464015198,-41.53141209896228,0 173.1697645996082,-41.53131319786655,0 173.1698433003386,-41.53126699980146,0 173.1698881012965,-41.53106409868257,0 173.1699950987009,-41.53090079852829,0 173.1700688005765,-41.53083919873382,0 173.1702546999239,-41.53063629858024,0 173.1703073024426,-41.53043969901064,0 173.1702491002407,-41.5302524987877,0 173.170201700868,-41.53021479910922,0 173.1701879019656,-41.53007959951313,0 173.1701248019108,-41.53000469814465,0 173.1700058002226,-41.52967489694211,0 173.1698819993536,-41.52952849881439,0 173.1699164994335,-41.52942709834731,0 173.1698862992663,-41.52933889743522,0 173.169975400576,-41.52914879783764,0 173.1698728006153,-41.5290477998955,0 173.1698976993483,-41.52889609915141,0 173.1698998018815,-41.52885259929124,0 173.1699820016985,-41.52866109840691,0 173.1703696009493,-41.528243298269,0 173.1704232008764,-41.52812479940082,0 173.1707927003636,-41.52775389826281,0 173.170975501344,-41.52756799931441,0 173.1710272010947,-41.52755969867842,0 173.1714931999022,-41.52737349899903,0 173.1716844013887,-41.527344899843,0 173.1717288001349,-41.52730539822841,0 173.1722221001882,-41.52715629776021,0 173.17263659917,-41.5270908986196,0 173.1731374026221,-41.52685369862468,0 173.1731780011394,-41.52680589913987,0 173.1732568002954,-41.52680089933849,0 173.1733134011774,-41.52674439886327,0 173.1733624997047,-41.5265908980886,0 173.1734290018943,-41.52653249917728,0 173.1734433018482,-41.52644599749319,0 173.1734721021609,-41.52640909844395,0 173.173564699541,-41.52631579871884,0 173.1735633010219,-41.52628629886629,0 173.1736777005124,-41.52617039898114,0 173.1737957993555,-41.52610989795743,0 173.1738558998304,-41.52613559802763,0 173.1739850009777,-41.52611909848312,0 173.1740991010894,-41.5261972992647,0 173.1741597007809,-41.52617799921098,0 173.1742303011895,-41.52620720058153,0 173.1743406000168,-41.52622969786771,0 173.1745425001332,-41.52618309894817,0 173.1745589000043,-41.52618589967824,0 173.174650902182,-41.52615499789889,0 173.1747156992273,-41.52615529850151,0 173.1747473002556,-41.52614749871334,0 173.1749502994051,-41.52620829904127,0 173.175159201792,-41.52632629696207,0 173.1752498006686,-41.52635949895965,0 173.1753573987604,-41.52635859903744,0 173.17552669951,-41.52638869843343,0 173.1757462016485,-41.52648449746145,0 173.1757584000762,-41.52649689913412,0 173.1759218988453,-41.52648629873616,0 173.1761174023623,-41.52652839827506,0 173.1761504996903,-41.52655079855055,0 173.1764193995706,-41.52656479731466,0 173.1764939997701,-41.52652729850723,0 173.1765842009675,-41.5265262989375,0 173.1767333011869,-41.52663969834376,0 173.1768374016853,-41.52663819801842,0 173.1773903011507,-41.52672259982287,0 173.177549198651,-41.52668699964691,0 173.1777444020378,-41.52671999939809,0 173.1778381996245,-41.52678649929432,0 173.1780067007982,-41.52685159905232,0 173.1781952004295,-41.52689139910176,0 173.1782860997917,-41.52694849848957,0 173.1785605004219,-41.52703199927669,0 173.1787094018482,-41.52713289864324,0 173.1788876991309,-41.52716849974257,0 173.1791214001709,-41.52727059973481,0 173.1792885000212,-41.52727959716395,0 173.1794658997008,-41.52731109859204,0 173.1796123005474,-41.52729329748843,0 173.1798279010752,-41.52717239913719,0 173.1798122010995,-41.52716669947949,0 173.1798282014329,-41.52715879838425,0 173.1800300017154,-41.52710769890209,0 173.1802224004383,-41.5269890996863,0 173.1805095015121,-41.5268709991729,0 173.180608802541,-41.52687839958207,0 173.1808744021972,-41.52697879936,0 173.1809800012799,-41.52702799921883,0 173.1810927020176,-41.52712389930715,0 173.1812095006939,-41.52715129871052,0 173.1821442002113,-41.52721269922116,0 173.1822348011805,-41.52716419943001,0 173.1831264005197,-41.52719859929915,0 173.1833705005659,-41.52728499850403,0 173.1835076020522,-41.52742189955371,0 173.1840856995944,-41.52817329842355,0 173.1853764007194,-41.52850359836533,0 173.1854033022678,-41.52855269848993,0 173.1855061011396,-41.52855359829588,0 173.1856382006099,-41.52851229876228,0 173.1858386006185,-41.52864219874098,0 173.1858385014139,-41.52866449762703,0 173.1858525996669,-41.52867689875672,0 173.1859697000469,-41.52870249855234,0 173.1859689000389,-41.5287039995795,0 173.1860149997843,-41.52865049941042,0 173.1862792012819,-41.52857269907217,0 173.1863787010933,-41.52854339711072,0 173.1865454011524,-41.52852689999334,0 173.1868962005622,-41.52858419939224,0 173.1871722991686,-41.52849159922107,0 173.1875158008987,-41.52851839783349,0 173.1878400003377,-41.52842609863,0 173.1881209998251,-41.52830879978119,0 173.188371201669,-41.52824869996778,0 173.1886444993875,-41.52824739899192,0 173.1890672012112,-41.5281940998013,0 173.189346900716,-41.52806699823301,0 173.1894728016811,-41.52797419836182,0 173.1898692820791,-41.52778122286653,0 173.1904635012712,-41.52774489883017,0 173.1905025998945,-41.52776609965518,0 173.1907954006827,-41.52772709769633,0 173.190862501853,-41.52776569747508,0 173.1910612004165,-41.52780789960197,0 173.1911500997916,-41.52779249873679,0 173.1913578005021,-41.5277085988414,0 173.1914307992647,-41.52771219921223,0 173.191514498881,-41.52767369822166,0 173.1915288010482,-41.52767609919548,0 173.1915994019644,-41.52768439811356,0 173.1916598015637,-41.52769119804223,0 173.1917928000312,-41.52767779758298,0 173.1919509011568,-41.52767879934839,0 173.1920191004359,-41.52767709749189,0 173.1921865007279,-41.52775709816089,0 173.1922742007435,-41.52774359809119,0 173.1922762104727,-41.52774386495515,0 173.1923066991617,-41.52775149909372,0 173.1926182007464,-41.52779029870683,0 173.1928009011569,-41.52775909896317,0 173.1929602013595,-41.52779849769505,0 173.193208299664,-41.52775469789003,0 173.1933928002656,-41.52771269790843,0 173.1936270001837,-41.52759189915555,0 173.193694301187,-41.52753019949786,0 173.1941623008349,-41.52726409991242,0 173.1944638012056,-41.52730379774474,0 173.1945272022508,-41.52699769815641,0 173.1948723014386,-41.52681589932012,0 173.194964400132,-41.52686319784142,0 173.1952441000276,-41.52679579830387,0 173.1953970016645,-41.52678719866204,0 173.1953671992084,-41.52676419934247,0 173.1955018995081,-41.52673209863485,0 173.195698800898,-41.52674119899702,0 173.1956892019068,-41.52671999838889,0 173.1959056017394,-41.52665489733789,0 173.1959900010843,-41.52672209830755,0 173.1961458018099,-41.52668289817269,0 173.1962002001786,-41.52672089860239,0 173.1962739002017,-41.52670139791442,0 173.1964495008544,-41.5267885978291,0 173.1964877999255,-41.52674949971066,0 173.1965635012426,-41.52680749963847,0 173.1967078017308,-41.52678319863633,0 173.1972145000312,-41.5268567977628,0 173.1973731004051,-41.52694579807515,0 173.1974018997402,-41.52698829782388,0 173.1975517001783,-41.52698189934905,0 173.1976483010188,-41.52685559997227,0 173.1977333021101,-41.52679339913428,0 173.1978767017775,-41.52680129878999,0 173.1980080012062,-41.52675609882412,0 173.1981337022119,-41.52674329988356,0 173.1981330001413,-41.52671079786984,0 173.1981463001737,-41.52670569928281,0 173.1981472009301,-41.52670549776548,0 173.1981372996169,-41.52667739910954,0 173.1981447991902,-41.526683600397,0 173.1981937990603,-41.52655629896617,0 173.1982668990312,-41.5265057981479,0 173.1982804002549,-41.52641349940028,0 173.1983240997079,-41.52638169816228,0 173.19834409999,-41.52634559981798,0 173.1984146008742,-41.52621619940693,0 173.1984674016505,-41.52596879823809,0 173.1985086005184,-41.52592879910092,0 173.1986297996865,-41.5255293986641,0 173.1986961020437,-41.52538799843799,0 173.198820800344,-41.52511629784928,0 173.1987894014069,-41.52491919797505,0 173.198731200181,-41.52488089998046,0 173.198607398525,-41.52470419843263,0 173.1985900997718,-41.52447309819249,0 173.1985335017668,-41.52434349912623,0 173.1985314998637,-41.52424969762035,0 173.1986184001576,-41.5242082999433,0 173.1986493005516,-41.52415019831783,0 173.1986963020588,-41.52399669751524,0 173.1986740982283,-41.52384579870573,0 173.198686299541,-41.52372740044054,0 173.1986637019929,-41.52369539831869,0 173.1987058989549,-41.52361309947324,0 173.1986842006042,-41.5234792994491,0 173.1988507014993,-41.52320139877389,0 173.1990725002856,-41.52295129808901,0 173.1991788010861,-41.52289279825398,0 173.1993699003536,-41.52267829790161,0 173.1995296009629,-41.52260109853982,0 173.1997044987292,-41.52255309892104,0 173.2000043002437,-41.52241919887539,0 173.2000899023007,-41.52246559938164,0 173.2001462003633,-41.52245809822825,0 173.2002636998611,-41.52240659827243,0 173.2005336995069,-41.52236919830492,0 173.2008745000402,-41.52227109831623,0 173.2011829010722,-41.52222699758664,0 173.2012260018226,-41.52223349939676,0 173.2011939008679,-41.5222755985547,0 173.2012133004723,-41.52227749760642,0 173.20154450017,-41.52208779893677,0 173.2016645005878,-41.521968399787,0 173.2017433016069,-41.5219090990913,0 173.2017918993218,-41.52186139884853,0 173.2020240993441,-41.52174059990696,0 173.2022978018578,-41.52151679888684,0 173.2024178016536,-41.52150259743064,0 173.2025513010415,-41.52142399789028,0 173.2026486001406,-41.52128139945585,0 173.2027496000848,-41.52120529795226,0 173.202795699466,-41.52108409937849,0 173.2029383989065,-41.52103129840716,0 173.2029761992403,-41.520987197153,0 173.2031068005668,-41.52079759920205,0 173.2033062009097,-41.52067119891883,0 173.2033508014649,-41.52059349957261,0 173.2034667994714,-41.52049039730336,0 173.2035794998425,-41.52047749740831,0 173.203716000161,-41.52048939769746,0 173.2039557987513,-41.52040259787663,0 173.2040431987804,-41.52033339920945,0 173.204190900078,-41.52027739827642,0 173.2042708015966,-41.52019669946829,0 173.2043947005236,-41.52012029912094,0 173.2045814996084,-41.52004629893555,0 173.2046305997785,-41.52007359862737,0 173.2047661019793,-41.52003939859601,0 173.2048938018184,-41.51996569946917,0 173.2050514006052,-41.51997139860993,0 173.2051517008167,-41.5199541984235,0 173.2052159012609,-41.51991969807308,0 173.2053108998528,-41.51993039957215,0 173.2055043001165,-41.51986479902822,0 173.2056676007902,-41.51986809927003,0 173.2058792001508,-41.51976139893473,0 173.2061561015556,-41.51955349904582,0 173.2063526000464,-41.51948289870459,0 173.2065381001643,-41.51936349848239,0 173.2066995005145,-41.51933719780245,0 173.2068743019969,-41.5193442993094,0 173.2070281017921,-41.51934409911713,0 173.2073295003755,-41.51941429861323,0 173.2077815012205,-41.51943229847459,0 173.2078422002066,-41.51943939743157,0 173.2079465019292,-41.51950309849329,0 173.2079975009298,-41.51952459794735,0 173.2080688021441,-41.51953699828712,0 173.2084317011706,-41.51956679974617,0 173.2089139006834,-41.5194371989431,0 173.2091451992968,-41.51932799868324,0 173.2093196006456,-41.5192896998223,0 173.2094362008861,-41.51927519728126,0 173.2095500014219,-41.51930119976796,0 173.2096878011408,-41.51944169849469,0 173.2098243000551,-41.51951879892529,0 173.2102046017245,-41.51952629850426,0 173.210290800876,-41.51949839988453,0 173.2105413011065,-41.51954679779579,0 173.2106835019057,-41.5195449989159,0 173.2107698000173,-41.51951699797154,0 173.21092059949,-41.51938179851842,0 173.2110580005592,-41.51935989892475,0 173.2111418997416,-41.51937419912682,0 173.2116492996841,-41.51935549934233,0 173.2120035988345,-41.5192526981731,0 173.2121869004885,-41.51925579826208,0 173.2124006000306,-41.51920259871317,0 173.2126356008101,-41.51925289964073,0 173.2128473998084,-41.51936449795893,0 173.2131626008591,-41.51938179930168,0 173.2136824008829,-41.51937359903836,0 173.2139960017771,-41.51922559786795,0 173.2140944006663,-41.51913439929665,0 173.2142322001989,-41.51906009722384,0 173.2147761994815,-41.51894449924614,0 173.2152085014781,-41.51877459848234,0 173.2154438998673,-41.51872849915319,0 173.2157410008712,-41.51871279803897,0 173.2163896002142,-41.51862989845917,0 173.2166927007829,-41.51862049869708,0 173.216889799471,-41.51863199983973,0 173.2171490995809,-41.51870449854427,0 173.2174451002585,-41.51871469863627,0 173.2177131005893,-41.5187780992364,0 173.2179435995149,-41.51891719835608,0 173.2180928005334,-41.51895509795946,0 173.2183753015499,-41.51897599774488,0 173.2186242987535,-41.51895479951794,0 173.2188194007632,-41.51891679909053,0 173.2189299008724,-41.51884769916907,0 173.2190499009549,-41.51884749949729,0 173.2191667991784,-41.51890159961523,0 173.2194380006704,-41.51895859843398,0 173.2195576003836,-41.51895299904866,0 173.2196495010753,-41.51899289756119,0 173.2198848003039,-41.51901769841892,0 173.2200598990372,-41.5191045985368,0 173.220389701993,-41.51918479865512,0 173.2206765992815,-41.51921159773267,0 173.2206735011261,-41.51924509955397,0 173.2208003006341,-41.5194344983123,0 173.2210763005733,-41.51954279839125,0 173.221168700944,-41.51959939897843,0 173.2215215016347,-41.51973249809863,0 173.2216997000673,-41.51983339986845,0 173.2217700984707,-41.51988099713449,0 173.2218087010451,-41.51992239912894,0 173.2219758986629,-41.51992699909557,0 173.2220948002478,-41.51997299829457,0 173.2222928008622,-41.52011279994945,0 173.222435100492,-41.52015500017883,0 173.2225347005185,-41.52024289820769,0 173.2226928009177,-41.52028379929812,0 173.2229905994461,-41.5201617978299,0 173.2231527017522,-41.52015629694211,0 173.2232413006965,-41.52022369771341,0 173.2235021997807,-41.52023730019756,0 173.2236433998677,-41.52027869760576,0 173.2236721990102,-41.52029299851805,0 173.2237050009329,-41.52032010017481,0 173.2238604987799,-41.52030039923994,0 173.2239777998973,-41.52040859849899,0 173.2240329004677,-41.52058619933749,0 173.2242051003423,-41.52066029922778,0 173.224192101605,-41.52064339873901,0 173.224285099398,-41.52066559903266,0 173.224394700791,-41.52085029932137,0 173.2244325992172,-41.52085999841335,0 173.2246601007707,-41.52090169901163,0 173.2248034003972,-41.52096489783457,0 173.2251096996443,-41.52110759852867,0 173.2252604017631,-41.5211232997184,0 173.225319301103,-41.52109499924131,0 173.2254461015185,-41.52111429953327,0 173.2255316008175,-41.52108839862386,0 173.2255863008392,-41.52112959933577,0 173.2256492014574,-41.52111599904724,0 173.2256731008168,-41.52119589834133,0 173.2259333997198,-41.52116799843357,0 173.2259914013023,-41.52123379891566,0 173.2261426015021,-41.52122889891412,0 173.2261547008721,-41.52127749983693,0 173.2262639017835,-41.5212875994356,0 173.226387201549,-41.52123009847085,0 173.2265348010228,-41.52108729885748,0 173.2266560009117,-41.52104369837485,0 173.2267153017482,-41.52103069818895,0 173.2267768023998,-41.52109749930638,0 173.2268917009426,-41.52107329855542,0 173.2269998996281,-41.52110259783275,0 173.2271108006574,-41.52106389831658,0 173.2271958017498,-41.52109519782131,0 173.2273202003793,-41.52103729826303,0 173.2273951000806,-41.52109180086512,0 173.227435602266,-41.5210966982709,0 173.2274827010928,-41.52117789971764,0 173.22764730142,-41.52115339902829,0 173.227700898139,-41.52114819833329,0 173.2277180995874,-41.52114619885572,0 173.2278698023958,-41.52112579923757,0 173.2278925010736,-41.5211311983424,0 173.228034102147,-41.52110349909982,0 173.2280857008473,-41.52106279946966,0 173.228244999492,-41.52103929925542,0 173.2282992993183,-41.52102719900981,0 173.2283668009703,-41.5209990987765,0 173.2284183012691,-41.52099559890453,0 173.2284867003136,-41.52098719963567,0 173.2286573016,-41.52082639802114,0 173.2289236999677,-41.52073880060262,0 173.2289779012805,-41.52073489967813,0 173.2290491999623,-41.52072399924825,0 173.2291628988666,-41.52071179919453,0 173.2292335009451,-41.52070049920549,0 173.2298158014121,-41.52066959910805,0 173.2303067014224,-41.52066109771425,0 173.2303528995321,-41.5206610988707,0 173.2304494996957,-41.52066299956903,0 173.2306067996537,-41.5206208979758,0 173.230833799147,-41.52054269869883,0 173.2308294017291,-41.52051839831793,0 173.2308975024276,-41.5205523988106,0 173.2311281023733,-41.52051279839567,0 173.2311017995232,-41.5204931979785,0 173.2313280769467,-41.52033065826542,0 173.2313673004381,-41.52032049736686,0 173.2315468009822,-41.52018009875584,0 173.2315802013797,-41.52007159936178,0 173.231652601796,-41.52008799837055,0 173.2316683004469,-41.52005959789596,0 173.2316421007473,-41.52001379843079,0 173.231641100653,-41.52005229903053,0 173.231613901269,-41.52002729789114,0 173.2316416018981,-41.51997439920732,0 173.2316328992726,-41.51997129836894,0 173.2317084994005,-41.51987339942615,0 173.2317025016349,-41.51984739899583,0 173.2317244008795,-41.51978999836684,0 173.232074699863,-41.51959660001717,0 173.2323196025737,-41.51955509841015,0 173.232507401788,-41.51950199939834,0 173.2327613006906,-41.51943499848678,0 173.2329789015314,-41.51950569754247,0 173.2330055006765,-41.51955539881021,0 173.2333166004728,-41.51963369826692,0 173.2344729007951,-41.51992779775968,0 173.2351438022562,-41.52036279933439,0 173.2355354006294,-41.52063839946752,0 173.2356260003706,-41.52074119833039,0 173.2357505004074,-41.52094829831936,0 173.2358175004812,-41.52120849857439,0 173.2360475013894,-41.52191749996327,0 173.2362125002738,-41.52213249954148,0 173.2362809129298,-41.52218742941314,0 173.236292634194,-41.52219683969236,0 173.2362948339113,-41.52220979503289,0 173.2363002989922,-41.522241999707,0 173.2364594002166,-41.52223639795687,0 173.2369402005447,-41.52237649865941,0 173.2372275997115,-41.52251989863669,0 173.2374587007751,-41.52255619805427,0 173.2374501989545,-41.52257409892038,0 173.2374457007123,-41.52257899832669,0 173.2374985999329,-41.52259009791683,0 173.237551301205,-41.52268929936178,0 173.2377638021276,-41.52266389889856,0 173.237952800908,-41.52272009885525,0 173.2381165007577,-41.52270499869654,0 173.2382001004602,-41.52277569946831,0 173.2382861019186,-41.52278750026523,0 173.2382864001872,-41.5228295984745,0 173.2385555016104,-41.52286609887648,0 173.2386192999752,-41.52293989843216,0 173.2388640005311,-41.52301159834578,0 173.2391846015034,-41.523199398522,0 173.2392270007849,-41.52319419953043,0 173.2392474011377,-41.5231455990594,0 173.2392491011138,-41.52317889951055,0 173.2393260992062,-41.52318959863722,0 173.239408102149,-41.52325970015493,0 173.2397560997971,-41.52326029838817,0 173.240159100415,-41.52320209925547,0 173.2408587996842,-41.52333349975944,0 173.2409448999986,-41.52329439929708,0 173.2411314014919,-41.52327169976186,0 173.2412121018741,-41.52329129908964,0 173.2415099005978,-41.52324109822956,0 173.2416715020711,-41.52329069942926,0 173.2420602015077,-41.52323229940331,0 173.2422700024386,-41.52327929874588,0 173.2428270019922,-41.52319249780599,0 173.2431856011691,-41.5231781983515,0 173.243333900418,-41.52322479794777,0 173.2435833002636,-41.52336569889851,0 173.2436989005886,-41.52334769949321,0 173.2438100005366,-41.52337639941203,0 173.2438106018118,-41.52341939770239,0 173.2438187007471,-41.52340699804882,0 173.2438157011788,-41.52345309801429,0 173.2438100007161,-41.52346329837514,0 173.2438227999739,-41.52344789920132,0 173.243945100712,-41.52347689860863,0 173.2442119993705,-41.52352719879052,0 173.2442952020232,-41.52351259761983,0 173.2443164008976,-41.52358549817449,0 173.2444073999024,-41.52362429788612,0 173.2447426023786,-41.52365829777435,0 173.2449906995882,-41.523767499563,0 173.2451718015616,-41.523756899229,0 173.2452759016918,-41.52380329869425,0 173.2453123021264,-41.5237590982744,0 173.245461598815,-41.52374759882476,0 173.2456016988237,-41.52393389895681,0 173.2457059000081,-41.52396249827552,0 173.2456984009684,-41.52397529761181,0 173.2459186994948,-41.52417239879978,0 173.2460010013973,-41.52418789747016,0 173.2460347995137,-41.52424939979648,0 173.2460797016408,-41.5242283993406,0 173.2461338997076,-41.52431929868985,0 173.2461695005514,-41.52430549881116,0 173.2462301013688,-41.52445069906622,0 173.2462443005435,-41.52446099925512,0 173.2462430000962,-41.52446479776099,0 173.2462744985338,-41.52449659851553,0 173.2464027008088,-41.52449089964839,0 173.2465859009683,-41.52439949796575,0 173.246954100725,-41.52437039942956,0 173.2471028005255,-41.52435419907121,0 173.2473340020669,-41.52435769865726,0 173.2473883012808,-41.52434249806386,0 173.2474973013667,-41.52438889938588,0 173.2476464021029,-41.52438199940604,0 173.2477365018949,-41.52441959862455,0 173.2479013007078,-41.52448809881651,0 173.2482330994814,-41.52452209946238,0 173.2482689002078,-41.52448479818072,0 173.2483106007046,-41.52445009809625,0 173.2483144014859,-41.52444979895066,0 173.2483176999437,-41.52445009807972,0 173.2483922011752,-41.52439539915422,0 173.2484024999841,-41.5243102992654,0 173.2483648014349,-41.52430229924009,0 173.2484673004171,-41.52431219946049,0 173.2487815013987,-41.52440389835029,0 173.2489667011707,-41.5245568000074,0 173.2489802008465,-41.52453239944643,0 173.2491043002669,-41.52455859807184,0 173.2492443016584,-41.52457359741728,0 173.249359402171,-41.52456699859013,0 173.2494515001516,-41.52471259992556,0 173.2496092017807,-41.52473419798734,0 173.2496477001301,-41.52477429825977,0 173.2497854015707,-41.52472279937168,0 173.2498665001329,-41.52475159911998,0 173.2498888015754,-41.52478129851854,0 173.2499850004451,-41.52476719823152,0 173.2500156994007,-41.52477979770935,0 173.2501083995397,-41.52484319743338,0 173.2501984999722,-41.52490189816386,0 173.2502073006038,-41.52484229864135,0 173.2502621005069,-41.52487809913344,0 173.2502922013622,-41.52483219764436,0 173.2503882005012,-41.52487479726804,0 173.2504089002796,-41.52487760033802,0 173.250439100047,-41.52482069875693,0 173.2504867992599,-41.52478959859195,0 173.2505570012795,-41.52478439972073,0 173.2505741018763,-41.52475929845924,0 173.2506632994136,-41.52475229898253,0 173.2506916017908,-41.52471999799014,0 173.2506580001605,-41.52464849839132,0 173.2506712992082,-41.52464649768624,0 173.2505754013901,-41.52452759815015,0 173.2505785005328,-41.52449859926333,0 173.250677801784,-41.52440059936468,0 173.250709800368,-41.52435709950731,0 173.2508404021283,-41.52431399892292,0 173.250910400366,-41.52429869757313,0 173.25098850044,-41.5242879002156,0 173.2510357014824,-41.52423909685313,0 173.2510814001831,-41.52426800003806,0 173.2511157010177,-41.52423599839462,0 173.2512209006827,-41.52424309887054,0 173.2512145987441,-41.52431659865369,0 173.25124499869,-41.52430239872134,0 173.2513238008299,-41.52435069899194,0 173.2514502011658,-41.52436209809719,0 173.2514753989586,-41.52434349945509,0 173.2515522009251,-41.524388098293,0 173.2515615990057,-41.52431319827614,0 173.2516114006335,-41.52430679855725,0 173.2516723002721,-41.52434749767101,0 173.2518152010021,-41.52432349899038,0 173.2519103995957,-41.5244185987637,0 173.2520017994404,-41.52440539903409,0 173.2521102020193,-41.52435689796908,0 173.2521134004506,-41.5242847974877,0 173.2521087011235,-41.52427839811698,0 173.2521054002873,-41.52426729922386,0 173.25214080199,-41.52405649876364,0 173.2522629020281,-41.52383969927077,0 173.2524220028037,-41.52374759803536,0 173.2525554989919,-41.52354909967481,0 173.2527505013239,-41.52336939866479,0 173.2530325003277,-41.52319889887182,0 173.2532553992522,-41.52291499827443,0 173.2533690999942,-41.52287549805759,0 173.2534068014791,-41.52285849817994,0 173.253469801453,-41.52287019778293,0 173.2534987994543,-41.52280909877283,0 173.2535535998276,-41.52273599815311,0 173.2536472994273,-41.52272249840248,0 173.2536686994585,-41.52265799959449,0 173.2537567000345,-41.52260559942367,0 173.2538431023373,-41.5225950988689,0 173.2538228997402,-41.52263809888518,0 173.2538645004154,-41.52262859972441,0 173.2542175002549,-41.52258119942821,0 173.2543333023272,-41.52232779829784,0 173.2544016000651,-41.52195649786808,0 173.2545133991444,-41.52176109868602,0 173.2545200009794,-41.5215647982136,0 173.2546958991811,-41.52134409927309,0 173.2548137003491,-41.52129519921562,0 173.2549280011617,-41.52126999898682,0 173.2549965001221,-41.52128449857968,0 173.2553495995569,-41.52126419787633,0 173.2556383008655,-41.52113889845915,0 173.2558480000832,-41.5211303984354,0 173.2560231015906,-41.52114019974876,0 173.256278400256,-41.52109289888432,0 173.256380301456,-41.52113269889263,0 173.2567629010844,-41.5211380991849,0 173.2569117014969,-41.52106710014044,0 173.2571439015222,-41.52111099943901,0 173.2572627000259,-41.52109569858688,0 173.257355900267,-41.52114360044217,0 173.2573940000001,-41.52111449960758,0 173.2576560012672,-41.52106909926541,0 173.2578532012157,-41.52108189818789,0 173.2580560999784,-41.52105299859603,0 173.258127200402,-41.52100239934079,0 173.2582805010945,-41.52099269826626,0 173.2585261018313,-41.52094910002116,0 173.2585939006418,-41.52098299920983,0 173.2587043000889,-41.52097000002967,0 173.2588780006946,-41.5210423989434,0 173.2590047013009,-41.52103239918262,0 173.2590399009709,-41.52106279827623,0 173.2592772022355,-41.52108209785298,0 173.2594396996897,-41.52102029725446,0 173.260173799423,-41.52112759881235,0 173.2606864012552,-41.52140209898711,0 173.2610858017648,-41.5214704977738,0 173.2612110006048,-41.52153279785956,0 173.2612599994833,-41.52151739918629,0 173.2614740019686,-41.52161639876631,0 173.2619554009201,-41.52175779866838,0 173.2622941026188,-41.52194049949254,0 173.262344099338,-41.52206709716378,0 173.2623968019966,-41.52209089880689,0 173.2626619016189,-41.52212129894851,0 173.2629040009251,-41.52208169955194,0 173.2629780872186,-41.522015844546,0 173.2632091010098,-41.52207749870818,0 173.2633294994579,-41.52202749769749,0 173.2635422010873,-41.5220158989376,0 173.2637132025267,-41.52198589780053,0 173.2639666993599,-41.52178539952463,0 173.2644844003507,-41.52178519912275,0 173.264751900518,-41.52170859893499,0 173.2650934004607,-41.52150169844701,0 173.2654004005096,-41.52126799845387,0 173.2655222002433,-41.52122439887798,0 173.2657599989878,-41.52104419954095,0 173.2663390993072,-41.52085399882844,0 173.2665344997091,-41.52075949887715,0 173.266543300394,-41.52072399874386,0 173.2668023002815,-41.52063859927677,0 173.2669244992248,-41.52049199845598,0 173.2671033004368,-41.52045019878278,0 173.2672438997247,-41.52032559872134,0 173.2674316996983,-41.52024939904288,0 173.2676842001758,-41.51999069885819,0 173.2681351998109,-41.5198688994055,0 173.268164699372,-41.51983279917672,0 173.2682518009544,-41.51978209870173,0 173.2683562993045,-41.51978609920574,0 173.2685910002865,-41.51967089868239,0 173.2688434004911,-41.51962969902805,0 173.2688753999094,-41.51963999895864,0 173.2689835998343,-41.51963029897401,0 173.2694080999562,-41.51947309972668,0 173.2694433000263,-41.51931509932474,0 173.2697172006912,-41.51923209892397,0 173.2697382996445,-41.51914509909565,0 173.2699986004589,-41.51922859950069,0 173.2701026004522,-41.51907199923622,0 173.2703291997475,-41.51899619909511,0 173.27094249947,-41.51906229975239,0 173.2714136998755,-41.51899319895605,0 173.2714925001903,-41.51902439928906,0 173.2721165006392,-41.51877099894264,0 173.2730884010293,-41.51848699833055,0 173.2731744004916,-41.51843119853642,0 173.2732242991852,-41.51838619876848,0 173.2733063996407,-41.5183015988282,0 173.2733134003282,-41.51829969964544,0 173.2733570009425,-41.51827579933651,0 173.2734702000692,-41.51817919864083,0 173.2736599991675,-41.51793039927977,0 173.2737418993307,-41.51787589957375,0 173.2737793005295,-41.51783509973794,0 173.2738142987407,-41.51780879944312,0 173.273878899597,-41.51776159989945,0 173.2739530003,-41.51776349961931,0 173.2739929008226,-41.51777259933679,0 173.2740785996302,-41.51780189891924,0 173.2741208997579,-41.51780139908,0 173.2741628998801,-41.51777609982239,0 173.2742131005354,-41.51776969927104,0 173.2742643000063,-41.51776199924768,0 173.2743085997425,-41.51776759979306,0 173.2743724990119,-41.51777599900539,0 173.2744524005751,-41.51778249906672,0 173.2745287003832,-41.51776139904071,0 173.2745748005717,-41.51774949918585,0 173.2746199999947,-41.51773799959048,0 173.2746762005376,-41.51771639890946,0 173.2747488006104,-41.51769899971821,0 173.2747555994858,-41.51770239908694,0 173.2747475001433,-41.51767969903427,0 173.2747484994616,-41.51766009831763,0 173.2747929007578,-41.51765429955125,0 173.2748480000788,-41.51764579909871,0 173.2748871995942,-41.5176381986358,0 173.2749331006154,-41.51762599916271,0 173.2750406990181,-41.5176178982362,0 173.2750899009886,-41.51760749859678,0 173.2751757002537,-41.5175650990098,0 173.2752288997143,-41.5175508994287,0 173.2752597005836,-41.51752129941259,0 173.2753028995317,-41.51752479897449,0 173.2753893996377,-41.51751179865045,0 173.2754831998277,-41.51748049933109,0 173.2754882993283,-41.51746609957316,0 173.2755304003848,-41.51744979888269,0 173.2755533994917,-41.51744119934898,0 173.2755700003638,-41.51739679895904,0 173.2755782003741,-41.51739259897103,0 173.2755851989584,-41.51738769927791,0 173.2755965998369,-41.5173777989331,0 173.2756209005657,-41.51736329911014,0 173.2756285993967,-41.51735819957907,0 173.2756410994968,-41.51734609878226,0 173.2756722004304,-41.51732909930951,0 173.2756904007526,-41.51732329994526,0 173.2757080006414,-41.51731749931153,0 173.2757370999447,-41.5173029996729,0 173.2757831008469,-41.51726529963229,0 173.2758456989448,-41.51723969905928,0 173.2759379999441,-41.51721589893015,0 173.2759478996246,-41.51721289912791,0 173.2759562996198,-41.51720669898576,0 173.2760575998365,-41.5171628996244,0 173.27616479915,-41.51712709990461,0 173.2762122006032,-41.51712179870079,0 173.2762886999796,-41.51710369920288,0 173.2763550004089,-41.51711769866157,0 173.276421499987,-41.51712469884271,0 173.2765426003356,-41.51714249910776,0 173.2765981999328,-41.51715369943474,0 173.2766800991984,-41.51714819886592,0 173.276815600269,-41.51714039935387,0 173.2769464996541,-41.51710879966473,0 173.2770042993619,-41.51709519888285,0 173.2770665000201,-41.51707659916688,0 173.277318100641,-41.5170195991409,0 173.2774346994374,-41.51704239852597,0 173.2774724991458,-41.51705739925757,0 173.2775360009519,-41.51707409980635,0 173.2778479996327,-41.51712389878362,0 173.2778642993851,-41.51711819914618,0 173.2779157994,-41.51711289905078,0 173.2780401001023,-41.51709739860096,0 173.2781265000337,-41.51707049891991,0 173.2781700008026,-41.51704179967619,0 173.2782076992654,-41.51702919899044,0 173.2782325006184,-41.51703129897038,0 173.2782588998628,-41.51700829862065,0 173.2782860994223,-41.51699000000094,0 173.2783416993397,-41.51697829903063,0 173.278350799002,-41.51697769963409,0 173.2783750008742,-41.51698309954912,0 173.2784638005304,-41.51696279894484,0 173.2784875996064,-41.51697599843012,0 173.2785015995613,-41.51697619872194,0 173.278542499057,-41.51697339925122,0 173.2788109995203,-41.5168026994698,0 173.2788579998081,-41.51677579926736,0 173.2789087002259,-41.51675349916801,0 173.2790345993248,-41.51671999965645,0 173.2790998996419,-41.51670479882221,0 173.2791599012857,-41.51668589885815,0 173.2792196996929,-41.51666349907168,0 173.2792566998548,-41.51662989895284,0 173.2792985009351,-41.51661859852341,0 173.279352800853,-41.51659119939863,0 173.2793914998237,-41.51656389849458,0 173.2794009007542,-41.51655589868881,0 173.2794629009244,-41.51655309897028,0 173.2795233000576,-41.5165427999311,0 173.2795493998656,-41.5165185993245,0 173.279597699635,-41.51650750007113,0 173.2795564007567,-41.51645249850269,0 173.2795137007697,-41.51639549977911,0 173.2794724005672,-41.51633959924585,0 173.2794357010901,-41.51630539899222,0 173.2794156995823,-41.51626759932901,0 173.2794357992332,-41.51625019860786,0 173.279585700141,-41.5163343995165,0 173.2798014005977,-41.51643529844039,0 173.2799124010017,-41.51645079852041,0 173.2799681003598,-41.51644009904647,0 173.2800237995252,-41.51643519942422,0 173.2801192000208,-41.51645239825009,0 173.2801737004817,-41.51646299963011,0 173.2802199008091,-41.51645309871398,0 173.280327599318,-41.51648879925975,0 173.2804354998061,-41.51652239958393,0 173.2809259009507,-41.51659859896352,0 173.2811554994119,-41.51660789922232,0 173.2812848994688,-41.51658559931574,0 173.2813232994837,-41.51657219963798,0 173.2813525001878,-41.51655629857497,0 173.2813758994862,-41.51654709970226,0 173.2814742004049,-41.51651719864324,0 173.2815430997643,-41.51651879905463,0 173.2816333999101,-41.51652100005565,0 173.281717899858,-41.51652629933331,0 173.2817998006202,-41.5165368994762,0 173.2818806006757,-41.51655399930789,0 173.2819393000979,-41.51655199899516,0 173.2820063988883,-41.51656699936837,0 173.282037999766,-41.51657259925101,0 173.2821015999431,-41.51657839896822,0 173.2821774995086,-41.51659380009969,0 173.2822351996578,-41.51660839914884,0 173.2823072000296,-41.51662859901123,0 173.2823788992049,-41.51663959939057,0 173.2824452010336,-41.51665179925737,0 173.2825742002635,-41.51666499980721,0 173.2826827999426,-41.51667799994797,0 173.282765200664,-41.51669379905703,0 173.2828270001274,-41.51671509915474,0 173.282936700014,-41.51672449879084,0 173.2830175991794,-41.51675789919459,0 173.283091598864,-41.51677669929352,0 173.2831777990967,-41.51678539901542,0 173.2832775991361,-41.51680339956073,0 173.2834118998841,-41.51681529895261,0 173.2834854006114,-41.51682599965897,0 173.2835479005281,-41.51684459902376,0 173.2836074006934,-41.51683929917026,0 173.2836430002277,-41.51683619839867,0 173.2837086000392,-41.51684149959027,0 173.2837707000077,-41.51685329921767,0 173.2838403008167,-41.51685049820273,0 173.2839000994102,-41.51686549927246,0 173.2839567995712,-41.51688669875862,0 173.2840147996985,-41.51689519905535,0 173.2840665993229,-41.51691389932199,0 173.2841509993832,-41.51694469884509,0 173.2842181003715,-41.51697779922124,0 173.284291200598,-41.51699549916626,0 173.2843685000646,-41.51700439834073,0 173.2844304990018,-41.5170217995768,0 173.2844694002302,-41.51704549914745,0 173.2845122992521,-41.51707679918011,0 173.2845537006954,-41.51709369914548,0 173.2846058005461,-41.51712559969121,0 173.2846820007419,-41.51716419882133,0 173.2847648999928,-41.51719559969989,0 173.2848178998954,-41.51722089909143,0 173.2848611988982,-41.51724659899262,0 173.2849656994807,-41.5172763987494,0 173.285046400366,-41.51730709869313,0 173.2851622999378,-41.51735279872496,0 173.2852580008499,-41.51738839919121,0 173.2853300012248,-41.51742919890792,0 173.2853940990943,-41.51746509924439,0 173.2854687995723,-41.51750639929197,0 173.2855027997337,-41.51754099973703,0 173.2854811006864,-41.51755169946354,0 173.2854077000523,-41.517569499241,0 173.2854972996131,-41.51760199897883,0 173.2855845010012,-41.51764809859407,0 173.2858451996975,-41.51782639940112,0 173.2860394993156,-41.51787909878345,0 173.2861086000452,-41.51789259834929,0 173.2861975005809,-41.51791069913199,0 173.2863182999624,-41.51792779897659,0 173.2863981005862,-41.51794289846976,0 173.2864340999842,-41.51799259819063,0 173.2865871008646,-41.51804519952548,0 173.2866690004711,-41.51806089980165,0 173.2867478990716,-41.51808689936681,0 173.2868108992685,-41.51808069920006,0 173.2869014988914,-41.5180646985398,0 173.2869817004959,-41.51804949929841,0 173.2869991998499,-41.51804689932585,0 173.2870096011731,-41.51804359917386,0 173.2870638002003,-41.51804129942534,0 173.287062300147,-41.51803759932121,0 173.287064400029,-41.51803139878251,0 173.2870857996558,-41.51801669841291,0 173.2871119996561,-41.51798719948662,0 173.2871168009536,-41.5179820992139,0 173.2872004997664,-41.51801059865364,0 173.2874307999779,-41.51798539884861,0 173.2874694994026,-41.51798369880414,0 173.2875455005342,-41.5179999986776,0 173.2875695000031,-41.51799379921807,0 173.2875889998546,-41.51797799919571,0 173.2876078008459,-41.51797109934219,0 173.2876183007496,-41.51797599923577,0 173.2876237999716,-41.51797749873007,0 173.2876380003542,-41.51797039960101,0 173.2876889995649,-41.51793349927961,0 173.2877435989393,-41.5179122997562,0 173.2879817000043,-41.51789209916196,0 173.2881327003126,-41.5178073989657,0 173.2881707005937,-41.51779319994832,0 173.2881961001673,-41.51778709863422,0 173.2882132001793,-41.51778689905527,0 173.2882493998391,-41.5177733989982,0 173.2884109000017,-41.51772719862484,0 173.2885315997096,-41.5176931991456,0 173.2885708998111,-41.51766569909413,0 173.2886075000351,-41.51765579998289,0 173.288666499383,-41.51763939893665,0 173.2887347998455,-41.51761649907884,0 173.2888021003696,-41.51761049869879,0 173.2888410988016,-41.51761599886827,0 173.2888388998752,-41.51761389935608,0 173.2888370996124,-41.51760819948463,0 173.2888349991707,-41.51759859925467,0 173.2888282002979,-41.5175923994146,0 173.2888960995807,-41.51756069842448,0 173.2889368000253,-41.51754549885698,0 173.288964500075,-41.51751909969457,0 173.2890172001142,-41.51748599923948,0 173.2890549992592,-41.51745199944066,0 173.2890608000789,-41.51744909978586,0 173.2890711018633,-41.5174495999272,0 173.2890681989506,-41.51745169964381,0 173.2891040009158,-41.5174560998497,0 173.2891387008427,-41.51743449931144,0 173.2891820002973,-41.51742299966865,0 173.2892485012659,-41.51740839986129,0 173.2892813999312,-41.51740619947034,0 173.2893073000188,-41.51737179896242,0 173.2893283989929,-41.51735379861668,0 173.2893433992456,-41.51736329882761,0 173.2893660008431,-41.51737349870415,0 173.2893863002624,-41.51735599936924,0 173.2893891995303,-41.51735469860954,0 173.2894275011267,-41.51730979845341,0 173.2894569997879,-41.51727479887165,0 173.2894926001868,-41.5172597992979,0 173.28951599915,-41.51727519981974,0 173.289528599354,-41.51727269916525,0 173.2895410995826,-41.51725179932037,0 173.2895832004655,-41.51724219861066,0 173.289591300255,-41.51721679892642,0 173.2895919999226,-41.51719039914082,0 173.289600099081,-41.51716969952588,0 173.2896180996363,-41.51714679968736,0 173.2896653007894,-41.5171193991608,0 173.2897068008424,-41.51709279932584,0 173.2897278006755,-41.51707679879844,0 173.2897614008618,-41.51706989914019,0 173.289840500523,-41.51708239937606,0 173.2899133999253,-41.51706949986632,0 173.2899726005627,-41.51706079898008,0 173.2900480000021,-41.51705409919052,0 173.2901314000349,-41.51702989848553,0 173.2902143000556,-41.51702389845772,0 173.2902596998875,-41.51699119866347,0 173.2903234000078,-41.51698209892417,0 173.2903773002502,-41.5169600991531,0 173.290452399204,-41.51694519860678,0 173.2905159993129,-41.51693679888624,0 173.290593300356,-41.51693649910816,0 173.2906449001206,-41.51694009869004,0 173.2907066001684,-41.51694149922869,0 173.29074649966,-41.51691969950969,0 173.2908040003375,-41.5169285993751,0 173.2908466005899,-41.51691819887734,0 173.2909053003647,-41.51690689923832,0 173.2909507003167,-41.51688689872451,0 173.2910228996575,-41.51687619989488,0 173.2910803001759,-41.51689109881625,0 173.2911339001051,-41.51690939951553,0 173.291188199828,-41.51691349913767,0 173.2912415001962,-41.5169039982647,0 173.291278199539,-41.51690489884132,0 173.2913068002842,-41.51691339965633,0 173.2913843005304,-41.51688110000818,0 173.2914374996973,-41.51683809892769,0 173.2914870002711,-41.51681269958168,0 173.2915513006672,-41.51679429838165,0 173.2915705000324,-41.51677939918837,0 173.2916197002951,-41.51675359971346,0 173.2916775998208,-41.51674109921862,0 173.2917347000082,-41.51671659834391,0 173.2918018001253,-41.51669319889352,0 173.2918856993549,-41.51669579900896,0 173.2919715000705,-41.51670629913952,0 173.2920600003142,-41.51671639872901,0 173.2921018991472,-41.51670759926319,0 173.2921430002583,-41.51670129956746,0 173.2921755002363,-41.5166848991787,0 173.2922037993536,-41.51667029832044,0 173.2922280996982,-41.51665339902014,0 173.2922527005572,-41.51663989925035,0 173.292259699656,-41.5166140995449,0 173.2923040996732,-41.51660239866932,0 173.2923816998591,-41.51661619893527,0 173.2924539988988,-41.51660859930665,0 173.2925174005427,-41.51660229861152,0 173.2925729998028,-41.51657379914224,0 173.2926426000624,-41.51658379863772,0 173.2927154988894,-41.5165789986273,0 173.2927909000366,-41.51657259878098,0 173.2928840006131,-41.51659429928306,0 173.2929663999344,-41.51660899848395,0 173.293055600482,-41.51662449906888,0 173.2931441996687,-41.51661879946892,0 173.2932298998521,-41.51660009958266,0 173.2933350001168,-41.51660469917339,0 173.2934319007443,-41.51662019964411,0 173.2935094005038,-41.51662709972825,0 173.2936042003992,-41.51662749908006,0 173.2937065001761,-41.51662869887626,0 173.2937949002161,-41.51661209941086,0 173.2938853997401,-41.51659599892996,0 173.2939651003937,-41.51659559978006,0 173.2940651998367,-41.51659389818877,0 173.2941507002851,-41.51660049905433,0 173.2942717991211,-41.51661049914737,0 173.2943494000517,-41.51661669852916,0 173.2944272002039,-41.51660999963317,0 173.2945107001526,-41.51661149904744,0 173.2945868006603,-41.51660289933059,0 173.2946498997135,-41.51658779889191,0 173.2947070003409,-41.51657159867354,0 173.294765299721,-41.51655969909573,0 173.2948041004729,-41.51655229913753,0 173.2948392000231,-41.51654269913369,0 173.2948901007021,-41.51652589951006,0 173.2949341003302,-41.51652009940139,0 173.2949658005335,-41.51650219963799,0 173.2950147991519,-41.51649039945348,0 173.2950741010475,-41.51646599935842,0 173.2951418991966,-41.51644989938432,0 173.2952102012542,-41.51644579955331,0 173.2952716992133,-41.51644869879492,0 173.2953699004813,-41.51643759900421,0 173.295442599528,-41.5164239984307,0 173.2955066999997,-41.51641519834175,0 173.2955897006652,-41.51640209903942,0 173.2956712001159,-41.51639199940354,0 173.2957366995875,-41.51638119864433,0 173.2958135004087,-41.51638199914998,0 173.2959687999049,-41.51638799936843,0 173.2960472995679,-41.51638709925317,0 173.2961041007416,-41.51639339962824,0 173.2961656996169,-41.51640029922977,0 173.2962300010456,-41.51641719907008,0 173.2962872000284,-41.51641269934409,0 173.2963442998963,-41.51641589848232,0 173.296386698699,-41.51641519923683,0 173.2963861002742,-41.51641589885666,0 173.2963857003919,-41.51641729873551,0 173.2963855996597,-41.51641859876472,0 173.2963871000434,-41.51641989827124,0 173.2964294999471,-41.51641549966814,0 173.2966065000774,-41.51641999920009,0 173.2967368998044,-41.51642679849506,0 173.2968026000549,-41.51642639927347,0 173.296896100113,-41.5164266992859,0 173.2969723999235,-41.51641619871177,0 173.2970387007457,-41.51640639946668,0 173.2971179003936,-41.51641809908342,0 173.29719349927,-41.51642309833027,0 173.2972685002329,-41.51641999960278,0 173.2973429993148,-41.5164056996078,0 173.2974000005497,-41.51638969917264,0 173.2974635997835,-41.51636859876437,0 173.2975389002666,-41.51635659886002,0 173.2975634998327,-41.51634229899745,0 173.2976057003132,-41.51630799856343,0 173.2976462008816,-41.51626809900227,0 173.2976778008203,-41.51624419891214,0 173.2976941002946,-41.5162236981812,0 173.297685400222,-41.51619609946876,0 173.2977008002972,-41.51619639918339,0 173.2978803989895,-41.51619559907435,0 173.2978876998182,-41.5161440991938,0 173.2979466993053,-41.51605719865958,0 173.2979424997533,-41.51602839932381,0 173.29803499995,-41.51588949952071,0 173.2980499999944,-41.51583709964959,0 173.2981056995289,-41.51578149933906,0 173.2981387006434,-41.51561879933641,0 173.2981571992031,-41.51556649937135,0 173.2982446996318,-41.51550329895556,0 173.2982724997969,-41.51545429948278,0 173.2982949993709,-41.51540609829712,0 173.2983176000503,-41.51535799862896,0 173.2983942994429,-41.51525529887384,0 173.2983901000985,-41.51524379919119,0 173.2983908996445,-41.51524279909702,0 173.2983942058285,-41.51523126282964,0 173.2984053002146,-41.5152420987897,0 173.298417499656,-41.51524199957888,0 173.2984249995292,-41.51521959939203,0 173.2984405009506,-41.5151973991264,0 173.2984080987993,-41.51516309919808,0 173.2984419008682,-41.51513429945,0 173.2984583992521,-41.51510059952868,0 173.2984925000965,-41.51509249893169,0 173.2984886007407,-41.51505499947194,0 173.2985128004519,-41.51499659923345,0 173.2985298998358,-41.51488479984257,0 173.2984916997011,-41.51480689837625,0 173.2984830003039,-41.51479199926892,0 173.2984808007199,-41.51476449903164,0 173.2984737000444,-41.51473499925589,0 173.2984842997293,-41.51471459967265,0 173.2984964997953,-41.51468439947126,0 173.2984652994453,-41.51455269924308,0 173.2984577000194,-41.51454479964413,0 173.2984858999608,-41.51449659893274,0 173.2984754007799,-41.51448199903805,0 173.2984604998472,-41.51446869862714,0 173.2984907001917,-41.51442499913245,0 173.298436201059,-41.51438469906584,0 173.2984306003631,-41.51436839936463,0 173.2984699005783,-41.51428409875469,0 173.2984502999979,-41.51425549972686,0 173.2984579997203,-41.51424349988215,0 173.298435599741,-41.51422299858258,0 173.2984380992214,-41.51419499974418,0 173.2983753005612,-41.51415059939235,0 173.2983646000191,-41.51407229955551,0 173.298380299158,-41.51404179934178,0 173.2983546989749,-41.51401829965374,0 173.2983341008626,-41.51401279911325,0 173.298304399551,-41.51396679871194,0 173.2982913001375,-41.51391359975046,0 173.2982953999416,-41.51389769913145,0 173.29828059913,-41.51388319864646,0 173.2983050997292,-41.51382669912649,0 173.2982673001903,-41.51378939926734,0 173.298312999963,-41.51376649917885,0 173.2983095000621,-41.51374339972907,0 173.2982606004417,-41.51373049912503,0 173.2982602008501,-41.51370949936656,0 173.2983407988393,-41.51365109969943,0 173.298296299212,-41.51355219928224,0 173.2983045996077,-41.51353139854096,0 173.2982175997284,-41.51348269947014,0 173.2982499999132,-41.51347369991056,0 173.2982604997581,-41.51347569934946,0 173.2982677998747,-41.51341059912115,0 173.2984754991405,-41.51338609874927,0 173.2985091993758,-41.51334759915321,0 173.2986081007785,-41.51330979949007,0 173.2985977991995,-41.51328339937291,0 173.2987702997951,-41.51326009866006,0 173.2989480004712,-41.51315119838955,0 173.2992218994561,-41.51309389970847,0 173.2992586000052,-41.51303149990186,0 173.2993748000597,-41.51300119918107,0 173.2994693992777,-41.51293709930854,0 173.2994956998337,-41.51289779900824,0 173.2995688987128,-41.51284939886173,0 173.2996547989941,-41.51274979893216,0 173.2996948000713,-41.51271199955762,0 173.2998033001108,-41.51264799919172,0 173.2998641005386,-41.5125705993642,0 173.2998935005542,-41.51250889844452,0 173.2999301011558,-41.51248969916843,0 173.3000942994913,-41.51240079906977,0 173.3001192000217,-41.51234079962418,0 173.3001689000574,-41.51231309911299,0 173.300212999032,-41.51226519874748,0 173.3003182994337,-41.5121897992485,0 173.3003294996899,-41.51216109938333,0 173.3004154990753,-41.51209089973669,0 173.3004673000415,-41.51206149930896,0 173.3004921000428,-41.51207029961852,0 173.3005223995311,-41.51205789920114,0 173.3005450998313,-41.51198789906703,0 173.3006454006734,-41.51193779886184,0 173.3007704992228,-41.51183649859619,0 173.300792900169,-41.51176739993903,0 173.3008288005715,-41.51158079928975,0 173.3008447989319,-41.51154619957352,0 173.3009423994424,-41.51149179971895,0 173.3010107007283,-41.51136249870102,0 173.3010240001415,-41.51126009905463,0 173.3010623003034,-41.51123549951704,0 173.3011661996699,-41.51119579840903,0 173.3012326002784,-41.51112789951208,0 173.3014847003664,-41.51090759927695,0 173.3015072001041,-41.51088739969939,0 173.3016503995644,-41.51086659897555,0 173.3016747995567,-41.51085279955969,0 173.3017645001762,-41.51085879917832,0 173.3018130990451,-41.51086479849985,0 173.3018367996653,-41.51086219891442,0 173.3019155009851,-41.510829299004,0 173.3020676001093,-41.51083089927678,0 173.3022050000385,-41.51077649919676,0 173.3022195002708,-41.51072169867199,0 173.302576399892,-41.51033069836231,0 173.3026211999309,-41.51027549830108,0 173.3027168008858,-41.51019079852232,0 173.3027602996594,-41.51014569915427,0 173.3027904998457,-41.51009709846232,0 173.3028787005045,-41.51003909891708,0 173.3029642992691,-41.50995869839156,0 173.3030560006747,-41.50991679926642,0 173.3030619001721,-41.50989139900019,0 173.3030478996446,-41.50984219951602,0 173.3030743998016,-41.50979349860711,0 173.3030798007914,-41.50976989843868,0 173.3030949998501,-41.50970609843837,0 173.3031589003013,-41.50966299973635,0 173.3031701997059,-41.50961789950865,0 173.3033504008716,-41.50932779875355,0 173.3033489993164,-41.50926859935399,0 173.3033749999165,-41.5091478988455,0 173.303443399326,-41.50904039944347,0 173.3034835992679,-41.50899969871633,0 173.3035615996281,-41.50893719932176,0 173.3036274998239,-41.50874039959021,0 173.3036363998393,-41.50869659910585,0 173.3036417998287,-41.50837919921423,0 173.303616300295,-41.50824379935766,0 173.3036792007256,-41.5080575993243,0 173.3037053007831,-41.50801789863343,0 173.3037193009804,-41.50792239915704,0 173.3036763783732,-41.50767388951665,0 173.3036697966632,-41.50767449507948,0 173.303635000114,-41.50762299961429,0 173.3035886006373,-41.50752659941676,0 173.3035754997483,-41.50741959964218,0 173.3035823995298,-41.50720799967028,0 173.3036400993463,-41.50691449885908,0 173.3036718237023,-41.50686943020278,0 173.3036746738606,-41.50682752102544,0 173.3036817226648,-41.50666763858025,0 173.3037099618852,-41.50658042255149,0 173.3037160803877,-41.50655661777824,0 173.3037673769443,-41.50649593256915,0 173.3038013243032,-41.50645687316733,0 173.3038821252014,-41.50632184101874,0 173.3039294834092,-41.50624489512732,0 173.3040212649952,-41.50607256292134,0 173.3040567212723,-41.50602545671525,0 173.3040064289901,-41.50589109433353,0 173.3040100337686,-41.50586762495298,0 173.3039734882766,-41.50582479393932,0 173.303859746352,-41.50573795752256,0 173.3037474290218,-41.50565564706701,0 173.303629997818,-41.50557845001002,0 173.3036013319436,-41.50555271759446,0 173.3034129902491,-41.50545003899721,0 173.3033734283393,-41.50542648534515,0 173.3033503782317,-41.50541039221471,0 173.3032328639072,-41.50534677366573,0 173.3030940596639,-41.50525105277522,0 173.3030209692616,-41.50519028397759,0 173.3028044645418,-41.50502909964825,0 173.3026127707816,-41.50489532409917,0 173.3024463894339,-41.50471938813355,0 173.3023536851336,-41.50460036537692,0 173.30216475757,-41.50440028889791,0 173.3020513501274,-41.50428587623667,0 173.301976332181,-41.50421236721133,0 173.301894273388,-41.50413156528138,0 173.3017962894452,-41.50404355590243,0 173.3017927692959,-41.50402553406048,0 173.301701573588,-41.5039401225411,0 173.3016742487095,-41.50392159837216,0 173.3015441615361,-41.50377851956029,0 173.3015357794452,-41.50377089242613,0 173.3015315884045,-41.50376862903639,0 173.3015312533249,-41.50376846147486,0 173.3015299964744,-41.50376795855193,0 173.3015279840952,-41.50376628214119,0 173.3015278168638,-41.50376536021576,0 173.3015248827582,-41.50375664331025,0 173.3014815491264,-41.50373535254504,0 173.3014740893228,-41.50373359312871,0 173.3014655397532,-41.50372705452647,0 173.3014596721276,-41.50371775081342,0 173.301460845585,-41.50371758290115,0 173.3014640310929,-41.50369654489698,0 173.3014084583025,-41.50359369865715,0 173.3012963920976,-41.50351239394658,0 173.3012870883922,-41.50350677876403,0 173.3011993303342,-41.50344408178538,0 173.3011895226265,-41.503438298577,0 173.301155828017,-41.50342329485432,0 173.3011284196718,-41.50339546699119,0 173.3011009265291,-41.5033687283435,0 173.3009663970868,-41.50329488352178,0 173.300825328929,-41.50320695810768,0 173.3006679174618,-41.50312414463173,0 173.3005617185002,-41.50305172500305,0 173.3004166280889,-41.50290655023723,0 173.300396929913,-41.5028948992275,0 173.3003872910724,-41.50289347420704,0 173.3003506624291,-41.50287662688069,0 173.3003407720945,-41.50287159773446,0 173.3002157980575,-41.50279808827349,0 173.3001706192258,-41.50275684945538,0 173.3001438805382,-41.5027319551299,0 173.3000973610068,-41.50270706107287,0 173.3000903200391,-41.50270722896426,0 173.3000874710241,-41.50270806688574,0 173.3000667673839,-41.5026903807588,0 173.3000204992647,-41.50267529330905,0 173.3000094344578,-41.50266967811039,0 173.2999380207326,-41.50264201788368,0 173.2998857178991,-41.50261846471323,0 173.2998730609091,-41.50261159081348,0 173.2997682872073,-41.50255166094354,0 173.2996706384546,-41.50246608175706,0 173.299507777784,-41.50234228083156,0 173.2993275672921,-41.50223365101151,0 173.2991343640011,-41.50213717510614,0 173.2989124955798,-41.50204656695741,0 173.298852228982,-41.50203466441337,0 173.2988121634786,-41.50201412887302,0 173.2988143434248,-41.50201136333281,0 173.2986874408835,-41.50192393981639,0 173.2985273464788,-41.50183693559107,0 173.2985152771786,-41.50181916642031,0 173.2984882873387,-41.50179284648044,0 173.2984674161631,-41.5017781788906,0 173.2983450410951,-41.50168237353167,0 173.2983012872587,-41.50162747229994,0 173.2983141956302,-41.50161087594638,0 173.2983083277125,-41.50160685223102,0 173.2983071539875,-41.50160643372597,0 173.2982794940074,-41.50159905721285,0 173.2982782363617,-41.50159888933256,0 173.2981344870182,-41.50162646630099,0 173.2980762323545,-41.50161188112186,0 173.2980649177947,-41.50160894789978,0 173.2980471474873,-41.50160836072664,0 173.2980486565238,-41.50160534383014,0 173.2980473995796,-41.50160349966162,0 173.2980276178765,-41.50158782573842,0 173.2978942621967,-41.50154708919175,0 173.2978241887867,-41.50150945474213,0 173.2977701259991,-41.50147902798538,0 173.2977284676768,-41.50146033640756,0 173.2976448166362,-41.50143259292853,0 173.2975391205891,-41.50138179874415,0 173.2974611686267,-41.50133687131375,0 173.2973849772746,-41.50131507848404,0 173.2973073609329,-41.50127668947889,0 173.2970986510576,-41.50113226939924,0 173.2969774489574,-41.5010632863945,0 173.2969242238705,-41.50102565112238,0 173.2967511373149,-41.50095038131295,0 173.2967405768557,-41.5009480350977,0 173.2967295961193,-41.50094627455185,0 173.2966863451731,-41.50092423053128,0 173.2965916301,-41.50080269244734,0 173.2965065542383,-41.5007236508494,0 173.2964053847783,-41.50064008389209,0 173.2963716889047,-41.50061451934309,0 173.2961802463424,-41.50049775905839,0 173.2961439522918,-41.50045098771249,0 173.2960999476734,-41.50033833508176,0 173.2961020429314,-41.50026356884516,0 173.2960766462745,-41.500201039728,0 173.2960199849817,-41.50011026358133,0 173.2959971853509,-41.50008495010744,0 173.2959452178306,-41.50003532944095,0 173.2959004580354,-41.49995167812027,0 173.2958123647271,-41.49982653647532,0 173.2957414543066,-41.49977305970877,0 173.2956526888461,-41.49969284517575,0 173.2956141324008,-41.49965873042046,0 173.2955340853633,-41.49953409120448,0 173.2954300657681,-41.49948547686061,0 173.2954055904295,-41.49945463069417,0 173.2953974599953,-41.49934759454154,0 173.2953005652035,-41.4992829699683,0 173.2952476762985,-41.49926025476988,0 173.2951496910047,-41.49918892502708,0 173.2950405590896,-41.49909077261286,0 173.2949415683436,-41.49898046646728,0 173.2948387233439,-41.49889044496619,0 173.2947178553559,-41.49873144012267,0 173.2946159315212,-41.49857486637674,0 173.2946164353132,-41.49856547843159,0 173.2945615331005,-41.49845944743016,0 173.2945391539334,-41.4983915544019,0 173.2944825754283,-41.49835023171328,0 173.294433458192,-41.49830639393801,0 173.2944105746567,-41.49826624509539,0 173.2943385748447,-41.49819248457494,0 173.2942913842522,-41.49814914982531,0 173.2942331299997,-41.49813112905126,0 173.294226676413,-41.49813364332312,0 173.2942075652991,-41.49811268865572,0 173.294196752946,-41.4980921532234,0 173.2941842640989,-41.49808477654371,0 173.2941440302018,-41.49803171932275,0 173.2941322960735,-41.49803305991117,0 173.2940812504379,-41.4979955933744,0 173.294041519432,-41.49796256828103,0 173.2940272712888,-41.49793096876609,0 173.2940231637029,-41.49790992977121,0 173.2939732911338,-41.4978692778566,0 173.2939604669422,-41.49786005818592,0 173.2939338961698,-41.49777699280066,0 173.2938336483097,-41.49777523307908,0 173.2938227518366,-41.49777925661902,0 173.2938230878152,-41.49778042942675,0 173.293805318123,-41.49773944231446,0 173.2938130295453,-41.49767884125611,0 173.2937758972574,-41.49765344413908,0 173.293751589479,-41.49764715777609,0 173.2937517570633,-41.49758772984006,0 173.2937398557547,-41.49758228191159,0 173.2937135355247,-41.49757473783509,0 173.2937018855694,-41.49757029538854,0 173.2936727164228,-41.49754766390505,0 173.2936700346138,-41.49753668437494,0 173.293666932238,-41.49751455560193,0 173.2936624907665,-41.49750709616775,0 173.2936648370847,-41.49743584940893,0 173.2936282922302,-41.49738078022251,0 173.2936236816488,-41.49737407514301,0 173.2936137914865,-41.49737063882812,0 173.293597194986,-41.49736812398265,0 173.2935739768931,-41.49735664110722,0 173.2935628297055,-41.49733007057694,0 173.2935135434066,-41.49727793427412,0 173.2934984567055,-41.4972507774953,0 173.2935221774323,-41.49719872599794,0 173.293506922312,-41.49717114900632,0 173.2934868891263,-41.49716318620369,0 173.2934715502907,-41.49711758912509,0 173.2934380234276,-41.49708129540173,0 173.2934124581033,-41.4970758471645,0 173.2934048305392,-41.49706855437913,0 173.293396951262,-41.49706017323383,0 173.293383624549,-41.49705397047375,0 173.2933695425467,-41.49704818668269,0 173.2933503481815,-41.49701289853452,0 173.2933463243489,-41.49699814649834,0 173.293343643246,-41.49699102214359,0 173.2933363499699,-41.49698532281476,0 173.2933258726198,-41.49698264009733,0 173.2933156475093,-41.49697903617478,0 173.2933107860854,-41.49697434218211,0 173.2933127969102,-41.49697098898881,0 173.2933101985327,-41.49696679814532,0 173.2933057567498,-41.49696403247696,0 173.2933044987087,-41.4969626917748,0 173.2933020682446,-41.49696093070872,0 173.2933008950305,-41.49695263334287,0 173.293280359004,-41.49691843489919,0 173.2932675347632,-41.49691525014242,0 173.2932342594934,-41.49688926563272,0 173.2932119635941,-41.49682506066355,0 173.2932380302833,-41.49677753488508,0 173.2932304867082,-41.49676999146587,0 173.2932123823021,-41.4967537305424,0 173.2931932708547,-41.49673068056802,0 173.2931463329172,-41.49670444532586,0 173.2931372804721,-41.49669732008859,0 173.2931058482539,-41.49665013002311,0 173.2930929401918,-41.49662674446266,0 173.2930828811458,-41.4965738549593,0 173.2930719847989,-41.49656086246345,0 173.2930202688403,-41.49635885904662,0 173.2929996491024,-41.49625257688391,0 173.2929528778711,-41.49620873878303,0 173.2929393002187,-41.49620396158553,0 173.2928765188969,-41.49618476716965,0 173.2928319277159,-41.49617378623547,0 173.2927991543191,-41.49613967200346,0 173.2927841509731,-41.49611813105429,0 173.2927811326834,-41.49611033559049,0 173.2927757693448,-41.49609047070963,0 173.2927743441526,-41.49603045592499,0 173.2927996574623,-41.49600053270637,0 173.292923792938,-41.49589668054018,0 173.2929996491481,-41.49583415219612,0 173.2930716497802,-41.49580456395283,0 173.2932351805137,-41.49575125452471,0 173.2932613325701,-41.49568663057968,0 173.2932492629323,-41.49565519834222,0 173.2932541237629,-41.49559736354929,0 173.2932165725908,-41.49551304149303,0 173.2932099229498,-41.49550922577704,0 173.2932066820129,-41.49549828909213,0 173.2931854762254,-41.49534414556403,0 173.2931784358948,-41.4953339202422,0 173.2931372806605,-41.49525186100836,0 173.2931365254296,-41.49523023605231,0 173.2931365258034,-41.49521942351305,0 173.2931273896754,-41.49519369090002,0 173.2931138942377,-41.49515555263412,0 173.2931068535568,-41.49513434722712,0 173.2930414757149,-41.49506913596209,0 173.293016078009,-41.49505178476483,0 173.292996129342,-41.49504407386534,0 173.292919351276,-41.49493661781595,0 173.292881631793,-41.49491767482905,0 173.2927400619587,-41.49487895011553,0 173.2925246474068,-41.49487325060895,0 173.2924503834892,-41.49482698264667,0 173.292411827115,-41.49481424145639,0 173.2923946431032,-41.4948101345127,0 173.2923031967033,-41.49475179691789,0 173.2921917178848,-41.49469848765632,0 173.2921284349212,-41.49467099553458,0 173.2921059714722,-41.49464827995402,0 173.2920075670782,-41.49462455920165,0 173.2919494808714,-41.49457988379444,0 173.2919374942436,-41.49457502227089,0 173.2919249214978,-41.49457410029484,0 173.2918872866607,-41.49455415153501,0 173.2918086654022,-41.49448365967058,0 173.2917556911609,-41.49446748247053,0 173.2916883849746,-41.49443076947886,0 173.2916559468823,-41.49441685596283,0 173.2916369193363,-41.49440528910264,0 173.2916245986537,-41.49437989141286,0 173.2916142886162,-41.4943647201893,0 173.2916072480088,-41.49436103237229,0 173.291583862074,-41.49435935592568,0 173.2915564533999,-41.4943638822923,0 173.2914228454088,-41.49433747957728,0 173.2913853789331,-41.49432616386424,0 173.2913226824795,-41.49428048197191,0 173.2912634223312,-41.49425491758509,0 173.2912489217478,-41.49423815361007,0 173.2911799378302,-41.49418543112805,0 173.2911368552153,-41.49414176217974,0 173.290941557014,-41.49405174049914,0 173.2907617654911,-41.49396414912848,0 173.2906849866093,-41.49392265852117,0 173.2906695644196,-41.49391997634407,0 173.2905288320223,-41.49377966346953,0 173.2904984899047,-41.49375879238088,0 173.2904519696471,-41.49373549139887,0 173.2903724257519,-41.49369416789449,0 173.2903602719143,-41.49368452907799,0 173.2902740222451,-41.49359853107131,0 173.2902646344603,-41.49357891671948,0 173.2902163543722,-41.49353357074704,0 173.2902064639622,-41.49351622032743,0 173.2901622910606,-41.493489733673,0 173.2901090666566,-41.49344648264797,0 173.2900822440486,-41.49341689506789,0 173.2900200499078,-41.49336417277085,0 173.289999933613,-41.49334849828495,0 173.2899901275537,-41.49333902735293,0 173.289975961393,-41.49332997455224,0 173.2898759653917,-41.49324959191073,0 173.2897583678034,-41.49321153810372,0 173.2896318842771,-41.49314649500641,0 173.2894420347367,-41.49304809091859,0 173.2892722169427,-41.49296837884239,0 173.289146572503,-41.49290107222803,0 173.2890486714654,-41.49282831740712,0 173.2889346777785,-41.49276578855686,0 173.2888951985512,-41.49274282234325,0 173.288840717264,-41.49273318338405,0 173.2887730745169,-41.49272295682927,0 173.2887459172906,-41.49271709000013,0 173.2887347698942,-41.4927133177378,0 173.2887197664205,-41.49270988122827,0 173.2887237890893,-41.49270686354274,0 173.2887101268742,-41.4927000746909,0 173.288707193085,-41.49269848233242,0 173.2886830527609,-41.49268054423452,0 173.2886583262479,-41.49267115657504,0 173.2886042634511,-41.49266185333006,0 173.2885622701216,-41.49263788087192,0 173.2885192701851,-41.49261734546432,0 173.2885141577358,-41.49261667462221,0 173.2885145763671,-41.49261382451582,0 173.2885171753676,-41.49258532652813,0 173.2885173431204,-41.49257912357546,0 173.2885143253299,-41.49255967775253,0 173.2885078715753,-41.49252832909286,0 173.2884519641816,-41.4924782897001,0 173.2882627847036,-41.49243344568099,0 173.2881696617279,-41.49241609558261,0 173.2880837474144,-41.49239556033216,0 173.2879820743303,-41.49238089139267,0 173.2879446912864,-41.49237125243573,0 173.2878690863794,-41.4923622000366,0 173.2878211424072,-41.49235675160983,0 173.2877140212567,-41.492352979776,0 173.2875144483203,-41.49231668607867,0 173.2874951700151,-41.49231366903005,0 173.2873761464253,-41.49231928447235,0 173.2873299623922,-41.49228374565399,0 173.2872197428586,-41.49225951616491,0 173.2869583923357,-41.49220964929465,0 173.2867947782815,-41.49223018452345,0 173.2866848916112,-41.49226807088684,0 173.2865771836975,-41.49226865815901,0 173.2863420719622,-41.49224896072726,0 173.2857663188724,-41.49223982417933,0 173.2855778932247,-41.49221819868473,0 173.2853261846299,-41.49221534919239,0 173.2851911520873,-41.49219498135491,0 173.285150416094,-41.49222297663017,0 173.2850906527785,-41.49223085587457,0 173.285064669272,-41.49222616163498,0 173.2850466477002,-41.49219715996571,0 173.2848563789303,-41.49218953273958,0 173.2846714744636,-41.49224175184847,0 173.2838359658343,-41.49234962721814,0 173.2836214732772,-41.49228542156272,0 173.2834146913833,-41.49219179618172,0 173.2832269368429,-41.49205257288386,0 173.2829436284701,-41.49193245949514,0 173.2828780821652,-41.49186096192052,0 173.2828407832056,-41.49178007663754,0 173.2826680320891,-41.49165459962822,0 173.2825762497313,-41.4916432838999,0 173.2824750807886,-41.49160539754681,0 173.2824030794444,-41.49161252269985,0 173.2823413892915,-41.49158326931315,0 173.2817337848729,-41.49147933415716,0 173.2815231470227,-41.49139065358877,0 173.2811032982187,-41.49111287720492,0 173.2810395955615,-41.49108672570073,0 173.2808301314827,-41.49103048314073,0 173.2806118669631,-41.49100382863814,0 173.2802763397669,-41.49093115759882,0 173.279830087288,-41.4908094527033,0 173.2794499677366,-41.49075714909972,0 173.2790501508356,-41.49059294826669,0 173.2787904791543,-41.49046445337604,0 173.2784799300675,-41.49038717228009,0 173.2783864713615,-41.49038189135719,0 173.2783229363876,-41.49034635217025,0 173.278286978301,-41.49027493798461,0 173.2782241983332,-41.49025063101533,0 173.2781970405793,-41.49015625082001,0 173.2782050870643,-41.49012456744354,0 173.2780334263357,-41.48997277091124,0 173.277915073062,-41.48989532168186,0 173.2778397205034,-41.48979993640794,0 173.2777940392766,-41.48968275704081,0 173.2776443376306,-41.4896063974778,0 173.277528751958,-41.48949592433176,0 173.2773735184975,-41.48938126003344,0 173.2773018537174,-41.48935393486126,0 173.2772519806877,-41.48929878172516,0 173.2770428523193,-41.48919886958307,0 173.276697936933,-41.48908085272624,0 173.2764743917186,-41.48896937352057,0 173.2764265311168,-41.48886267179939,0 173.2763039875649,-41.48879813054928,0 173.2762582232755,-41.48871867038551,0 173.2761869759942,-41.4886584888047,0 173.276123860553,-41.48864574796498,0 173.2759617543103,-41.48849579530399,0 173.2759392913689,-41.48840501977711,0 173.2758558911857,-41.4883268999626,0 173.2757974695539,-41.48820963773219,0 173.2757654503204,-41.48790763761827,0 173.275734522023,-41.48783094298184,0 173.2757479324887,-41.48768032050487,0 173.2757132319827,-41.48749876824196,0 173.2757285701068,-41.48735074429448,0 173.2757670436309,-41.48721948360726,0 173.2760252900548,-41.4869144660122,0 173.2761013973141,-41.48684875136117,0 173.2761424683467,-41.48683408319861,0 173.2762179900653,-41.48669796124666,0 173.276365343942,-41.48658237482769,0 173.276526862404,-41.48641046203036,0 173.2771223973459,-41.4860167636673,0 173.2772254941067,-41.48598558360403,0 173.2773287589902,-41.48589103553586,0 173.2774061248377,-41.48577779630573,0 173.2775444255591,-41.48562566439735,0 173.2777538895837,-41.48555508882184,0 173.277991684206,-41.48554033660759,0 173.278006436788,-41.48555257452522,0 173.2783323243129,-41.48544553706574,0 173.2782718913624,-41.48515761917817,0 173.2783218474998,-41.48494077870992,0 173.2782571391254,-41.48460927500098,0 173.2781448210532,-41.4844767568032,0 173.2779483492435,-41.48428749397533,0 173.2778928620785,-41.48419654995203,0 173.2778281529677,-41.48416788417843,0 173.2777538900101,-41.48404751931292,0 173.2774597685838,-41.48383369743798,0 173.2772512273122,-41.48375365012058,0 173.2768601274692,-41.48373822738548,0 173.2767046431839,-41.48371425524542,0 173.2765743876743,-41.48366798730239,0 173.2765255216317,-41.48367326787181,0 173.2764197425153,-41.48362775428282,0 173.2762066736202,-41.48359665711637,0 173.2758667878313,-41.4834446935247,0 173.2756980600329,-41.48340655511107,0 173.2755841500899,-41.4833469599527,0 173.2753945511872,-41.48333924877942,0 173.2752246498905,-41.48329993790895,0 173.2749155699039,-41.48316692245517,0 173.2746562736932,-41.48301512022621,0 173.2745376692101,-41.48295904544126,0 173.2744631538066,-41.48294144342848,0 173.2744263576284,-41.48290305492363,0 173.2742530205286,-41.482853852501,0 173.2735565680154,-41.48258906822134,0 173.2730841632918,-41.48250969189254,0 173.2730027751921,-41.48247683488483,0 173.2728593614474,-41.4824835407542,0 173.2723755580441,-41.48244003827931,0 173.2721070847381,-41.48233149236965,0 173.2717182489257,-41.48227793257832,0 173.2714398853443,-41.48214256440614,0 173.2714182601985,-41.48212823140757,0 173.2713923608018,-41.48204918981942,0 173.2713339383365,-41.48195858189064,0 173.2712774446372,-41.48188926303997,0 173.2711827294474,-41.48182287883867,0 173.2708922954841,-41.48166487949221,0 173.2705039621486,-41.48155784335655,0 173.2701493243074,-41.48132482575031,0 173.2700115260496,-41.4812063893929,0 173.2697604880681,-41.48083347909225,0 173.2694364429659,-41.48055033838128,0 173.2693033392035,-41.48039049542285,0 173.269275091785,-41.48029812686727,0 173.2690055299593,-41.47996293467985,0 173.2687634597913,-41.47971332156557,0 173.2685921336754,-41.47963780045375,0 173.2685043749981,-41.47950754559092,0 173.2684327946402,-41.47946027208906,0 173.2683615482481,-41.47941785910137,0 173.2682191396762,-41.47936907620213,0 173.2681131927768,-41.47924167197458,0 173.2680401861387,-41.47910362152183,0 173.2679920742503,-41.47895316647641,0 173.2679073330729,-41.47886029504286,0 173.2677640855216,-41.478490317758,0 173.2676958570486,-41.47843172800283,0 173.2674704681361,-41.4783278763889,0 173.2674577273699,-41.47827708223272,0 173.2673249580295,-41.4781930952993,0 173.2671971344658,-41.47803853305693,0 173.2670732491147,-41.47793635801587,0 173.267042068203,-41.47788053451014,0 173.2670545575438,-41.47776193019053,0 173.2669682236372,-41.47768096151759,0 173.2668047769466,-41.47758775485952,0 173.2667912828022,-41.47752774051126,0 173.2664178682667,-41.47737996730141,0 173.2663234879682,-41.47732615540305,0 173.2661577778629,-41.47731366637065,0 173.2657576263765,-41.47720386354484,0 173.2655850428244,-41.47718223796239,0 173.2653209289561,-41.47705994583534,0 173.2651359401177,-41.47702247881786,0 173.2649539694359,-41.47692994273726,0 173.2647504568056,-41.47687026388684,0 173.2644055408343,-41.47680094482305,0 173.2641797331416,-41.47679273090188,0 173.2638490671654,-41.47655267309842,0 173.2635055762685,-41.47624874555939,0 173.2632612432341,-41.47609812257429,0 173.2631223555804,-41.4759852181366,0 173.2630601620566,-41.47584046335185,0 173.2630071883546,-41.4757791913036,0 173.2629244590841,-41.4757116333667,0 173.2628737485341,-41.47569168420193,0 173.2626424920309,-41.47549512878271,0 173.2625732569156,-41.47538105126757,0 173.2624909467523,-41.47529245418444,0 173.2624523904624,-41.47519019465315,0 173.2623943867981,-41.47515574545843,0 173.2622865955777,-41.47498282696458,0 173.2621608678708,-41.47484242932246,0 173.2620853460639,-41.47480286761344,0 173.2619175409224,-41.47460731726743,0 173.2617505737784,-41.47448108634998,0 173.2614063282742,-41.4740846220588,0 173.2612367624296,-41.47394145861869,0 173.2612013911794,-41.47389083221282,0 173.2611047470826,-41.47383014752637,0 173.2610389501451,-41.47381279712038,0 173.2609812821455,-41.47381824509189,0 173.260732675551,-41.47368262561838,0 173.2607078643506,-41.47363434589386,0 173.2606592929126,-41.47343865938641,0 173.2606487715327,-41.47341742195972,0 173.2605919430563,-41.47332798749457,0 173.2605663781979,-41.47329152636416,0 173.2604626934749,-41.4731850756362,0 173.2603235541645,-41.47309899351382,0 173.260272089786,-41.47300335680554,0 173.2602151764064,-41.47284066356045,0 173.2601242323321,-41.47273094460378,0 173.2599221452758,-41.47263907919717,0 173.2597809937464,-41.47254377638699,0 173.2597770546124,-41.47253564612115,0 173.2597741211214,-41.47248032606407,0 173.2597833406111,-41.47241796443253,0 173.2597687562183,-41.47238384999029,0 173.259695749516,-41.47216198120034,0 173.2596846862028,-41.47211705431578,0 173.2596575281777,-41.47209676951204,0 173.2596348976055,-41.47208679526197,0 173.2595847731654,-41.47205519572943,0 173.2595275250561,-41.47201722503623,0 173.2595191434829,-41.47201286720909,0 173.2595043906624,-41.47199652217665,0 173.2594819272552,-41.47197799851335,0 173.2593862898277,-41.47188722237991,0 173.2593717886936,-41.4718393613689,0 173.2593029742533,-41.47177733512866,0 173.2592780800981,-41.47174716031272,0 173.2592512572423,-41.47167566259044,0 173.2592287939925,-41.47164180002254,0 173.2592291294329,-41.47155554987502,0 173.2592218366363,-41.47153317099365,0 173.2592170595572,-41.4715103720982,0 173.259212533343,-41.47149914005007,0 173.2591977806299,-41.47144909977205,0 173.2591328213896,-41.47123117034095,0 173.2590301430479,-41.47114777068065,0 173.2590286345555,-41.47107057359706,0 173.259043385716,-41.47100385343896,0 173.2590287180291,-41.47096638649435,0 173.2590213416652,-41.4709611895683,0 173.2589640930993,-41.47091525687136,0 173.2588934345422,-41.47084811737274,0 173.2588792680682,-41.47084208271158,0 173.2588441483156,-41.4707761170354,0 173.2587854755891,-41.47068307828585,0 173.2587610833226,-41.4706485444001,0 173.2587346801972,-41.47062482402122,0 173.2586301579552,-41.47056254619591,0 173.2585218645247,-41.47049238979832,0 173.2584322618869,-41.47044779779119,0 173.2582698199392,-41.47036079358312,0 173.2581547363642,-41.47025065522021,0 173.2581479473451,-41.47022441992939,0 173.2580426712831,-41.47016532740782,0 173.2579244855542,-41.47009508723928,0 173.2578511444193,-41.4700114360686,0 173.2578546643665,-41.46999366630872,0 173.257799931229,-41.46992627604519,0 173.2577472930909,-41.46986198684722,0 173.2576929783017,-41.46980582793601,0 173.2576470444848,-41.46975486555962,0 173.2575850188109,-41.46969057659172,0 173.2575039660169,-41.46963684913147,0 173.2574154526721,-41.46960164510136,0 173.2573548515888,-41.46956317188879,0 173.2572588791105,-41.46947717316706,0 173.2571758983235,-41.46940969895053,0 173.257128875908,-41.46937189694591,0 173.2570974434417,-41.46933619034867,0 173.2570608983504,-41.4693125525928,0 173.2569775827189,-41.46922538139722,0 173.2569135445282,-41.46915002814811,0 173.2568892369136,-41.46911348319553,0 173.2568597328959,-41.46902379663275,0 173.256816650083,-41.46894693462022,0 173.2567767516358,-41.46889555307989,0 173.2567407933628,-41.46883327537828,0 173.2567279692306,-41.46882036743868,0 173.256712798394,-41.46877753644287,0 173.2566778460425,-41.46873252563577,0 173.2566449888865,-41.46868432959916,0 173.256634175915,-41.46867091814761,0 173.2565408855643,-41.46865289687758,0 173.256444158005,-41.46860654562462,0 173.2563879998399,-41.46856798812721,0 173.2563067781658,-41.46852155265685,0 173.2562544751469,-41.46849213271102,0 173.2562098837978,-41.46847654188697,0 173.2561150843841,-41.46845868846952,0 173.2560272416979,-41.46841954469049,0 173.2559344544208,-41.46837461823126,0 173.2558539886216,-41.46834637138282,0 173.2558005953612,-41.46833472003931,0 173.2557481247033,-41.46830429410171,0 173.2556836679894,-41.46827026295961,0 173.255651229759,-41.46825651666082,0 173.2555848455057,-41.46820765080391,0 173.2555202213906,-41.46815777846447,0 173.2554463763675,-41.46809726079527,0 173.2553143613456,-41.46807479734783,0 173.2552278600147,-41.46806473877821,0 173.2551274449049,-41.46801662732041,0 173.2550424523942,-41.46800254522461,0 173.2549387685318,-41.46799089417397,0 173.2548249423958,-41.46798192541507,0 173.254725952161,-41.46797832187782,0 173.2546775885481,-41.46794663791727,0 173.2545970384703,-41.46791126634901,0 173.2545467471156,-41.46790749451696,0 173.254506429279,-41.4679047283519,0 173.254456389738,-41.46790011822254,0 173.2544213532455,-41.46785879547751,0 173.2543901729538,-41.4678576223038,0 173.2543497714332,-41.46784538489065,0 173.2542940325434,-41.46784437858225,0 173.254251535426,-41.46781898131351,0 173.2542237917813,-41.46775058567469,0 173.2541974726114,-41.46771697382624,0 173.2541931983385,-41.46771445937169,0 173.2541648676145,-41.46770054504286,0 173.2541305849356,-41.467665424907,0 173.254088172946,-41.46761546935371,0 173.2541009968929,-41.46757699614321,0 173.2540384681951,-41.46754623494235,0 173.2539911941011,-41.46751002471957,0 173.2539808837491,-41.46749602731992,0 173.2539301735276,-41.46749653019599,0 173.2539108950479,-41.46750591712355,0 173.2538861684093,-41.46751455134135,0 173.2538248968849,-41.467521759238,0 173.2538232206793,-41.4675273755088,0 173.2538234719515,-41.46752947099711,0 173.2537863406044,-41.46749435073342,0 173.2537921234346,-41.46740005382991,0 173.2537576748445,-41.46735177399767,0 173.2537552436061,-41.4673007284833,0 173.2536503863666,-41.467235936442,0 173.2536339577194,-41.46723233183652,0 173.2535273400258,-41.46715362608585,0 173.2534168661444,-41.46710065233153,0 173.2533748729794,-41.46705899419598,0 173.2533486369967,-41.46704164409633,0 173.2533174565551,-41.46701817437641,0 173.2532583644922,-41.46696218329408,0 173.2532512399886,-41.46695623241232,0 173.2532287760864,-41.4669363671962,0 173.2532003617415,-41.46679647307931,0 173.2531603803076,-41.46670728958991,0 173.2531162914298,-41.46664056991251,0 173.2530866186227,-41.46658868626907,0 173.2530516668475,-41.46652531886571,0 173.2530486493701,-41.46651769075029,0 173.2530281968825,-41.46648349284351,0 173.2529530951672,-41.46641559917626,0 173.2529458867038,-41.46640989977059,0 173.2529057379717,-41.46635332188551,0 173.2528759818369,-41.4663030308956,0 173.2528121957251,-41.46625206887176,0 173.252792162253,-41.46619959829331,0 173.2527875530375,-41.46618048731,0 173.2527993716849,-41.46611368336189,0 173.2528129498388,-41.46606054171436,0 173.2528306361705,-41.4660097474012,0 173.2528340728306,-41.46597085538708,0 173.2528364194285,-41.4658190594933,0 173.2529184776177,-41.46563759151615,0 173.2529227532201,-41.46560875722386,0 173.2529223338343,-41.46559174208203,0 173.2529154610014,-41.46550104989273,0 173.2529109338046,-41.46548948340946,0 173.2529079169761,-41.4652930950694,0 173.2529214958614,-41.46521832820137,0 173.2529252671918,-41.46518915993691,0 173.2529736311313,-41.46515512864681,0 173.2530108462852,-41.46510383196646,0 173.2530262696095,-41.46502579581135,0 173.2530248444452,-41.4648575713063,0 173.2530267725295,-41.4648428190879,0 173.2530574496047,-41.46460929975898,0 173.2531291990792,-41.46442263442427,0 173.2531353178383,-41.46420084911993,0 173.2531046395871,-41.46403731881032,0 173.2530800811457,-41.46393799309688,0 173.253068933809,-41.46387822943959,0 173.2530677592663,-41.4638040498559,0 173.2530635686817,-41.46380203869339,0 173.2530517500723,-41.4638024574203,0 173.2529968486334,-41.46368636791296,0 173.2529958430089,-41.46364823056653,0 173.2529689372502,-41.4636106798222,0 173.2529596333099,-41.46358243204373,0 173.2529502450819,-41.46351554497414,0 173.2529027203606,-41.46346785206294,0 173.2529019656369,-41.46345729062688,0 173.2528782445166,-41.46338872633569,0 173.2528403585586,-41.46332074984132,0 173.2527635808612,-41.46313727003415,0 173.2527539409533,-41.46311497332751,0 173.2527530192969,-41.46311044728306,0 173.2527112356282,-41.46310654965836,0 173.252715049562,-41.46310038915562,0 173.2527158879998,-41.46309242648809,0 173.2527130379411,-41.46308438004257,0 173.2527063317696,-41.46305898280876,0 173.252646233746,-41.46297290041957,0 173.2526330740041,-41.46294582664828,0 173.2526404499567,-41.46294172014171,0 173.2526623273854,-41.46293182959509,0 173.2527224251427,-41.46291607136786,0 173.2527337409534,-41.46290986826434,0 173.2527688615063,-41.46286988696139,0 173.2527738898268,-41.46287055778274,0 173.2527710405998,-41.46285748154634,0 173.2527307239613,-41.46283384437117,0 173.2526454796916,-41.46275857487835,0 173.2525865543888,-41.46270367384833,0 173.2525848788935,-41.46267182249259,0 173.2525836209744,-41.46266117748809,0 173.2525037418451,-41.46258842271102,0 173.252474656217,-41.46252832454303,0 173.252458395115,-41.46250862659802,0 173.2523761689905,-41.46236722439726,0 173.2523745764436,-41.46235859059731,0 173.2523502683613,-41.46235087945714,0 173.2523243693904,-41.46227904648918,0 173.2522896672968,-41.46223512545907,0 173.2522477579385,-41.46220235168813,0 173.2522636841302,-41.46214988138802,0 173.2522702216659,-41.46214728279854,0 173.2522903386888,-41.46212473613731,0 173.2523236979954,-41.46208978321531,0 173.2522887457439,-41.46207243306013,0 173.2522882427812,-41.46205265098427,0 173.2523009836267,-41.462004790499,0 173.2522979652888,-41.46196874819101,0 173.2522982173013,-41.46195776839522,0 173.2523030788035,-41.46195156597196,0 173.2522986362613,-41.4619484645254,0 173.2522293186287,-41.46191652910397,0 173.2522367780309,-41.46189968132855,0 173.2522714785665,-41.46179742231995,0 173.2523079408632,-41.46174377832875,0 173.2523086948072,-41.46170597578638,0 173.2523037498072,-41.46169155931546,0 173.2522432322529,-41.46158234273823,0 173.2521737462446,-41.46151889129595,0 173.2521724890682,-41.46148368732368,0 173.2521570656321,-41.46146499633633,0 173.2521460862898,-41.46143188719972,0 173.252122029137,-41.46137354968486,0 173.2519558167888,-41.46127548164628,0 173.2519131528038,-41.46122418366846,0 173.2519225406584,-41.46122636364211,0 173.2518855762251,-41.46119635592169,0 173.2518600949869,-41.46118705201418,0 173.2518467684183,-41.46118755498473,0 173.2518332731118,-41.46120046345926,0 173.2518269862087,-41.46120809036542,0 173.2518178500494,-41.46120566032562,0 173.2518171795462,-41.46119576974923,0 173.251817850575,-41.46119434419703,0 173.2518064514513,-41.4611702884839,0 173.2518008348221,-41.46116484043148,0 173.2517984887301,-41.4611576314567,0 173.2518084624204,-41.46114472348766,0 173.2517798803994,-41.46106341946164,0 173.2517800485227,-41.46104992405083,0 173.2517924532148,-41.46103584248724,0 173.2517759411354,-41.46100063857106,0 173.2517389770669,-41.46100256690323,0 173.251731935307,-41.46100851736005,0 173.2517195308671,-41.4609839585174,0 173.2516784594651,-41.46097406806874,0 173.251634454052,-41.46098638932359,0 173.2516326943106,-41.46097473836249,0 173.2516379745688,-41.46093282930377,0 173.2516313531993,-41.46091061687013,0 173.2516571697762,-41.4608697969296,0 173.2516272462498,-41.46087566412344,0 173.2515769539466,-41.46085563154013,0 173.251593634606,-41.46081397407789,0 173.2515852531112,-41.46080416702403,0 173.2515529823925,-41.46079477881666,0 173.2515376436187,-41.4607910913551,0 173.2515016846019,-41.46077357291662,0 173.2514571769068,-41.46074356533339,0 173.2514168606789,-41.46072856227762,0 173.251418536007,-41.46071464832519,0 173.2514224762066,-41.46068723888445,0 173.2514141783873,-41.46068606622563,0 173.2513472899534,-41.46067776785701,0 173.2513121699459,-41.46067097816589,0 173.2512856835125,-41.46067634324866,0 173.2511992661696,-41.46066796134712,0 173.2511778926859,-41.46065874109623,0 173.2511179618443,-41.46061582507245,0 173.2511129325234,-41.46059528993028,0 173.2510594557035,-41.46054457910307,0 173.2509445396235,-41.46047299769046,0 173.2509241714212,-41.4604530490597,0 173.2508702763346,-41.46040963062897,0 173.2507484866135,-41.4602983192918,0 173.2507404405831,-41.46029597236132,0 173.2507067455731,-41.4602810519029,0 173.2505866328347,-41.46022388805973,0 173.250579173333,-41.46021433203406,0 173.2505617383377,-41.46019857444722,0 173.2505413703472,-41.46018298358226,0 173.2505121176993,-41.46013411761275,0 173.2504805177501,-41.46013026185338,0 173.2504573838988,-41.46011936540005,0 173.2504390277405,-41.46010318825171,0 173.2502784306031,-41.45998726617533,0 173.250231659207,-41.45994653059253,0 173.2501914258872,-41.45990772188754,0 173.2501867318563,-41.45987276945774,0 173.2501377812669,-41.45973572581308,0 173.2501264659047,-41.45967839331485,0 173.2501002304877,-41.45959692161047,0 173.2500709773828,-41.45950757038448,0 173.2499382928404,-41.45934437428549,0 173.2498367879334,-41.45915846364746,0 173.2498127313659,-41.45911948815812,0 173.2497511249858,-41.45901999528596,0 173.2497172617029,-41.45898344968065,0 173.2496630311229,-41.45893944500977,0 173.2495892704693,-41.45889552412738,0 173.2495644593646,-41.45886861758203,0 173.2495155927254,-41.45884322062878,0 173.2494906985918,-41.4588305641234,0 173.2494596854625,-41.45883592869991,0 173.2493887753583,-41.45880214936337,0 173.2493527323263,-41.45877507616036,0 173.249309734056,-41.45874339176881,0 173.2492813183823,-41.45874414692353,0 173.2492537427245,-41.45870097964491,0 173.2492265853564,-41.4586557172067,0 173.2492071387577,-41.4586381991974,0 173.2491307802417,-41.45862394987518,0 173.2490669937143,-41.4585748322353,0 173.249051068564,-41.45857106014259,0 173.2490137679255,-41.45855446439072,0 173.2489620519037,-41.45851808690705,0 173.2489167896345,-41.45849419785774,0 173.2488807476098,-41.45844943916531,0 173.2488024603944,-41.45839445372973,0 173.2487605508471,-41.45837869565647,0 173.2487334777506,-41.45836696066196,0 173.2486734638124,-41.45837215803491,0 173.2486584596238,-41.45837123567286,0 173.248605821779,-41.4583655359938,0 173.2485482379795,-41.45831038314363,0 173.2484950963754,-41.45827777726845,0 173.2484661793366,-41.45828766782474,0 173.248450672538,-41.45829026665572,0 173.2484364230287,-41.4582881707556,0 173.2484349975823,-41.4582735861757,0 173.2484212520277,-41.45826235466951,0 173.248407170128,-41.45824299281411,0 173.2483958545465,-41.45822279178287,0 173.2483556214488,-41.45820795591249,0 173.2483316492009,-41.45819546740987,0 173.2482269590392,-41.45820376498804,0 173.2481831213767,-41.45819412605584,0 173.2481401231625,-41.45818859362546,0 173.2481040808845,-41.45819479646963,0 173.2480480891482,-41.45816923140011,0 173.2479675396952,-41.45815473092453,0 173.2479102915563,-41.4581702373353,0 173.2478488513434,-41.45814358319686,0 173.2478261366994,-41.458124556028,0 173.2477828863674,-41.45812857917384,0 173.2477358634464,-41.45817233264125,0 173.2477310857837,-41.45817543430491,0 173.2476851534778,-41.45819429405051,0 173.2476523802724,-41.45820309468895,0 173.2476102188439,-41.45817987671575,0 173.247542325879,-41.45817803307218,0 173.2474544834475,-41.45815347393098,0 173.2473967313448,-41.45813344114058,0 173.2473727600402,-41.45812681902621,0 173.247291538478,-41.45813738021418,0 173.2472821508061,-41.45813729680891,0 173.2472448518062,-41.45809446520548,0 173.2472013501473,-41.45808055111604,0 173.2471753654264,-41.45809077732906,0 173.2470874394273,-41.45811826978129,0 173.2469553407635,-41.45809354318998,0 173.2468960804171,-41.45807862334873,0 173.2467728663109,-41.45806462523617,0 173.2467462963806,-41.45806009920869,0 173.2467284425369,-41.45805632732737,0 173.2466121856738,-41.45801274156845,0 173.2465786577365,-41.45801165237113,0 173.2465221635325,-41.45799706778795,0 173.2463893942766,-41.45795163732326,0 173.2462800951044,-41.45797309486399,0 173.2459906671474,-41.45803964729991,0 173.2456619297893,-41.45811718024692,0 173.2454887588147,-41.45814844478333,0 173.2453394778676,-41.45819949084479,0 173.2452675603001,-41.45822363029816,0 173.2452138324946,-41.45822472034856,0 173.244949886336,-41.45825732599334,0 173.244630423146,-41.45829377874142,0 - - -
- - State Highway 63 Tophouse - - - - - - - - - - - - - - -
State Highway 63 Tophouse
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSroad
LENGTH (KM)10.151
NAMEState Highway 63 Tophouse
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1931.178
Tokm1941.329
categoryRoad Shoulder
CycleUnsuitable
walkidWaiau Pass Track
GuidebookNelson Marlborough
colourred
mapNamemap087
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/waiau-track
-
- - -]]>
- #LineStyle1810 - - - 0clampToGround - 172.8478132424759,-41.80139550954961,0 172.8480945506378,-41.80119974890125,0 172.8522561658121,-41.80096877031738,0 172.8561274657162,-41.80085519439153,0 172.8568759720628,-41.80083279228736,0 172.8681903726171,-41.79912460472307,0 172.8777231650447,-41.79377624060123,0 172.8855241157423,-41.7879542540778,0 172.8936828004954,-41.78538703969073,0 172.9039021276966,-41.78209340081093,0 172.9067730885931,-41.78070058134026,0 172.9074158580573,-41.78054557344861,0 172.9089216610132,-41.78018242179252,0 172.9097151273252,-41.77990810991567,0 172.9122615437188,-41.77863760518626,0 172.9149509392897,-41.77767277484009,0 172.916594354199,-41.77755700913043,0 172.9186603188081,-41.77724192704548,0 172.9200454274105,-41.77703058230575,0 172.9215149994671,-41.77680632919859,0 172.9262149314574,-41.7761014974707,0 172.9284484655919,-41.77545933159594,0 172.9331243341111,-41.77373766679024,0 172.934770518815,-41.77344544990338,0 172.9377815048224,-41.77263029991443,0 172.9388295545696,-41.77258989063846,0 172.9390566568503,-41.7725811331026,0 172.9397990135381,-41.77215854105543,0 172.9404881081715,-41.77180306668669,0 172.9409478299166,-41.77132833004846,0 172.9412015638093,-41.77110429148554,0 172.9418849219848,-41.77063550182501,0 172.9435475806634,-41.76965027587076,0 172.9457636057014,-41.76913659052995,0 172.9482087448919,-41.76868016066832,0 172.9499660895334,-41.76845216033681,0 172.9516468948915,-41.76839568523275,0 172.9534800391292,-41.76896838973074,0 172.9544730631698,-41.76919756655239,0 172.95640173284,-41.76899270655951,0 172.9578235500016,-41.76892866647562,0 - - -
- - Black Valley Walk - - - - - - - - - - - - - - -
Black Valley Walk
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
STATUSopen
LENGTH (KM)0.717
NAMEBlack Valley Walk
ISLANDSouth
LEGALSTATDOC
TA_NAMETasman District
Fromkm1941.329
Tokm1942.046
categoryWalking Track
CycleProhibited
walkidWaiau Pass Track
GuidebookNelson Marlborough
colourred
mapNamemap087
TATRegionMarlborough
linkhttp://www.teararoa.org.nz/nelsonmarlborough/waiau-track
-
- - -]]>
- #LineStyle180 - - - 0clampToGround - 172.8461086180558,-41.80612591417846,0 172.8462646618092,-41.80606129631991,0 172.8463920669651,-41.80600094712071,0 172.8465196397583,-41.80587429590025,0 172.8466322926813,-41.80572006959482,0 172.8466589471208,-41.80555922087928,0 172.8465564365859,-41.80546224195516,0 172.8464419391157,-41.80538328427617,0 172.8463840204722,-41.80520374385314,0 172.8465083238586,-41.80511975697745,0 172.8465936514388,-41.80507206465856,0 172.8467076455609,-41.80499235201631,0 172.8468329558066,-41.8048340180863,0 172.8469302690275,-41.80469881804751,0 172.8470167703093,-41.80453436509694,0 172.8470706654762,-41.80435918370118,0 172.8469324490345,-41.80432305729333,0 172.8469030282502,-41.80423664032622,0 172.8468999263741,-41.80421275150191,0 172.8469413336123,-41.80407394708924,0 172.8470527291689,-41.80395517549267,0 172.8471821447675,-41.80385015078308,0 172.8472762743507,-41.80374579597834,0 172.8473768573136,-41.8036332263009,0 172.8474795355459,-41.80352275343265,0 172.8475018316344,-41.80339543253305,0 172.8475033398333,-41.80337162730323,0 172.847514320299,-41.80331186439778,0 172.847526892485,-41.8032585552944,0 172.8475327598723,-41.80322393847613,0 172.8475493562248,-41.80306702928973,0 172.8475800347298,-41.80290123539068,0 172.8477236166044,-41.80273326198668,0 172.8479361816222,-41.80259018314212,0 172.8481900691383,-41.80253494589463,0 172.848203480541,-41.80252715096513,0 172.8484598824538,-41.80243503378379,0 172.848630370283,-41.80241768324146,0 172.8486900500898,-41.80239362677443,0 172.8487665764648,-41.80236134836759,0 172.8487604574795,-41.8023450962305,0 172.8487539198887,-41.802249374101,0 172.8487561827148,-41.80223923252071,0 172.8487357313766,-41.80212389739467,0 172.8487323787803,-41.80210093059776,0 172.8487011980893,-41.80197503506323,0 172.8486611322621,-41.80188819827365,0 172.8485019866013,-41.80184104234643,0 172.8484113513527,-41.80181418647639,0 172.8482247707949,-41.80175408786383,0 172.848174478829,-41.80177889867721,0 172.8479966982339,-41.80176808579085,0 172.8478891587024,-41.80170069556372,0 172.8478500991317,-41.80161645742917,0 172.8478193382032,-41.80159634013292,0 172.8476971288973,-41.80153364364249,0 172.8477288969501,-41.80144814830044,0 172.8477891627371,-41.80140665826531,0 172.8478132424759,-41.80139550954961,0 - - -
-
-
- - - -
-
\ No newline at end of file diff --git a/masks/messages.html b/masks/messages.html index ee099ae..b59b120 100755 --- a/masks/messages.html +++ b/masks/messages.html @@ -65,7 +65,6 @@ oSpot.pageInit = function(asHash) { mouseover: function(marker, event, context) { - console.log('over'); var map = $(this).gmap3("get"), infowindow = $(this).gmap3({get:{name:"infowindow"}}); if(infowindow) { diff --git a/masks/upload.html b/masks/upload.html new file mode 100644 index 0000000..c28cd14 --- /dev/null +++ b/masks/upload.html @@ -0,0 +1,28 @@ +
+ +
+
+
+
+ \ No newline at end of file diff --git a/script/jquery.mods.js b/script/jquery.mods.js index e589354..2aa2b64 100755 --- a/script/jquery.mods.js +++ b/script/jquery.mods.js @@ -1,2 +1,11 @@ /* Gmap3 - v6.0.0 - http://gmap3.net - Licensed under GPL v3 */ !function(t,n){function e(t){return"object"==typeof t}function o(t){return"string"==typeof t}function i(t){return"number"==typeof t}function a(t){return t===n}function r(){q=google.maps,A||(A={verbose:!1,queryLimit:{attempt:5,delay:250,random:250},classes:function(){var n={};return t.each("Map Marker InfoWindow Circle Rectangle OverlayView StreetViewPanorama KmlLayer TrafficLayer BicyclingLayer GroundOverlay StyledMapType ImageMapType".split(" "),function(t,e){n[e]=q[e]}),n}(),map:{mapTypeId:q.MapTypeId.ROADMAP,center:[46.578498,2.457275],zoom:2},overlay:{pane:"floatPane",content:"",offset:{x:0,y:0}},geoloc:{getCurrentPosition:{maximumAge:6e4,timeout:5e3}}})}function s(t,n){return a(t)?"gmap3_"+(n?Z+1:++Z):t}function u(t){var n,e=q.version.split(".");for(t=t.split("."),n=0;n=0)return!0;return!1}return t.inArray(o,n)>=0}):void 0}function m(t,n,e){var i=n?t:null;return!t||o(t)?i:t.latLng?m(t.latLng):t instanceof q.LatLng?t:g(t.lat)?new q.LatLng(t.lat,t.lng):!e&&R(t)&&g(t[0])&&g(t[1])?new q.LatLng(t[0],t[1]):i}function y(t){var n,e;return!t||t instanceof q.LatLngBounds?t||null:(R(t)?2===t.length?(n=m(t[0]),e=m(t[1])):4===t.length&&(n=m([t[0],t[1]]),e=m([t[2],t[3]])):"ne"in t&&"sw"in t?(n=m(t.ne),e=m(t.sw)):"n"in t&&"e"in t&&"s"in t&&"w"in t&&(n=m([t.n,t.e]),e=m([t.s,t.w])),n&&e?new q.LatLngBounds(e,n):null)}function w(t,n,e,i,a){var r=e?m(i.td,!1,!0):!1,s=r?{latLng:r}:i.td.address?o(i.td.address)?{address:i.td.address}:i.td.address:!1,u=s?G.get(s):!1,l=this;s?(a=a||0,u?(i.latLng=u.results[0].geometry.location,i.results=u.results,i.status=u.status,n.apply(t,[i])):(s.location&&(s.location=m(s.location)),s.bounds&&(s.bounds=y(s.bounds)),M().geocode(s,function(o,r){r===q.GeocoderStatus.OK?(G.store(s,{results:o,status:r}),i.latLng=o[0].geometry.location,i.results=o,i.status=r,n.apply(t,[i])):r===q.GeocoderStatus.OVER_QUERY_LIMIT&&a=n.length?void o.apply(e,[i]):void w(r,function(e){delete e.td,t.extend(n[s],e),a.apply(r,[])},!0,{td:n[s]})}var r=this,s=-1;a()}function b(t,n,e){var o=!1;navigator&&navigator.geolocation?navigator.geolocation.getCurrentPosition(function(i){o||(o=!0,e.latLng=new q.LatLng(i.coords.latitude,i.coords.longitude),n.apply(t,[e]))},function(){o||(o=!0,e.latLng=!1,n.apply(t,[e]))},e.opts.getCurrentPosition):(e.latLng=!1,n.apply(t,[e]))}function x(t){var n,o=!1;if(e(t)&&t.hasOwnProperty("get")){for(n in t)if("get"!==n)return!1;o=!t.get.hasOwnProperty("callback")}return o}function M(){return V.geocoder||(V.geocoder=new q.Geocoder),V.geocoder}function I(){var t=[];this.get=function(n){if(t.length){var o,i,a,r,s,u=d(n);for(o=0;o=0&&(s=o[t][a],!n(i[s].tag));a--);else for(a=0;a=0||!n.length))for(s in o.clusterer)i[o.clusterer[s]].obj.clear(e,a,r)}}function B(n,e,i){function a(t){var n={};return n[t]={},n}function r(){var t;for(t in i)if(i.hasOwnProperty(t)&&!u.hasOwnProperty(t))return t}var s,u={},l=this,d={latLng:{map:!1,marker:!1,infowindow:!1,circle:!1,overlay:!1,getlatlng:!1,getmaxzoom:!1,getelevation:!1,streetviewpanorama:!1,getaddress:!0},geoloc:{getgeoloc:!0}};o(i)&&(i=a(i)),l.run=function(){for(var o,a;o=r();){if(z(n[o]))return s=o,a=t.extend(!0,{},A[o]||{},i[o].options||{}),void(o in d.latLng?i[o].values?L(i[o].values,n,n[o],{td:i[o],opts:a,session:u}):w(n,n[o],d.latLng[o],{td:i[o],opts:a,session:u}):o in d.geoloc?b(n,n[o],{td:i[o],opts:a,session:u}):n[o].apply(n,[{td:i[o],opts:a,session:u}]));u[o]=null}e.apply(n,[i,u])},l.ack=function(t){u[s]=t,l.run.apply(l,[])}}function j(){return V.ds||(V.ds=new q.DirectionsService),V.ds}function O(){return V.dms||(V.dms=new q.DistanceMatrixService),V.dms}function C(){return V.mzs||(V.mzs=new q.MaxZoomService),V.mzs}function E(){return V.es||(V.es=new q.ElevationService),V.es}function S(t){function n(){var t=this;return t.onAdd=function(){},t.onRemove=function(){},t.draw=function(){},A.classes.OverlayView.apply(t,[])}n.prototype=A.classes.OverlayView.prototype;var e=new n;return e.setMap(t),e}function T(n,o,i){function a(t){T[t]||(delete _[t].options.map,T[t]=new A.classes.Marker(_[t].options),l(n,{td:_[t]},T[t],_[t].id))}function r(){return(y=U.getProjection())?(P=!0,j.push(q.event.addListener(o,"zoom_changed",f)),j.push(q.event.addListener(o,"bounds_changed",f)),void h()):void setTimeout(function(){r.apply(B,[])},25)}function u(t){e(O[t])?(z(O[t].obj.setMap)&&O[t].obj.setMap(null),z(O[t].obj.remove)&&O[t].obj.remove(),z(O[t].shadow.remove)&&O[t].obj.remove(),z(O[t].shadow.setMap)&&O[t].shadow.setMap(null),delete O[t].obj,delete O[t].shadow):T[t]&&T[t].setMap(null),delete O[t]}function d(){var t,n,e,o,i,a,r,s,u=Math.cos,l=Math.sin,d=arguments;return d[0]instanceof q.LatLng?(t=d[0].lat(),e=d[0].lng(),d[1]instanceof q.LatLng?(n=d[1].lat(),o=d[1].lng()):(n=d[1],o=d[2])):(t=d[0],e=d[1],d[2]instanceof q.LatLng?(n=d[2].lat(),o=d[2].lng()):(n=d[2],o=d[3])),i=Math.PI*t/180,a=Math.PI*e/180,r=Math.PI*n/180,s=Math.PI*o/180,6371e3*Math.acos(Math.min(u(i)*u(r)*u(a)*u(s)+u(i)*l(a)*u(r)*l(s)+l(i)*l(r),1))}function c(){var t=d(o.getCenter(),o.getBounds().getNorthEast()),n=new q.Circle({center:o.getCenter(),radius:1.25*t});return n.getBounds()}function p(){var t,n={};for(t in O)n[t]=!0;return n}function f(){clearTimeout(m),m=setTimeout(h,25)}function g(t){var n=y.fromLatLngToDivPixel(t),e=y.fromDivPixelToLatLng(new q.Point(n.x+i.radius,n.y-i.radius)),o=y.fromDivPixelToLatLng(new q.Point(n.x-i.radius,n.y+i.radius));return new q.LatLngBounds(o,e)}function h(){if(!x&&!I&&P){var n,e,a,r,s,l,d,f,h,v,m,y=!1,b=[],B={},j=o.getZoom(),C="maxZoom"in i&&j>i.maxZoom,E=p();for(M=!1,j>3&&(s=c(),y=s.getSouthWest().lng()1&&m)}else for(e=n;en}),o=s.calculator?function(n){var e=[];return t.each(n,function(t,n){e.push(r.value(n))}),s.calculator.apply(i,[e])}:function(t){return t.length},r.error(function(){f.apply(x,arguments)}),r.display(function(a){var c,p,f,g,h,v,y=o(a.indexes);if(e.force||y>1)for(c=0;cn.td.maxZoom&&this.setZoom(n.td.maxZoom)}),S.fitBounds(e)),g(n,!0)},x.clear=function(n){if(o(n.td)){if(I.clearById(n.td)||I.objClearById(n.td))return void g(n,!0);n.td={name:n.td}}n.td.id?t.each(h(n.td.id),function(t,n){I.clearById(n)||I.objClearById(n)}):(I.clear(h(n.td.name),n.td.last,n.td.first,n.td.tag),I.objClear(h(n.td.name),n.td.last,n.td.first,n.td.tag)),g(n,!0)},x.get=function(e,i,a){var r,s,u=i?e:e.td;return i||(a=u.full),o(u)?(s=I.getById(u,!1,a)||I.objGetById(u),s===!1&&(r=u,u={})):r=u.name,"map"===r&&(s=S),s||(s=[],u.id?(t.each(h(u.id),function(t,n){s.push(I.getById(n,!1,a)||I.objGetById(n))}),R(u.id)||(s=s[0])):(t.each(r?h(r):[n],function(n,e){var o;u.first?(o=I.get(e,!1,u.tag,a),o&&s.push(o)):u.all?t.each(I.all(e,u.tag,a),function(t,n){s.push(n)}):(o=I.get(e,!0,u.tag,a),o&&s.push(o))}),u.all||R(r)||(s=s[0]))),s=R(s)||!u.all?s:[s],i?s:void g(e,s)},x.exec=function(n){t.each(h(n.td.func),function(e,o){t.each(x.get(n.td,!0,n.td.hasOwnProperty("full")?n.td.full:!0),function(t,n){o.call(i,n)})}),g(n,!0)},x.trigger=function(n){if(o(n.td))q.event.trigger(S,n.td);else{var e=[S,n.td.eventName];n.td.var_args&&t.each(n.td.var_args,function(t,n){e.push(n)}),q.event.trigger.apply(q.event,e)}c(n),b.ack()}}var A,q,Z=0,z=t.isFunction,R=t.isArray,V={},G=new I;t.fn.gmap3=function(){var n,e=[],o=!0,i=[];for(r(),n=0;nr;r++)for(n in o[r])s=o[r][n],o[r].hasOwnProperty(n)&&void 0!==s&&(t.isPlainObject(s)?e[n]=t.isPlainObject(e[n])?t.widget.extend({},e[n],s):t.widget.extend({},s):e[n]=s);return e},t.widget.bridge=function(e,n){var s=n.prototype.widgetFullName||e;t.fn[e]=function(o){var r="string"==typeof o,a=i.call(arguments,1),u=this;return r?this.each(function(){var i,n=t.data(this,s);return"instance"===o?(u=n,!1):n?t.isFunction(n[o])&&"_"!==o.charAt(0)?(i=n[o].apply(n,a),i!==n&&void 0!==i?(u=i&&i.jquery?u.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; attempted to call method '"+o+"'")}):(a.length&&(o=t.widget.extend.apply(null,[o].concat(a))),this.each(function(){var e=t.data(this,s);e?(e.option(o||{}),e._init&&e._init()):t.data(this,s,new n(o,this))})),u}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{disabled:!1,create:null},_createWidget:function(i,n){n=t(n||this.defaultElement||this)[0],this.element=t(n),this.uuid=e++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),n!==this&&(t.data(n,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===n&&this.destroy()}}),this.document=t(n.style?n.ownerDocument:n.document||n),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),i),this._create(),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:t.noop,_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){this._destroy(),this.element.unbind(this.eventNamespace).removeData(this.widgetFullName).removeData(t.camelCase(this.widgetFullName)),this.widget().unbind(this.eventNamespace).removeAttr("aria-disabled").removeClass(this.widgetFullName+"-disabled ui-state-disabled"),this.bindings.unbind(this.eventNamespace),this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus")},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var n,s,o,r=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(r={},n=e.split("."),e=n.shift(),n.length){for(s=r[e]=t.widget.extend({},this.options[e]),o=0;o'),n.attr("accept-charset",r.formAcceptCharset),o=/\?/.test(r.url)?"&":"?","DELETE"===r.type?(r.url=r.url+o+"_method=DELETE",r.type="POST"):"PUT"===r.type?(r.url=r.url+o+"_method=PUT",r.type="POST"):"PATCH"===r.type&&(r.url=r.url+o+"_method=PATCH",r.type="POST"),t+=1,a=e('').bind("load",function(){var t,o=e.isArray(r.paramName)?r.paramName:[r.paramName];a.unbind("load").bind("load",function(){var t;try{if(t=a.contents(),!t.length||!t[0].firstChild)throw new Error}catch(r){t=void 0}m(200,"success",{iframe:t}),e('').appendTo(n),window.setTimeout(function(){n.remove()},0)}),n.prop("target",a.prop("name")).prop("action",r.url).prop("method",r.type),r.formData&&e.each(r.formData,function(t,r){e('').prop("name",r.name).val(r.value).appendTo(n)}),r.fileInput&&r.fileInput.length&&"POST"===r.type&&(t=r.fileInput.clone(),r.fileInput.after(function(e){return t[e]}),r.paramName&&r.fileInput.each(function(t){e(this).prop("name",o[t]||r.paramName)}),n.append(r.fileInput).prop("enctype","multipart/form-data").prop("encoding","multipart/form-data"),r.fileInput.removeAttr("form")),n.submit(),t&&t.length&&r.fileInput.each(function(r,n){var a=e(t[r]);e(n).prop("name",a.prop("name")).attr("form",a.attr("form")),a.replaceWith(n)})}),n.append(a).appendTo(document.body)},abort:function(){a&&a.unbind("load").prop("src",i),n&&n.remove()}}}}),e.ajaxSetup({converters:{"iframe text":function(t){return t&&e(t[0].body).text()},"iframe json":function(t){return t&&e.parseJSON(e(t[0].body).text())},"iframe html":function(t){return t&&e(t[0].body).html()},"iframe xml":function(t){var r=t&&t[0];return r&&e.isXMLDoc(r)?r:e.parseXML(r.XMLDocument&&r.XMLDocument.xml||e(r.body).html())},"iframe script":function(t){return t&&e.globalEval(e(t[0].body).text())}}})}); + +/* FileUpload - v9.11.2 - https://github.com/blueimp/jQuery-File-Upload/blob/master/js/jquery.fileupload.js */ +!function(e){"use strict";"function"==typeof define&&define.amd?define(["jquery","jquery.ui.widget"],e):"object"==typeof exports?e(require("jquery"),require("./vendor/jquery.ui.widget")):e(window.jQuery)}(function(e){"use strict";function t(t){var i="dragover"===t;return function(r){r.dataTransfer=r.originalEvent&&r.originalEvent.dataTransfer;var n=r.dataTransfer;n&&-1!==e.inArray("Files",n.types)&&this._trigger(t,e.Event(t,{delegatedEvent:r}))!==!1&&(r.preventDefault(),i&&(n.dropEffect="copy"))}}e.support.fileInput=!(new RegExp("(Android (1\\.[0156]|2\\.[01]))|(Windows Phone (OS 7|8\\.0))|(XBLWP)|(ZuneWP)|(WPDesktop)|(w(eb)?OSBrowser)|(webOS)|(Kindle/(1\\.0|2\\.[05]|3\\.0))").test(window.navigator.userAgent)||e('').prop("disabled")),e.support.xhrFileUpload=!(!window.ProgressEvent||!window.FileReader),e.support.xhrFormDataFileUpload=!!window.FormData,e.support.blobSlice=window.Blob&&(Blob.prototype.slice||Blob.prototype.webkitSlice||Blob.prototype.mozSlice),e.widget("blueimp.fileupload",{options:{dropZone:e(document),pasteZone:void 0,fileInput:void 0,replaceFileInput:!0,paramName:void 0,singleFileUploads:!0,limitMultiFileUploads:void 0,limitMultiFileUploadSize:void 0,limitMultiFileUploadSizeOverhead:512,sequentialUploads:!1,limitConcurrentUploads:void 0,forceIframeTransport:!1,redirect:void 0,redirectParamName:void 0,postMessage:void 0,multipart:!0,maxChunkSize:void 0,uploadedBytes:void 0,recalculateProgress:!0,progressInterval:100,bitrateInterval:500,autoUpload:!0,messages:{uploadedBytes:"Uploaded bytes exceed file size"},i18n:function(t,i){return t=this.messages[t]||t.toString(),i&&e.each(i,function(e,i){t=t.replace("{"+e+"}",i)}),t},formData:function(e){return e.serializeArray()},add:function(t,i){return t.isDefaultPrevented()?!1:void((i.autoUpload||i.autoUpload!==!1&&e(this).fileupload("option","autoUpload"))&&i.process().done(function(){i.submit()}))},processData:!1,contentType:!1,cache:!1,timeout:0},_specialOptions:["fileInput","dropZone","pasteZone","multipart","forceIframeTransport"],_blobSlice:e.support.blobSlice&&function(){var e=this.slice||this.webkitSlice||this.mozSlice;return e.apply(this,arguments)},_BitrateTimer:function(){this.timestamp=Date.now?Date.now():(new Date).getTime(),this.loaded=0,this.bitrate=0,this.getBitrate=function(e,t,i){var r=e-this.timestamp;return(!this.bitrate||!i||r>i)&&(this.bitrate=(t-this.loaded)*(1e3/r)*8,this.loaded=t,this.timestamp=e),this.bitrate}},_isXHRUpload:function(t){return!t.forceIframeTransport&&(!t.multipart&&e.support.xhrFileUpload||e.support.xhrFormDataFileUpload)},_getFormData:function(t){var i;return"function"===e.type(t.formData)?t.formData(t.form):e.isArray(t.formData)?t.formData:"object"===e.type(t.formData)?(i=[],e.each(t.formData,function(e,t){i.push({name:e,value:t})}),i):[]},_getTotal:function(t){var i=0;return e.each(t,function(e,t){i+=t.size||1}),i},_initProgressObject:function(t){var i={loaded:0,total:0,bitrate:0};t._progress?e.extend(t._progress,i):t._progress=i},_initResponseObject:function(e){var t;if(e._response)for(t in e._response)e._response.hasOwnProperty(t)&&delete e._response[t];else e._response={}},_onProgress:function(t,i){if(t.lengthComputable){var r,n=Date.now?Date.now():(new Date).getTime();if(i._time&&i.progressInterval&&n-i._time").prop("href",t.url).prop("host");t.dataType="iframe "+(t.dataType||""),t.formData=this._getFormData(t),t.redirect&&i&&i!==location.host&&t.formData.push({name:t.redirectParamName||"redirect",value:t.redirect})},_initDataSettings:function(e){this._isXHRUpload(e)?(this._chunkedUpload(e,!0)||(e.data||this._initXHRData(e),this._initProgressListener(e)),e.postMessage&&(e.dataType="postmessage "+(e.dataType||""))):this._initIframeSettings(e)},_getParamName:function(t){var i=e(t.fileInput),r=t.paramName;return r?e.isArray(r)||(r=[r]):(r=[],i.each(function(){for(var t=e(this),i=t.prop("name")||"files[]",n=(t.prop("files")||[1]).length;n;)r.push(i),n-=1}),r.length||(r=[i.prop("name")||"files[]"])),r},_initFormSettings:function(t){t.form&&t.form.length||(t.form=e(t.fileInput.prop("form")),t.form.length||(t.form=e(this.options.fileInput.prop("form")))),t.paramName=this._getParamName(t),t.url||(t.url=t.form.prop("action")||location.href),t.type=(t.type||"string"===e.type(t.form.prop("method"))&&t.form.prop("method")||"").toUpperCase(),"POST"!==t.type&&"PUT"!==t.type&&"PATCH"!==t.type&&(t.type="POST"),t.formAcceptCharset||(t.formAcceptCharset=t.form.attr("accept-charset"))},_getAJAXSettings:function(t){var i=e.extend({},this.options,t);return this._initFormSettings(i),this._initDataSettings(i),i},_getDeferredState:function(e){return e.state?e.state():e.isResolved()?"resolved":e.isRejected()?"rejected":"pending"},_enhancePromise:function(e){return e.success=e.done,e.error=e.fail,e.complete=e.always,e},_getXHRPromise:function(t,i,r){var n=e.Deferred(),o=n.promise();return i=i||this.options.context||o,t===!0?n.resolveWith(i,r):t===!1&&n.rejectWith(i,r),o.abort=n.promise,this._enhancePromise(o)},_addConvenienceMethods:function(t,i){var r=this,n=function(t){return e.Deferred().resolveWith(r,t).promise()};i.process=function(t,o){return(t||o)&&(i._processQueue=this._processQueue=(this._processQueue||n([this])).pipe(function(){return i.errorThrown?e.Deferred().rejectWith(r,[i]).promise():n(arguments)}).pipe(t,o)),this._processQueue||n([this])},i.submit=function(){return"pending"!==this.state()&&(i.jqXHR=this.jqXHR=r._trigger("submit",e.Event("submit",{delegatedEvent:t}),this)!==!1&&r._onSend(t,this)),this.jqXHR||r._getXHRPromise()},i.abort=function(){return this.jqXHR?this.jqXHR.abort():(this.errorThrown="abort",r._trigger("fail",null,this),r._getXHRPromise(!1))},i.state=function(){return this.jqXHR?r._getDeferredState(this.jqXHR):this._processQueue?r._getDeferredState(this._processQueue):void 0},i.processing=function(){return!this.jqXHR&&this._processQueue&&"pending"===r._getDeferredState(this._processQueue)},i.progress=function(){return this._progress},i.response=function(){return this._response}},_getUploadedBytes:function(e){var t=e.getResponseHeader("Range"),i=t&&t.split("-"),r=i&&i.length>1&&parseInt(i[1],10);return r&&r+1},_chunkedUpload:function(t,i){t.uploadedBytes=t.uploadedBytes||0;var r,n,o=this,s=t.files[0],a=s.size,l=t.uploadedBytes,p=t.maxChunkSize||a,u=this._blobSlice,d=e.Deferred(),h=d.promise();return this._isXHRUpload(t)&&u&&(l||a>p)&&!t.data?i?!0:l>=a?(s.error=t.i18n("uploadedBytes"),this._getXHRPromise(!1,t.context,[null,"error",s.error])):(n=function(){var i=e.extend({},t),h=i._progress.loaded;i.blob=u.call(s,l,l+p,s.type),i.chunkSize=i.blob.size,i.contentRange="bytes "+l+"-"+(l+i.chunkSize-1)+"/"+a,o._initXHRData(i),o._initProgressListener(i),r=(o._trigger("chunksend",null,i)!==!1&&e.ajax(i)||o._getXHRPromise(!1,i.context)).done(function(r,s,p){l=o._getUploadedBytes(p)||l+i.chunkSize,h+i.chunkSize-i._progress.loaded&&o._onProgress(e.Event("progress",{lengthComputable:!0,loaded:l-i.uploadedBytes,total:l-i.uploadedBytes}),i),t.uploadedBytes=i.uploadedBytes=l,i.result=r,i.textStatus=s,i.jqXHR=p,o._trigger("chunkdone",null,i),o._trigger("chunkalways",null,i),a>l?n():d.resolveWith(i.context,[r,s,p])}).fail(function(e,t,r){i.jqXHR=e,i.textStatus=t,i.errorThrown=r,o._trigger("chunkfail",null,i),o._trigger("chunkalways",null,i),d.rejectWith(i.context,[e,t,r])})},this._enhancePromise(h),h.abort=function(){return r.abort()},n(),h):!1},_beforeSend:function(e,t){0===this._active&&(this._trigger("start"),this._bitrateTimer=new this._BitrateTimer,this._progress.loaded=this._progress.total=0,this._progress.bitrate=0),this._initResponseObject(t),this._initProgressObject(t),t._progress.loaded=t.loaded=t.uploadedBytes||0,t._progress.total=t.total=this._getTotal(t.files)||1,t._progress.bitrate=t.bitrate=0,this._active+=1,this._progress.loaded+=t.loaded,this._progress.total+=t.total},_onDone:function(t,i,r,n){var o=n._progress.total,s=n._response;n._progress.loadeda._sending)for(var r=a._slots.shift();r;){if("pending"===a._getDeferredState(r)){r.resolve();break}r=a._slots.shift()}0===a._active&&a._trigger("stop")})};return this._beforeSend(t,l),this.options.sequentialUploads||this.options.limitConcurrentUploads&&this.options.limitConcurrentUploads<=this._sending?(this.options.limitConcurrentUploads>1?(o=e.Deferred(),this._slots.push(o),s=o.pipe(p)):(this._sequence=this._sequence.pipe(p,p),s=this._sequence),s.abort=function(){return n=[void 0,"abort","abort"],r?r.abort():(o&&o.rejectWith(l.context,n),p())},this._enhancePromise(s)):p()},_onAdd:function(t,i){var r,n,o,s,a=this,l=!0,p=e.extend({},this.options,i),u=i.files,d=u.length,h=p.limitMultiFileUploads,c=p.limitMultiFileUploadSize,f=p.limitMultiFileUploadSizeOverhead,g=0,_=this._getParamName(p),m=0;if(!d)return!1;if(c&&void 0===u[0].size&&(c=void 0),(p.singleFileUploads||h||c)&&this._isXHRUpload(p))if(p.singleFileUploads||c||!h)if(!p.singleFileUploads&&c)for(o=[],r=[],s=0;d>s;s+=1)g+=u[s].size+f,(s+1===d||g+u[s+1].size+f>c||h&&s+1-m>=h)&&(o.push(u.slice(m,s+1)),n=_.slice(m,s+1),n.length||(n=_),r.push(n),m=s+1,g=0);else r=_;else for(o=[],r=[],s=0;d>s;s+=h)o.push(u.slice(s,s+h)),n=_.slice(s,s+h),n.length||(n=_),r.push(n);else o=[u],r=[_];return i.originalFiles=u,e.each(o||u,function(n,s){var p=e.extend({},i);return p.files=o?s:[s],p.paramName=r[n],a._initResponseObject(p),a._initProgressObject(p),a._addConvenienceMethods(t,p),l=a._trigger("add",e.Event("add",{delegatedEvent:t}),p)}),l},_replaceFileInput:function(t){var i=t.fileInput,r=i.clone(!0),n=i.is(document.activeElement);t.fileInputClone=r,e("
").append(r)[0].reset(),i.after(r).detach(),n&&r.focus(),e.cleanData(i.unbind("remove")),this.options.fileInput=this.options.fileInput.map(function(e,t){return t===i[0]?r[0]:t}),i[0]===this.element[0]&&(this.element=r)},_handleFileTreeEntry:function(t,i){var r,n=this,o=e.Deferred(),s=function(e){e&&!e.entry&&(e.entry=t),o.resolve([e])},a=function(e){n._handleFileTreeEntries(e,i+t.name+"/").done(function(e){o.resolve(e)}).fail(s)},l=function(){r.readEntries(function(e){e.length?(p=p.concat(e),l()):a(p)},s)},p=[];return i=i||"",t.isFile?t._file?(t._file.relativePath=i,o.resolve(t._file)):t.file(function(e){e.relativePath=i,o.resolve(e)},s):t.isDirectory?(r=t.createReader(),l()):o.resolve([]),o.promise()},_handleFileTreeEntries:function(t,i){var r=this;return e.when.apply(e,e.map(t,function(e){return r._handleFileTreeEntry(e,i)})).pipe(function(){return Array.prototype.concat.apply([],arguments)})},_getDroppedFiles:function(t){t=t||{};var i=t.items;return i&&i.length&&(i[0].webkitGetAsEntry||i[0].getAsEntry)?this._handleFileTreeEntries(e.map(i,function(e){var t;return e.webkitGetAsEntry?(t=e.webkitGetAsEntry(),t&&(t._file=e.getAsFile()),t):e.getAsEntry()})):e.Deferred().resolve(e.makeArray(t.files)).promise()},_getSingleFileInputFiles:function(t){t=e(t);var i,r,n=t.prop("webkitEntries")||t.prop("entries");if(n&&n.length)return this._handleFileTreeEntries(n);if(i=e.makeArray(t.prop("files")),i.length)void 0===i[0].name&&i[0].fileName&&e.each(i,function(e,t){t.name=t.fileName,t.size=t.fileSize});else{if(r=t.prop("value"),!r)return e.Deferred().resolve([]).promise();i=[{name:r.replace(/^.*\\/,"")}]}return e.Deferred().resolve(i).promise()},_getFileInputFiles:function(t){return t instanceof e&&1!==t.length?e.when.apply(e,e.map(t,this._getSingleFileInputFiles)).pipe(function(){return Array.prototype.concat.apply([],arguments)}):this._getSingleFileInputFiles(t)},_onChange:function(t){var i=this,r={fileInput:e(t.target),form:e(t.target.form)};this._getFileInputFiles(r.fileInput).always(function(n){r.files=n,i.options.replaceFileInput&&i._replaceFileInput(r),i._trigger("change",e.Event("change",{delegatedEvent:t}),r)!==!1&&i._onAdd(t,r)})},_onPaste:function(t){var i=t.originalEvent&&t.originalEvent.clipboardData&&t.originalEvent.clipboardData.items,r={files:[]};i&&i.length&&(e.each(i,function(e,t){var i=t.getAsFile&&t.getAsFile();i&&r.files.push(i)}),this._trigger("paste",e.Event("paste",{delegatedEvent:t}),r)!==!1&&this._onAdd(t,r))},_onDrop:function(t){t.dataTransfer=t.originalEvent&&t.originalEvent.dataTransfer;var i=this,r=t.dataTransfer,n={};r&&r.files&&r.files.length&&(t.preventDefault(),this._getDroppedFiles(r).always(function(r){n.files=r,i._trigger("drop",e.Event("drop",{delegatedEvent:t}),n)!==!1&&i._onAdd(t,n)}))},_onDragOver:t("dragover"),_onDragEnter:t("dragenter"),_onDragLeave:t("dragleave"),_initEventHandlers:function(){this._isXHRUpload(this.options)&&(this._on(this.options.dropZone,{dragover:this._onDragOver,drop:this._onDrop,dragenter:this._onDragEnter,dragleave:this._onDragLeave}),this._on(this.options.pasteZone,{paste:this._onPaste})),e.support.fileInput&&this._on(this.options.fileInput,{change:this._onChange})},_destroyEventHandlers:function(){this._off(this.options.dropZone,"dragenter dragleave dragover drop"),this._off(this.options.pasteZone,"paste"),this._off(this.options.fileInput,"change")},_setOption:function(t,i){var r=-1!==e.inArray(t,this._specialOptions);r&&this._destroyEventHandlers(),this._super(t,i),r&&(this._initSpecialOptions(),this._initEventHandlers())},_initSpecialOptions:function(){var t=this.options;void 0===t.fileInput?t.fileInput=this.element.is('input[type="file"]')?this.element:this.element.find('input[type="file"]'):t.fileInput instanceof e||(t.fileInput=e(t.fileInput)),t.dropZone instanceof e||(t.dropZone=e(t.dropZone)),t.pasteZone instanceof e||(t.pasteZone=e(t.pasteZone))},_getRegExp:function(e){var t=e.split("/"),i=t.pop();return t.shift(),new RegExp(t.join("/"),i)},_isRegExpOption:function(t,i){return"url"!==t&&"string"===e.type(i)&&/^\/.*\/[igm]{0,3}$/.test(i)},_initDataAttributes:function(){var t=this,i=this.options,r=this.element.data();e.each(this.element[0].attributes,function(e,n){var o,s=n.name.toLowerCase();/^data-/.test(s)&&(s=s.slice(5).replace(/-[a-z]/g,function(e){return e.charAt(1).toUpperCase()}),o=r[s],t._isRegExpOption(s,o)&&(o=t._getRegExp(o)),i[s]=o)})},_create:function(){this._initDataAttributes(),this._initSpecialOptions(),this._slots=[],this._sequence=this._getXHRPromise(!0),this._sending=this._active=0,this._initProgressObject(this),this._initEventHandlers()},active:function(){return this._active},progress:function(){return this._progress},add:function(t){var i=this;t&&!this.options.disabled&&(t.fileInput&&!t.files?this._getFileInputFiles(t.fileInput).always(function(e){t.files=e,i._onAdd(null,t)}):(t.files=e.makeArray(t.files),this._onAdd(null,t)))},send:function(t){if(t&&!this.options.disabled){if(t.fileInput&&!t.files){var i,r,n=this,o=e.Deferred(),s=o.promise();return s.abort=function(){return r=!0,i?i.abort():(o.reject(null,"abort","abort"),s)},this._getFileInputFiles(t.fileInput).always(function(e){if(!r){if(!e.length)return void o.reject();t.files=e,i=n._onSend(null,t),i.then(function(e,t,i){o.resolve(e,t,i)},function(e,t,i){o.reject(e,t,i)})}}),this._enhancePromise(s)}if(t.files=e.makeArray(t.files),t.files.length)return this._onSend(null,t)}return this._getXHRPromise(!1,t&&t.context)}})}); diff --git a/script/spot.js b/script/spot.js index 9d971c1..a876bfc 100755 --- a/script/spot.js +++ b/script/spot.js @@ -131,6 +131,17 @@ function Spot(asGlobals) /* Page Switch - DOM Replacement */ + this.getActionLink = function(sAction, oVars) + { + if(!oVars) oVars = {}; + sVars = ''; + for(i in oVars) + { + sVars += '&'+i+'='+oVars[i]; + } + return self.consts.process_page+'?a='+sAction+sVars; + }; + this.resetTmpFunctions = function() { self.pageInit = function(asHash){console.log('no init for the page: '+asHash.page)}; diff --git a/style/spot.scss b/style/spot.scss index aeb53e9..47a433d 100755 --- a/style/spot.scss +++ b/style/spot.scss @@ -43,3 +43,10 @@ .info-window .battery { text-transform: capitalize; } + +/* Upload */ + +.bar { + height: 18px; + background: green; +}