+
+ Read the Docs
+ v: ${config.versions.current.slug}
+
+
+
+
+ ${renderLanguages(config)}
+ ${renderVersions(config)}
+ ${renderDownloads(config)}
+
+ On Read the Docs
+
+ Project Home
+
+
+ Builds
+
+
+ Downloads
+
+
+
+ Search
+
+
+
+
+
+
+ Hosted by Read the Docs
+
+
+
+ `;
+
+ // Inject the generated flyout into the body HTML element.
+ document.body.insertAdjacentHTML("beforeend", flyout);
+
+ // Trigger the Read the Docs Addons Search modal when clicking on the "Search docs" input from inside the flyout.
+ document
+ .querySelector("#flyout-search-form")
+ .addEventListener("focusin", () => {
+ const event = new CustomEvent("readthedocs-search-show");
+ document.dispatchEvent(event);
+ });
+ })
+}
+
+if (themeLanguageSelector || themeVersionSelector) {
+ function onSelectorSwitch(event) {
+ const option = event.target.selectedIndex;
+ const item = event.target.options[option];
+ window.location.href = item.dataset.url;
+ }
+
+ document.addEventListener("readthedocs-addons-data-ready", function (event) {
+ const config = event.detail.data();
+
+ const versionSwitch = document.querySelector(
+ "div.switch-menus > div.version-switch",
+ );
+ if (themeVersionSelector) {
+ let versions = config.versions.active;
+ if (config.versions.current.hidden || config.versions.current.type === "external") {
+ versions.unshift(config.versions.current);
+ }
+ const versionSelect = `
+
+ ${versions
+ .map(
+ (version) => `
+
+ ${version.slug}
+ `,
+ )
+ .join("\n")}
+
+ `;
+
+ versionSwitch.innerHTML = versionSelect;
+ versionSwitch.firstElementChild.addEventListener("change", onSelectorSwitch);
+ }
+
+ const languageSwitch = document.querySelector(
+ "div.switch-menus > div.language-switch",
+ );
+
+ if (themeLanguageSelector) {
+ if (config.projects.translations.length) {
+ // Add the current language to the options on the selector
+ let languages = config.projects.translations.concat(
+ config.projects.current,
+ );
+ languages = languages.sort((a, b) =>
+ a.language.name.localeCompare(b.language.name),
+ );
+
+ const languageSelect = `
+
+ ${languages
+ .map(
+ (language) => `
+
+ ${language.language.name}
+ `,
+ )
+ .join("\n")}
+
+ `;
+
+ languageSwitch.innerHTML = languageSelect;
+ languageSwitch.firstElementChild.addEventListener("change", onSelectorSwitch);
+ }
+ else {
+ languageSwitch.remove();
+ }
+ }
+ });
+}
+
+document.addEventListener("readthedocs-addons-data-ready", function (event) {
+ // Trigger the Read the Docs Addons Search modal when clicking on "Search docs" input from the topnav.
+ document
+ .querySelector("[role='search'] input")
+ .addEventListener("focusin", () => {
+ const event = new CustomEvent("readthedocs-search-show");
+ document.dispatchEvent(event);
+ });
+});
\ No newline at end of file
diff --git a/docs/build/html/_static/language_data.js b/docs/build/html/_static/language_data.js
new file mode 100644
index 0000000..c7fe6c6
--- /dev/null
+++ b/docs/build/html/_static/language_data.js
@@ -0,0 +1,192 @@
+/*
+ * This script contains the language-specific data used by searchtools.js,
+ * namely the list of stopwords, stemmer, scorer and splitter.
+ */
+
+var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
+
+
+/* Non-minified version is copied as a separate JS file, if available */
+
+/**
+ * Porter Stemmer
+ */
+var Stemmer = function() {
+
+ var step2list = {
+ ational: 'ate',
+ tional: 'tion',
+ enci: 'ence',
+ anci: 'ance',
+ izer: 'ize',
+ bli: 'ble',
+ alli: 'al',
+ entli: 'ent',
+ eli: 'e',
+ ousli: 'ous',
+ ization: 'ize',
+ ation: 'ate',
+ ator: 'ate',
+ alism: 'al',
+ iveness: 'ive',
+ fulness: 'ful',
+ ousness: 'ous',
+ aliti: 'al',
+ iviti: 'ive',
+ biliti: 'ble',
+ logi: 'log'
+ };
+
+ var step3list = {
+ icate: 'ic',
+ ative: '',
+ alize: 'al',
+ iciti: 'ic',
+ ical: 'ic',
+ ful: '',
+ ness: ''
+ };
+
+ var c = "[^aeiou]"; // consonant
+ var v = "[aeiouy]"; // vowel
+ var C = c + "[^aeiouy]*"; // consonant sequence
+ var V = v + "[aeiou]*"; // vowel sequence
+
+ var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0
+ var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1
+ var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1
+ var s_v = "^(" + C + ")?" + v; // vowel in stem
+
+ this.stemWord = function (w) {
+ var stem;
+ var suffix;
+ var firstch;
+ var origword = w;
+
+ if (w.length < 3)
+ return w;
+
+ var re;
+ var re2;
+ var re3;
+ var re4;
+
+ firstch = w.substr(0,1);
+ if (firstch == "y")
+ w = firstch.toUpperCase() + w.substr(1);
+
+ // Step 1a
+ re = /^(.+?)(ss|i)es$/;
+ re2 = /^(.+?)([^s])s$/;
+
+ if (re.test(w))
+ w = w.replace(re,"$1$2");
+ else if (re2.test(w))
+ w = w.replace(re2,"$1$2");
+
+ // Step 1b
+ re = /^(.+?)eed$/;
+ re2 = /^(.+?)(ed|ing)$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ re = new RegExp(mgr0);
+ if (re.test(fp[1])) {
+ re = /.$/;
+ w = w.replace(re,"");
+ }
+ }
+ else if (re2.test(w)) {
+ var fp = re2.exec(w);
+ stem = fp[1];
+ re2 = new RegExp(s_v);
+ if (re2.test(stem)) {
+ w = stem;
+ re2 = /(at|bl|iz)$/;
+ re3 = new RegExp("([^aeiouylsz])\\1$");
+ re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
+ if (re2.test(w))
+ w = w + "e";
+ else if (re3.test(w)) {
+ re = /.$/;
+ w = w.replace(re,"");
+ }
+ else if (re4.test(w))
+ w = w + "e";
+ }
+ }
+
+ // Step 1c
+ re = /^(.+?)y$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ stem = fp[1];
+ re = new RegExp(s_v);
+ if (re.test(stem))
+ w = stem + "i";
+ }
+
+ // Step 2
+ re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ stem = fp[1];
+ suffix = fp[2];
+ re = new RegExp(mgr0);
+ if (re.test(stem))
+ w = stem + step2list[suffix];
+ }
+
+ // Step 3
+ re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ stem = fp[1];
+ suffix = fp[2];
+ re = new RegExp(mgr0);
+ if (re.test(stem))
+ w = stem + step3list[suffix];
+ }
+
+ // Step 4
+ re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
+ re2 = /^(.+?)(s|t)(ion)$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ stem = fp[1];
+ re = new RegExp(mgr1);
+ if (re.test(stem))
+ w = stem;
+ }
+ else if (re2.test(w)) {
+ var fp = re2.exec(w);
+ stem = fp[1] + fp[2];
+ re2 = new RegExp(mgr1);
+ if (re2.test(stem))
+ w = stem;
+ }
+
+ // Step 5
+ re = /^(.+?)e$/;
+ if (re.test(w)) {
+ var fp = re.exec(w);
+ stem = fp[1];
+ re = new RegExp(mgr1);
+ re2 = new RegExp(meq1);
+ re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
+ if (re.test(stem) || (re2.test(stem) && !(re3.test(stem))))
+ w = stem;
+ }
+ re = /ll$/;
+ re2 = new RegExp(mgr1);
+ if (re.test(w) && re2.test(w)) {
+ re = /.$/;
+ w = w.replace(re,"");
+ }
+
+ // and turn initial Y back to y
+ if (firstch == "y")
+ w = firstch.toLowerCase() + w.substr(1);
+ return w;
+ }
+}
+
diff --git a/docs/build/html/_static/minus.png b/docs/build/html/_static/minus.png
new file mode 100644
index 0000000..d96755f
Binary files /dev/null and b/docs/build/html/_static/minus.png differ
diff --git a/docs/build/html/_static/plus.png b/docs/build/html/_static/plus.png
new file mode 100644
index 0000000..7107cec
Binary files /dev/null and b/docs/build/html/_static/plus.png differ
diff --git a/docs/build/html/_static/pygments.css b/docs/build/html/_static/pygments.css
new file mode 100644
index 0000000..6f8b210
--- /dev/null
+++ b/docs/build/html/_static/pygments.css
@@ -0,0 +1,75 @@
+pre { line-height: 125%; }
+td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
+span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
+td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
+span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
+.highlight .hll { background-color: #ffffcc }
+.highlight { background: #f8f8f8; }
+.highlight .c { color: #3D7B7B; font-style: italic } /* Comment */
+.highlight .err { border: 1px solid #F00 } /* Error */
+.highlight .k { color: #008000; font-weight: bold } /* Keyword */
+.highlight .o { color: #666 } /* Operator */
+.highlight .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */
+.highlight .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */
+.highlight .cp { color: #9C6500 } /* Comment.Preproc */
+.highlight .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */
+.highlight .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */
+.highlight .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */
+.highlight .gd { color: #A00000 } /* Generic.Deleted */
+.highlight .ge { font-style: italic } /* Generic.Emph */
+.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
+.highlight .gr { color: #E40000 } /* Generic.Error */
+.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
+.highlight .gi { color: #008400 } /* Generic.Inserted */
+.highlight .go { color: #717171 } /* Generic.Output */
+.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
+.highlight .gs { font-weight: bold } /* Generic.Strong */
+.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
+.highlight .gt { color: #04D } /* Generic.Traceback */
+.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
+.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
+.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
+.highlight .kp { color: #008000 } /* Keyword.Pseudo */
+.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
+.highlight .kt { color: #B00040 } /* Keyword.Type */
+.highlight .m { color: #666 } /* Literal.Number */
+.highlight .s { color: #BA2121 } /* Literal.String */
+.highlight .na { color: #687822 } /* Name.Attribute */
+.highlight .nb { color: #008000 } /* Name.Builtin */
+.highlight .nc { color: #00F; font-weight: bold } /* Name.Class */
+.highlight .no { color: #800 } /* Name.Constant */
+.highlight .nd { color: #A2F } /* Name.Decorator */
+.highlight .ni { color: #717171; font-weight: bold } /* Name.Entity */
+.highlight .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */
+.highlight .nf { color: #00F } /* Name.Function */
+.highlight .nl { color: #767600 } /* Name.Label */
+.highlight .nn { color: #00F; font-weight: bold } /* Name.Namespace */
+.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
+.highlight .nv { color: #19177C } /* Name.Variable */
+.highlight .ow { color: #A2F; font-weight: bold } /* Operator.Word */
+.highlight .w { color: #BBB } /* Text.Whitespace */
+.highlight .mb { color: #666 } /* Literal.Number.Bin */
+.highlight .mf { color: #666 } /* Literal.Number.Float */
+.highlight .mh { color: #666 } /* Literal.Number.Hex */
+.highlight .mi { color: #666 } /* Literal.Number.Integer */
+.highlight .mo { color: #666 } /* Literal.Number.Oct */
+.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
+.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
+.highlight .sc { color: #BA2121 } /* Literal.String.Char */
+.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
+.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
+.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
+.highlight .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */
+.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
+.highlight .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */
+.highlight .sx { color: #008000 } /* Literal.String.Other */
+.highlight .sr { color: #A45A77 } /* Literal.String.Regex */
+.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
+.highlight .ss { color: #19177C } /* Literal.String.Symbol */
+.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
+.highlight .fm { color: #00F } /* Name.Function.Magic */
+.highlight .vc { color: #19177C } /* Name.Variable.Class */
+.highlight .vg { color: #19177C } /* Name.Variable.Global */
+.highlight .vi { color: #19177C } /* Name.Variable.Instance */
+.highlight .vm { color: #19177C } /* Name.Variable.Magic */
+.highlight .il { color: #666 } /* Literal.Number.Integer.Long */
\ No newline at end of file
diff --git a/docs/build/html/_static/searchtools.js b/docs/build/html/_static/searchtools.js
new file mode 100644
index 0000000..91f4be5
--- /dev/null
+++ b/docs/build/html/_static/searchtools.js
@@ -0,0 +1,635 @@
+/*
+ * Sphinx JavaScript utilities for the full-text search.
+ */
+"use strict";
+
+/**
+ * Simple result scoring code.
+ */
+if (typeof Scorer === "undefined") {
+ var Scorer = {
+ // Implement the following function to further tweak the score for each result
+ // The function takes a result array [docname, title, anchor, descr, score, filename]
+ // and returns the new score.
+ /*
+ score: result => {
+ const [docname, title, anchor, descr, score, filename, kind] = result
+ return score
+ },
+ */
+
+ // query matches the full name of an object
+ objNameMatch: 11,
+ // or matches in the last dotted part of the object name
+ objPartialMatch: 6,
+ // Additive scores depending on the priority of the object
+ objPrio: {
+ 0: 15, // used to be importantResults
+ 1: 5, // used to be objectResults
+ 2: -5, // used to be unimportantResults
+ },
+ // Used when the priority is not in the mapping.
+ objPrioDefault: 0,
+
+ // query found in title
+ title: 15,
+ partialTitle: 7,
+ // query found in terms
+ term: 5,
+ partialTerm: 2,
+ };
+}
+
+// Global search result kind enum, used by themes to style search results.
+class SearchResultKind {
+ static get index() { return "index"; }
+ static get object() { return "object"; }
+ static get text() { return "text"; }
+ static get title() { return "title"; }
+}
+
+const _removeChildren = (element) => {
+ while (element && element.lastChild) element.removeChild(element.lastChild);
+};
+
+/**
+ * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping
+ */
+const _escapeRegExp = (string) =>
+ string.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
+
+const _displayItem = (item, searchTerms, highlightTerms) => {
+ const docBuilder = DOCUMENTATION_OPTIONS.BUILDER;
+ const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX;
+ const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX;
+ const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY;
+ const contentRoot = document.documentElement.dataset.content_root;
+
+ const [docName, title, anchor, descr, score, _filename, kind] = item;
+
+ let listItem = document.createElement("li");
+ // Add a class representing the item's type:
+ // can be used by a theme's CSS selector for styling
+ // See SearchResultKind for the class names.
+ listItem.classList.add(`kind-${kind}`);
+ let requestUrl;
+ let linkUrl;
+ if (docBuilder === "dirhtml") {
+ // dirhtml builder
+ let dirname = docName + "/";
+ if (dirname.match(/\/index\/$/))
+ dirname = dirname.substring(0, dirname.length - 6);
+ else if (dirname === "index/") dirname = "";
+ requestUrl = contentRoot + dirname;
+ linkUrl = requestUrl;
+ } else {
+ // normal html builders
+ requestUrl = contentRoot + docName + docFileSuffix;
+ linkUrl = docName + docLinkSuffix;
+ }
+ let linkEl = listItem.appendChild(document.createElement("a"));
+ linkEl.href = linkUrl + anchor;
+ linkEl.dataset.score = score;
+ linkEl.innerHTML = title;
+ if (descr) {
+ listItem.appendChild(document.createElement("span")).innerHTML =
+ " (" + descr + ")";
+ // highlight search terms in the description
+ if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js
+ highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted"));
+ }
+ else if (showSearchSummary)
+ fetch(requestUrl)
+ .then((responseData) => responseData.text())
+ .then((data) => {
+ if (data)
+ listItem.appendChild(
+ Search.makeSearchSummary(data, searchTerms, anchor)
+ );
+ // highlight search terms in the summary
+ if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js
+ highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted"));
+ });
+ Search.output.appendChild(listItem);
+};
+const _finishSearch = (resultCount) => {
+ Search.stopPulse();
+ Search.title.innerText = _("Search Results");
+ if (!resultCount)
+ Search.status.innerText = Documentation.gettext(
+ "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories."
+ );
+ else
+ Search.status.innerText = Documentation.ngettext(
+ "Search finished, found one page matching the search query.",
+ "Search finished, found ${resultCount} pages matching the search query.",
+ resultCount,
+ ).replace('${resultCount}', resultCount);
+};
+const _displayNextItem = (
+ results,
+ resultCount,
+ searchTerms,
+ highlightTerms,
+) => {
+ // results left, load the summary and display it
+ // this is intended to be dynamic (don't sub resultsCount)
+ if (results.length) {
+ _displayItem(results.pop(), searchTerms, highlightTerms);
+ setTimeout(
+ () => _displayNextItem(results, resultCount, searchTerms, highlightTerms),
+ 5
+ );
+ }
+ // search finished, update title and status message
+ else _finishSearch(resultCount);
+};
+// Helper function used by query() to order search results.
+// Each input is an array of [docname, title, anchor, descr, score, filename, kind].
+// Order the results by score (in opposite order of appearance, since the
+// `_displayNextItem` function uses pop() to retrieve items) and then alphabetically.
+const _orderResultsByScoreThenName = (a, b) => {
+ const leftScore = a[4];
+ const rightScore = b[4];
+ if (leftScore === rightScore) {
+ // same score: sort alphabetically
+ const leftTitle = a[1].toLowerCase();
+ const rightTitle = b[1].toLowerCase();
+ if (leftTitle === rightTitle) return 0;
+ return leftTitle > rightTitle ? -1 : 1; // inverted is intentional
+ }
+ return leftScore > rightScore ? 1 : -1;
+};
+
+/**
+ * Default splitQuery function. Can be overridden in ``sphinx.search`` with a
+ * custom function per language.
+ *
+ * The regular expression works by splitting the string on consecutive characters
+ * that are not Unicode letters, numbers, underscores, or emoji characters.
+ * This is the same as ``\W+`` in Python, preserving the surrogate pair area.
+ */
+if (typeof splitQuery === "undefined") {
+ var splitQuery = (query) => query
+ .split(/[^\p{Letter}\p{Number}_\p{Emoji_Presentation}]+/gu)
+ .filter(term => term) // remove remaining empty strings
+}
+
+/**
+ * Search Module
+ */
+const Search = {
+ _index: null,
+ _queued_query: null,
+ _pulse_status: -1,
+
+ htmlToText: (htmlString, anchor) => {
+ const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
+ for (const removalQuery of [".headerlink", "script", "style"]) {
+ htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
+ }
+ if (anchor) {
+ const anchorContent = htmlElement.querySelector(`[role="main"] ${anchor}`);
+ if (anchorContent) return anchorContent.textContent;
+
+ console.warn(
+ `Anchored content block not found. Sphinx search tries to obtain it via DOM query '[role=main] ${anchor}'. Check your theme or template.`
+ );
+ }
+
+ // if anchor not specified or not found, fall back to main content
+ const docContent = htmlElement.querySelector('[role="main"]');
+ if (docContent) return docContent.textContent;
+
+ console.warn(
+ "Content block not found. Sphinx search tries to obtain it via DOM query '[role=main]'. Check your theme or template."
+ );
+ return "";
+ },
+
+ init: () => {
+ const query = new URLSearchParams(window.location.search).get("q");
+ document
+ .querySelectorAll('input[name="q"]')
+ .forEach((el) => (el.value = query));
+ if (query) Search.performSearch(query);
+ },
+
+ loadIndex: (url) =>
+ (document.body.appendChild(document.createElement("script")).src = url),
+
+ setIndex: (index) => {
+ Search._index = index;
+ if (Search._queued_query !== null) {
+ const query = Search._queued_query;
+ Search._queued_query = null;
+ Search.query(query);
+ }
+ },
+
+ hasIndex: () => Search._index !== null,
+
+ deferQuery: (query) => (Search._queued_query = query),
+
+ stopPulse: () => (Search._pulse_status = -1),
+
+ startPulse: () => {
+ if (Search._pulse_status >= 0) return;
+
+ const pulse = () => {
+ Search._pulse_status = (Search._pulse_status + 1) % 4;
+ Search.dots.innerText = ".".repeat(Search._pulse_status);
+ if (Search._pulse_status >= 0) window.setTimeout(pulse, 500);
+ };
+ pulse();
+ },
+
+ /**
+ * perform a search for something (or wait until index is loaded)
+ */
+ performSearch: (query) => {
+ // create the required interface elements
+ const searchText = document.createElement("h2");
+ searchText.textContent = _("Searching");
+ const searchSummary = document.createElement("p");
+ searchSummary.classList.add("search-summary");
+ searchSummary.innerText = "";
+ const searchList = document.createElement("ul");
+ searchList.setAttribute("role", "list");
+ searchList.classList.add("search");
+
+ const out = document.getElementById("search-results");
+ Search.title = out.appendChild(searchText);
+ Search.dots = Search.title.appendChild(document.createElement("span"));
+ Search.status = out.appendChild(searchSummary);
+ Search.output = out.appendChild(searchList);
+
+ const searchProgress = document.getElementById("search-progress");
+ // Some themes don't use the search progress node
+ if (searchProgress) {
+ searchProgress.innerText = _("Preparing search...");
+ }
+ Search.startPulse();
+
+ // index already loaded, the browser was quick!
+ if (Search.hasIndex()) Search.query(query);
+ else Search.deferQuery(query);
+ },
+
+ _parseQuery: (query) => {
+ // stem the search terms and add them to the correct list
+ const stemmer = new Stemmer();
+ const searchTerms = new Set();
+ const excludedTerms = new Set();
+ const highlightTerms = new Set();
+ const objectTerms = new Set(splitQuery(query.toLowerCase().trim()));
+ splitQuery(query.trim()).forEach((queryTerm) => {
+ const queryTermLower = queryTerm.toLowerCase();
+
+ // maybe skip this "word"
+ // stopwords array is from language_data.js
+ if (
+ stopwords.indexOf(queryTermLower) !== -1 ||
+ queryTerm.match(/^\d+$/)
+ )
+ return;
+
+ // stem the word
+ let word = stemmer.stemWord(queryTermLower);
+ // select the correct list
+ if (word[0] === "-") excludedTerms.add(word.substr(1));
+ else {
+ searchTerms.add(word);
+ highlightTerms.add(queryTermLower);
+ }
+ });
+
+ if (SPHINX_HIGHLIGHT_ENABLED) { // set in sphinx_highlight.js
+ localStorage.setItem("sphinx_highlight_terms", [...highlightTerms].join(" "))
+ }
+
+ // console.debug("SEARCH: searching for:");
+ // console.info("required: ", [...searchTerms]);
+ // console.info("excluded: ", [...excludedTerms]);
+
+ return [query, searchTerms, excludedTerms, highlightTerms, objectTerms];
+ },
+
+ /**
+ * execute search (requires search index to be loaded)
+ */
+ _performSearch: (query, searchTerms, excludedTerms, highlightTerms, objectTerms) => {
+ const filenames = Search._index.filenames;
+ const docNames = Search._index.docnames;
+ const titles = Search._index.titles;
+ const allTitles = Search._index.alltitles;
+ const indexEntries = Search._index.indexentries;
+
+ // Collect multiple result groups to be sorted separately and then ordered.
+ // Each is an array of [docname, title, anchor, descr, score, filename, kind].
+ const normalResults = [];
+ const nonMainIndexResults = [];
+
+ _removeChildren(document.getElementById("search-progress"));
+
+ const queryLower = query.toLowerCase().trim();
+ for (const [title, foundTitles] of Object.entries(allTitles)) {
+ if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
+ for (const [file, id] of foundTitles) {
+ const score = Math.round(Scorer.title * queryLower.length / title.length);
+ const boost = titles[file] === title ? 1 : 0; // add a boost for document titles
+ normalResults.push([
+ docNames[file],
+ titles[file] !== title ? `${titles[file]} > ${title}` : title,
+ id !== null ? "#" + id : "",
+ null,
+ score + boost,
+ filenames[file],
+ SearchResultKind.title,
+ ]);
+ }
+ }
+ }
+
+ // search for explicit entries in index directives
+ for (const [entry, foundEntries] of Object.entries(indexEntries)) {
+ if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) {
+ for (const [file, id, isMain] of foundEntries) {
+ const score = Math.round(100 * queryLower.length / entry.length);
+ const result = [
+ docNames[file],
+ titles[file],
+ id ? "#" + id : "",
+ null,
+ score,
+ filenames[file],
+ SearchResultKind.index,
+ ];
+ if (isMain) {
+ normalResults.push(result);
+ } else {
+ nonMainIndexResults.push(result);
+ }
+ }
+ }
+ }
+
+ // lookup as object
+ objectTerms.forEach((term) =>
+ normalResults.push(...Search.performObjectSearch(term, objectTerms))
+ );
+
+ // lookup as search terms in fulltext
+ normalResults.push(...Search.performTermsSearch(searchTerms, excludedTerms));
+
+ // let the scorer override scores with a custom scoring function
+ if (Scorer.score) {
+ normalResults.forEach((item) => (item[4] = Scorer.score(item)));
+ nonMainIndexResults.forEach((item) => (item[4] = Scorer.score(item)));
+ }
+
+ // Sort each group of results by score and then alphabetically by name.
+ normalResults.sort(_orderResultsByScoreThenName);
+ nonMainIndexResults.sort(_orderResultsByScoreThenName);
+
+ // Combine the result groups in (reverse) order.
+ // Non-main index entries are typically arbitrary cross-references,
+ // so display them after other results.
+ let results = [...nonMainIndexResults, ...normalResults];
+
+ // remove duplicate search results
+ // note the reversing of results, so that in the case of duplicates, the highest-scoring entry is kept
+ let seen = new Set();
+ results = results.reverse().reduce((acc, result) => {
+ let resultStr = result.slice(0, 4).concat([result[5]]).map(v => String(v)).join(',');
+ if (!seen.has(resultStr)) {
+ acc.push(result);
+ seen.add(resultStr);
+ }
+ return acc;
+ }, []);
+
+ return results.reverse();
+ },
+
+ query: (query) => {
+ const [searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms] = Search._parseQuery(query);
+ const results = Search._performSearch(searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms);
+
+ // for debugging
+ //Search.lastresults = results.slice(); // a copy
+ // console.info("search results:", Search.lastresults);
+
+ // print the results
+ _displayNextItem(results, results.length, searchTerms, highlightTerms);
+ },
+
+ /**
+ * search for object names
+ */
+ performObjectSearch: (object, objectTerms) => {
+ const filenames = Search._index.filenames;
+ const docNames = Search._index.docnames;
+ const objects = Search._index.objects;
+ const objNames = Search._index.objnames;
+ const titles = Search._index.titles;
+
+ const results = [];
+
+ const objectSearchCallback = (prefix, match) => {
+ const name = match[4]
+ const fullname = (prefix ? prefix + "." : "") + name;
+ const fullnameLower = fullname.toLowerCase();
+ if (fullnameLower.indexOf(object) < 0) return;
+
+ let score = 0;
+ const parts = fullnameLower.split(".");
+
+ // check for different match types: exact matches of full name or
+ // "last name" (i.e. last dotted part)
+ if (fullnameLower === object || parts.slice(-1)[0] === object)
+ score += Scorer.objNameMatch;
+ else if (parts.slice(-1)[0].indexOf(object) > -1)
+ score += Scorer.objPartialMatch; // matches in last name
+
+ const objName = objNames[match[1]][2];
+ const title = titles[match[0]];
+
+ // If more than one term searched for, we require other words to be
+ // found in the name/title/description
+ const otherTerms = new Set(objectTerms);
+ otherTerms.delete(object);
+ if (otherTerms.size > 0) {
+ const haystack = `${prefix} ${name} ${objName} ${title}`.toLowerCase();
+ if (
+ [...otherTerms].some((otherTerm) => haystack.indexOf(otherTerm) < 0)
+ )
+ return;
+ }
+
+ let anchor = match[3];
+ if (anchor === "") anchor = fullname;
+ else if (anchor === "-") anchor = objNames[match[1]][1] + "-" + fullname;
+
+ const descr = objName + _(", in ") + title;
+
+ // add custom score for some objects according to scorer
+ if (Scorer.objPrio.hasOwnProperty(match[2]))
+ score += Scorer.objPrio[match[2]];
+ else score += Scorer.objPrioDefault;
+
+ results.push([
+ docNames[match[0]],
+ fullname,
+ "#" + anchor,
+ descr,
+ score,
+ filenames[match[0]],
+ SearchResultKind.object,
+ ]);
+ };
+ Object.keys(objects).forEach((prefix) =>
+ objects[prefix].forEach((array) =>
+ objectSearchCallback(prefix, array)
+ )
+ );
+ return results;
+ },
+
+ /**
+ * search for full-text terms in the index
+ */
+ performTermsSearch: (searchTerms, excludedTerms) => {
+ // prepare search
+ const terms = Search._index.terms;
+ const titleTerms = Search._index.titleterms;
+ const filenames = Search._index.filenames;
+ const docNames = Search._index.docnames;
+ const titles = Search._index.titles;
+
+ const scoreMap = new Map();
+ const fileMap = new Map();
+
+ // perform the search on the required terms
+ searchTerms.forEach((word) => {
+ const files = [];
+ // find documents, if any, containing the query word in their text/title term indices
+ // use Object.hasOwnProperty to avoid mismatching against prototype properties
+ const arr = [
+ { files: terms.hasOwnProperty(word) ? terms[word] : undefined, score: Scorer.term },
+ { files: titleTerms.hasOwnProperty(word) ? titleTerms[word] : undefined, score: Scorer.title },
+ ];
+ // add support for partial matches
+ if (word.length > 2) {
+ const escapedWord = _escapeRegExp(word);
+ if (!terms.hasOwnProperty(word)) {
+ Object.keys(terms).forEach((term) => {
+ if (term.match(escapedWord))
+ arr.push({ files: terms[term], score: Scorer.partialTerm });
+ });
+ }
+ if (!titleTerms.hasOwnProperty(word)) {
+ Object.keys(titleTerms).forEach((term) => {
+ if (term.match(escapedWord))
+ arr.push({ files: titleTerms[term], score: Scorer.partialTitle });
+ });
+ }
+ }
+
+ // no match but word was a required one
+ if (arr.every((record) => record.files === undefined)) return;
+
+ // found search word in contents
+ arr.forEach((record) => {
+ if (record.files === undefined) return;
+
+ let recordFiles = record.files;
+ if (recordFiles.length === undefined) recordFiles = [recordFiles];
+ files.push(...recordFiles);
+
+ // set score for the word in each file
+ recordFiles.forEach((file) => {
+ if (!scoreMap.has(file)) scoreMap.set(file, new Map());
+ const fileScores = scoreMap.get(file);
+ fileScores.set(word, record.score);
+ });
+ });
+
+ // create the mapping
+ files.forEach((file) => {
+ if (!fileMap.has(file)) fileMap.set(file, [word]);
+ else if (fileMap.get(file).indexOf(word) === -1) fileMap.get(file).push(word);
+ });
+ });
+
+ // now check if the files don't contain excluded terms
+ const results = [];
+ for (const [file, wordList] of fileMap) {
+ // check if all requirements are matched
+
+ // as search terms with length < 3 are discarded
+ const filteredTermCount = [...searchTerms].filter(
+ (term) => term.length > 2
+ ).length;
+ if (
+ wordList.length !== searchTerms.size &&
+ wordList.length !== filteredTermCount
+ )
+ continue;
+
+ // ensure that none of the excluded terms is in the search result
+ if (
+ [...excludedTerms].some(
+ (term) =>
+ terms[term] === file ||
+ titleTerms[term] === file ||
+ (terms[term] || []).includes(file) ||
+ (titleTerms[term] || []).includes(file)
+ )
+ )
+ break;
+
+ // select one (max) score for the file.
+ const score = Math.max(...wordList.map((w) => scoreMap.get(file).get(w)));
+ // add result to the result list
+ results.push([
+ docNames[file],
+ titles[file],
+ "",
+ null,
+ score,
+ filenames[file],
+ SearchResultKind.text,
+ ]);
+ }
+ return results;
+ },
+
+ /**
+ * helper function to return a node containing the
+ * search summary for a given text. keywords is a list
+ * of stemmed words.
+ */
+ makeSearchSummary: (htmlText, keywords, anchor) => {
+ const text = Search.htmlToText(htmlText, anchor);
+ if (text === "") return null;
+
+ const textLower = text.toLowerCase();
+ const actualStartPosition = [...keywords]
+ .map((k) => textLower.indexOf(k.toLowerCase()))
+ .filter((i) => i > -1)
+ .slice(-1)[0];
+ const startWithContext = Math.max(actualStartPosition - 120, 0);
+
+ const top = startWithContext === 0 ? "" : "...";
+ const tail = startWithContext + 240 < text.length ? "..." : "";
+
+ let summary = document.createElement("p");
+ summary.classList.add("context");
+ summary.textContent = top + text.substr(startWithContext, 240).trim() + tail;
+
+ return summary;
+ },
+};
+
+_ready(Search.init);
diff --git a/docs/build/html/_static/sphinx_highlight.js b/docs/build/html/_static/sphinx_highlight.js
new file mode 100644
index 0000000..8a96c69
--- /dev/null
+++ b/docs/build/html/_static/sphinx_highlight.js
@@ -0,0 +1,154 @@
+/* Highlighting utilities for Sphinx HTML documentation. */
+"use strict";
+
+const SPHINX_HIGHLIGHT_ENABLED = true
+
+/**
+ * highlight a given string on a node by wrapping it in
+ * span elements with the given class name.
+ */
+const _highlight = (node, addItems, text, className) => {
+ if (node.nodeType === Node.TEXT_NODE) {
+ const val = node.nodeValue;
+ const parent = node.parentNode;
+ const pos = val.toLowerCase().indexOf(text);
+ if (
+ pos >= 0 &&
+ !parent.classList.contains(className) &&
+ !parent.classList.contains("nohighlight")
+ ) {
+ let span;
+
+ const closestNode = parent.closest("body, svg, foreignObject");
+ const isInSVG = closestNode && closestNode.matches("svg");
+ if (isInSVG) {
+ span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
+ } else {
+ span = document.createElement("span");
+ span.classList.add(className);
+ }
+
+ span.appendChild(document.createTextNode(val.substr(pos, text.length)));
+ const rest = document.createTextNode(val.substr(pos + text.length));
+ parent.insertBefore(
+ span,
+ parent.insertBefore(
+ rest,
+ node.nextSibling
+ )
+ );
+ node.nodeValue = val.substr(0, pos);
+ /* There may be more occurrences of search term in this node. So call this
+ * function recursively on the remaining fragment.
+ */
+ _highlight(rest, addItems, text, className);
+
+ if (isInSVG) {
+ const rect = document.createElementNS(
+ "http://www.w3.org/2000/svg",
+ "rect"
+ );
+ const bbox = parent.getBBox();
+ rect.x.baseVal.value = bbox.x;
+ rect.y.baseVal.value = bbox.y;
+ rect.width.baseVal.value = bbox.width;
+ rect.height.baseVal.value = bbox.height;
+ rect.setAttribute("class", className);
+ addItems.push({ parent: parent, target: rect });
+ }
+ }
+ } else if (node.matches && !node.matches("button, select, textarea")) {
+ node.childNodes.forEach((el) => _highlight(el, addItems, text, className));
+ }
+};
+const _highlightText = (thisNode, text, className) => {
+ let addItems = [];
+ _highlight(thisNode, addItems, text, className);
+ addItems.forEach((obj) =>
+ obj.parent.insertAdjacentElement("beforebegin", obj.target)
+ );
+};
+
+/**
+ * Small JavaScript module for the documentation.
+ */
+const SphinxHighlight = {
+
+ /**
+ * highlight the search words provided in localstorage in the text
+ */
+ highlightSearchWords: () => {
+ if (!SPHINX_HIGHLIGHT_ENABLED) return; // bail if no highlight
+
+ // get and clear terms from localstorage
+ const url = new URL(window.location);
+ const highlight =
+ localStorage.getItem("sphinx_highlight_terms")
+ || url.searchParams.get("highlight")
+ || "";
+ localStorage.removeItem("sphinx_highlight_terms")
+ url.searchParams.delete("highlight");
+ window.history.replaceState({}, "", url);
+
+ // get individual terms from highlight string
+ const terms = highlight.toLowerCase().split(/\s+/).filter(x => x);
+ if (terms.length === 0) return; // nothing to do
+
+ // There should never be more than one element matching "div.body"
+ const divBody = document.querySelectorAll("div.body");
+ const body = divBody.length ? divBody[0] : document.querySelector("body");
+ window.setTimeout(() => {
+ terms.forEach((term) => _highlightText(body, term, "highlighted"));
+ }, 10);
+
+ const searchBox = document.getElementById("searchbox");
+ if (searchBox === null) return;
+ searchBox.appendChild(
+ document
+ .createRange()
+ .createContextualFragment(
+ '
' +
+ '' +
+ _("Hide Search Matches") +
+ "
"
+ )
+ );
+ },
+
+ /**
+ * helper function to hide the search marks again
+ */
+ hideSearchWords: () => {
+ document
+ .querySelectorAll("#searchbox .highlight-link")
+ .forEach((el) => el.remove());
+ document
+ .querySelectorAll("span.highlighted")
+ .forEach((el) => el.classList.remove("highlighted"));
+ localStorage.removeItem("sphinx_highlight_terms")
+ },
+
+ initEscapeListener: () => {
+ // only install a listener if it is really needed
+ if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) return;
+
+ document.addEventListener("keydown", (event) => {
+ // bail for input elements
+ if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;
+ // bail with special keys
+ if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return;
+ if (DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS && (event.key === "Escape")) {
+ SphinxHighlight.hideSearchWords();
+ event.preventDefault();
+ }
+ });
+ },
+};
+
+_ready(() => {
+ /* Do not call highlightSearchWords() when we are on the search page.
+ * It will highlight words from the *previous* search query.
+ */
+ if (typeof Search === "undefined") SphinxHighlight.highlightSearchWords();
+ SphinxHighlight.initEscapeListener();
+});
diff --git a/docs/build/html/api/modules.html b/docs/build/html/api/modules.html
new file mode 100644
index 0000000..f46a829
--- /dev/null
+++ b/docs/build/html/api/modules.html
@@ -0,0 +1,183 @@
+
+
+
+
+
+
+
+
+
saferoad — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/api/saferoad.database.html b/docs/build/html/api/saferoad.database.html
new file mode 100644
index 0000000..d51daf7
--- /dev/null
+++ b/docs/build/html/api/saferoad.database.html
@@ -0,0 +1,177 @@
+
+
+
+
+
+
+
+
+
saferoad.database module — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ saferoad
+
+
+
+
+
+
+
+
+
+saferoad.database module
+
+
+class saferoad.database. DataBase [source]
+Bases: object
+Class for managing a DuckDB database connection.
+This class provides methods to set up a DuckDB database connection, and run SQL queries.
+
+
+init_database_path ( ) [source]
+Initialize the database path.
+This method creates a directory for the database if it does not exist
+and generates a filename based on the current date and time.
+
+Returns:
+The path to the DuckDB database file.
+
+Return type:
+str
+
+
+
+
+
+
+run ( query : str ) [source]
+Run a SQL query on the database.
+This method executes the provided SQL query on the connected database.
+
+Parameters:
+query (str ) – The SQL query to execute.
+
+Raises:
+AssertionError – If the database connection is not established.
+
+
+
+
+
+
+setup ( ) [source]
+Setup the DuckDB database connection.
+This method initializes the database path and establishes a connection
+to the DuckDB database. It also loads the spatial extension if available.
+
+Raises:
+AssertionError – If the database connection or path is already established.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/api/saferoad.html b/docs/build/html/api/saferoad.html
new file mode 100644
index 0000000..246d27b
--- /dev/null
+++ b/docs/build/html/api/saferoad.html
@@ -0,0 +1,1555 @@
+
+
+
+
+
+
+
+
+
saferoad package — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ saferoad
+
+
+
+
+
+
+
+
+
+saferoad package
+
+
+Module contents
+
+
+class saferoad. DataBase [source]
+Bases: object
+Class for managing a DuckDB database connection.
+This class provides methods to set up a DuckDB database connection, and run SQL queries.
+
+
+init_database_path ( ) [source]
+Initialize the database path.
+This method creates a directory for the database if it does not exist
+and generates a filename based on the current date and time.
+
+Returns:
+The path to the DuckDB database file.
+
+Return type:
+str
+
+
+
+
+
+
+run ( query : str ) [source]
+Run a SQL query on the database.
+This method executes the provided SQL query on the connected database.
+
+Parameters:
+query (str ) – The SQL query to execute.
+
+Raises:
+AssertionError – If the database connection is not established.
+
+
+
+
+
+
+setup ( ) [source]
+Setup the DuckDB database connection.
+This method initializes the database path and establishes a connection
+to the DuckDB database. It also loads the spatial extension if available.
+
+Raises:
+AssertionError – If the database connection or path is already established.
+
+
+
+
+
+
+
+
+class saferoad. Pipeline [source]
+Bases: object
+
+
+class Processing [source]
+Bases: object
+Processing class for processing road data.
+This class provides methods to load files into a database, dissolve features,
+split lines into segments, generate patches, and save tables as GeoJSON files.
+It assumes that the database connection is already established and that the
+necessary SQL functions for spatial operations are available.
+The methods in this class generate SQL queries that can be executed against
+a spatial database, such as DuckDB.
+The class does not handle database connections or query execution directly;
+it only generates the SQL queries as strings.
+The methods are static and can be called without instantiating the class.
+The class is designed to be used in a pipeline for processing road data,
+where each method can be chained together to perform a series of operations
+on the road data.
+The methods assume that the input data is already in a suitable format for
+processing, such as a GIS vector file for loading into a database or a table
+containing road geometries for dissolving and segmenting.
+The class is intended to be used in conjunction with a spatial database
+that supports SQL queries for spatial operations, such as DuckDB with
+the Spatial extension or PostGIS.
+The methods are designed to be flexible and can be adapted to different
+use cases by modifying the parameters passed to them.
+
+
+static build_geometry ( latitude : str , longitude : str , table_name : str ) → str [source]
+Build a geometry from latitude and longitude coordinates.
+This method generates an SQL query to build a geometry column in a table
+from latitude and longitude coordinates. It assumes that the input table
+contains columns for latitude and longitude.
+
+Parameters:
+
+latitude (str ) – The name of the column containing latitude values.
+longitude (str ) – The name of the column containing longitude values.
+table_name (str ) – The name of the table to add the geometry column to.
+
+
+Returns:
+SQL query string to build the geometry column.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_cum_disp ( ) → str [source]
+Calculate average cumulative displacement per patch.
+This method generates an SQL query to calculate the average cumulative
+displacement for each patch by averaging the displacement values of points
+within each patch. It assumes that the point table contains a geometry column,
+a displacement column, and that the patch table contains a geometry column
+and a unique identifier for each patch.
+
+Returns:
+SQL query string to calculate average cumulative displacement per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_disp_ts_gcp ( date_fields : list [ str ] ) [source]
+Calculate average displacement time series for patches (Average Local Displacement (ALD)).
+This method generates an SQL query to calculate the average displacement
+time series for each patch by averaging the displacement values of points within each patch
+for the specified date fields. It assumes that the point table contains a geometry column,
+displacement columns for each date field, and that the patch table contains a geometry column
+and a unique identifier for each patch.
+
+Parameters:
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+
+Returns:
+SQL query string to calculate average displacement time series per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_lcp_velocity ( table_name : str = 'pspoint' ) → str [source]
+Calculate average LCP velocity per patch.
+This method generates an SQL query to calculate the average velocity of
+local control points (LCPs) for each patch by averaging the average velocities
+of points within each patch based on their LCP velocities.
+
+Parameters:
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+Returns:
+SQL query string to calculate average LCP velocity per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_std_disp_ts_lcp ( date_fields : list [ str ] , table_name : str = 'pspoint' ) → str [source]
+Calculate average and standard deviation of displacement time series based on LCPs.
+This method generates an SQL query to calculate the average and standard
+deviation of displacement time series for each patch based on the displacement
+values of points within each patch relative to the local control point (LCP).
+It assumes that the point table contains columns for displacement values at
+different dates and that the patch table contains a geometry column and a unique
+identifier for each patch.
+
+Parameters:
+
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to calculate average and standard deviation of displacement time series based on LCPs.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_velocity ( time_vector : list [ float ] , field_names : list [ str ] , table_name : str = 'pspoint' ) → str [source]
+Calculate average velocity using linear regression.
+This method generates an SQL query to calculate the average velocity for
+each point in a table using linear regression on displacement values over time.
+It assumes that the input table contains columns for displacement values at different dates and that the time vector is provided in days.
+
+Parameters:
+
+time_vector (list [ float ] ) – List of time differences in days from the first date.
+field_names (list [ str ] ) – List of column names representing displacement values at different dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to calculate average velocity.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_velocity_gcp ( table_name : str = 'pspoint' ) → str [source]
+Calculate average velocity based on ground control points (GCPs) for patches.
+This method generates an SQL query to calculate the average velocity for each patch based on the average velocities of points within each patch.
+
+Parameters:
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+Returns:
+SQL query string to calculate average velocity based on GCPs for patches.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_velocity_lcp ( table_name : str = 'pspoint' ) → str [source]
+Calculate average velocity based on local control points (LCPs) for points.
+This method generates an SQL query to calculate the average velocity for each point
+based on the average velocity of the local control point (LCP) associated with the patch
+to which the point belongs. It assumes that the point table contains a geometry column,
+an average velocity column based on ground control points (GCPs), and that the patch table
+contains a geometry column, a unique identifier for each patch, and the average velocity
+of the LCP.
+
+Parameters:
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+Returns:
+SQL query string to calculate average velocity based on LCPs for points.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_cum_disp ( dates : list [ str ] , table_name : str = 'pspoint' ) → str [source]
+Calculate cumulative displacement.
+This method generates an SQL query to calculate the cumulative displacement
+for each point in a table based on the provided date fields. It assumes that
+the input table contains columns for displacement values at different dates.
+
+Parameters:
+
+dates (list [ str ] ) – List of column names representing dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to calculate cumulative displacement.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_lcp_velocity ( ) → str [source]
+Calculate LCP velocity for patches.
+This method generates an SQL query to calculate the velocity of the linear control point (LCP)
+for each patch by retrieving the average velocity of the point identified as the LCP.
+
+Returns:
+SQL query string to calculate LCP velocity for patches.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_med_std_disp_ts_lcp ( date_fields : list [ str ] , table_name : str = 'pspoint' ) → str [source]
+Calculate average and standard deviation of displacement time series based on LCPs.
+This method generates an SQL query to calculate the average and standard
+deviation of displacement time series for each patch based on the displacement
+values of points within each patch relative to the local control point (LCP).
+It assumes that the point table contains columns for displacement values at
+different dates and that the patch table contains a geometry column and a unique
+identifier for each patch.
+
+Parameters:
+
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to calculate average and standard deviation of displacement time series based on LCPs.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_outliers ( scaling_factor : float , table_name : str = 'pspoint' ) → str [source]
+Identify outlier points based on absolute average velocity.
+This method generates an SQL query to identify outlier points based on their
+average velocity relative to local control points (LCPs). Points with an absolute
+average LCP velocity exceeding a specified threshold (5 mm/year) are
+marked as outliers by assigning their unique identifier to a new column in the
+patches table. The unit parameter allows for specifying the measurement unit
+(meters, centimeters, or millimeters) to appropriately scale the threshold.
+
+Parameters:
+
+scaling_factor (float ) – The factor to scale the velocity threshold based on the unit.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to identify outlier points.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_outliers_avg_lcd ( table_name : str = 'pspoint' , date_vector = list[int] , date_names = list[str] ) → str [source]
+Calculate outliers based on average local control displacement (LCD).
+This method generates an SQL query to identify outlier points based on their
+displacement time series relative to the average local control displacement (LCD)
+of their associated patches. Points with displacement values exceeding the average
+LCD by more than standard deviations at any time point are marked as outliers
+by inserting their unique identifier and patch ID into a new outliers table.
+
+Parameters:
+
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+date_vector (list [ int ] ) – List of time differences in days from the first date.
+date_names (list [ str ] ) – List of column names representing displacement values at different dates.
+
+
+Returns:
+SQL query string to identify outlier points based on average LCD.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_outliers_med_lcd ( table_name : str = 'pspoint' , date_vector = list[int] , date_names = list[str] ) → str [source]
+Calculate outliers based on median local control displacement (LCD).
+This method generates an SQL query to identify outlier points based on their
+displacement time series relative to the median local control displacement (LCD)
+of their associated patches. Points with displacement values exceeding the median
+LCD by more than standard deviations at any time point are marked as outliers
+by inserting their unique identifier and patch ID into a new outliers table.
+
+Parameters:
+
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+date_vector (list [ int ] ) – List of time differences in days from the first date.
+date_names (list [ str ] ) – List of column names representing displacement values at different dates.
+
+
+Returns:
+SQL query string to identify outlier points based on median LCD.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_point_density ( point_name : str , patch_name : str = 'patches' ) → str [source]
+Calculate point density per patch.
+This method generates an SQL query to calculate the point density per patch
+by counting the number of points within each patch and dividing by the area
+of the patch in square kilometers. It assumes that the point table contains
+a geometry column and that the patch table contains a geometry column and
+a unique identifier for each patch.
+
+Parameters:
+
+point_name (str ) – The name of the table containing the points.
+patch_name (str ) – The name of the table containing the patches, default is “patches”.
+
+
+Returns:
+SQL query string to calculate point density per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_std_disp_ts_gcp ( date_fields : list [ str ] ) [source]
+Calculate standard deviation of displacement time series for patches based on global control point (GCP).
+This method generates an SQL query to calculate the standard deviation
+of displacement time series for each patch by computing the standard deviation of displacement values of points within each patch for the specified date fields.
+
+Parameters:
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+
+Returns:
+SQL query string to calculate standard deviation of displacement time series per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static dissolve_features ( attribute : str , table_name : str ) → str [source]
+Dissolve features in a table based on a specified attribute.
+This method generates an SQL query to dissolve features in a table
+based on the provided attribute. It assumes the table is already loaded
+into the database.
+
+Parameters:
+
+attribute (str ) – The attribute to dissolve features by.
+table_name (str ) – The name of the table containing the features, default is “road”.
+
+
+Returns:
+SQL query string to dissolve features.
+
+Return type:
+str
+
+
+
+
+
+
+static generate_patches ( width : float , length : float , table_name : str = 'segments' ) → str [source]
+Generate patches from segments.
+This method generates patches from segments by creating a rectangular
+envelope around each segment, rotated to align with the segment’s direction.
+The patches are created by translating and rotating the envelope to the
+start point of the segment, ensuring that each patch is oriented correctly
+along the segment’s direction.
+
+Parameters:
+
+width (float ) – The width of the patches in meters.
+length (float ) – The length of the patches in meters.
+table_name (str ) – The name of the table containing the segments, default is “segments”.
+
+
+Returns:
+SQL query string to create or replace the patches table.
+
+Return type:
+str
+
+
+
+
+
+
+static get_column_names ( table_name : str ) → str [source]
+Get column names from a table.
+This method generates an SQL query to retrieve the column names from a specified table.
+
+Parameters:
+table_name (str ) – The name of the table to retrieve column names from.
+
+Returns:
+SQL query string to get the column names.
+
+Return type:
+str
+
+
+
+
+
+
+static lcp_ts_patch ( date_fields : list [ str ] , table_name : str = 'pspoint' ) [source]
+Get Local Control Point’s displacement time series for patches.
+This method generates an SQL query to retrieve the displacement time series
+of the local control point (LCP) for each patch based on specified date fields.
+
+Parameters:
+
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to get LCP displacement time series for patches.
+
+Return type:
+str
+
+
+
+
+
+
+static load_file ( file_path : str , table_name : str ) → str [source]
+Load a file into a database table.
+Method validates the provided file path and determines if existing
+and determines the appropriate loading method based on the file type.
+It generates an SQL query to create or replace a table in the database
+with the contents of the file. The method supports CSV files and other
+GIS vector files, using different loading methods for each type.
+
+Parameters:
+
+
+Raises:
+AssertionError – If the file does not exist.
+
+Returns:
+SQL query string to create or replace the table with the file data.
+
+Return type:
+str
+
+
+
+
+
+
+static outlier_rel_ts_patch ( ) [source]
+Calculate outlier displacement time series relative to LCP for patches.
+This method generates an SQL query to calculate the displacement time series
+of outlier points relative to the displacement time series of their associated
+local control points (LCPs). It assumes that the outliers table contains a
+geometry column, a displacement time series column, and a patch ID column,
+and that the patches table contains a geometry column, a unique identifier
+for each patch, and a displacement time series column for the LCP.
+
+Returns:
+SQL query string to calculate outlier displacement time series relative to LCP for patches.
+
+Return type:
+str
+
+
+
+
+
+
+outlier_ts_patch ( table_name : str = 'pspoint' ) [source]
+Get outlier displacement time series for patches.
+This method generates an SQL query to retrieve the displacement time series
+of outlier points based on specified date fields.
+
+Parameters:
+
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to get outlier displacement time series for patches.
+
+Return type:
+str
+
+
+
+
+
+
+static relate_point_patches ( point_name : str , patch_name : str = 'patches' ) → str [source]
+Relate points to patches by assigning patch IDs to points.
+This method generates an SQL query to relate points in one table to patches
+in another table by assigning patch IDs to points based on their spatial
+relationship. It assumes that the point table contains a geometry column
+and that the patch table contains a geometry column and a unique identifier
+for each patch.
+
+Parameters:
+
+point_name (str ) – The name of the table containing the points.
+patch_name (str ) – The name of the table containing the patches, default is “patches”.
+
+
+Returns:
+SQL query string to relate points to patches.
+
+Return type:
+str
+
+
+
+
+
+
+static select_lcps ( table_name : str = 'pspoint' ) → str [source]
+Select linear control points (LCPs) for patches.
+This method generates an SQL query to select local control points (LCPs) for each patch by identifying the point with the minimum absolute average velocity within each patch.
+
+Parameters:
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+Returns:
+SQL query string to select LCPs for patches.
+
+Return type:
+str
+
+
+
+
+
+
+static spatial_tranformation ( source_epsg : str , target_epsg : str , table_name : str ) → str [source]
+Transform geometries from one EPSG code to another.
+This method generates an SQL query to transform geometries in a table
+from one EPSG code to another. It assumes that the input table contains
+geometries in the source EPSG code and that the target EPSG code is valid.
+
+Parameters:
+
+source_epsg (str ) – The source EPSG code of the geometries.
+target_epsg (str ) – The target EPSG code to transform the geometries to.
+table_name (str ) – The name of the table containing the geometries, default is “patches”.
+
+
+Returns:
+SQL query string to transform the geometries.
+
+Return type:
+str
+
+
+
+
+
+
+static split_to_segments ( segment_length : float , table_name : str = 'dissolved' ) → str [source]
+Split lines into segments of a specified length.
+This method generates an SQL query to split lines in a table into segments
+of a specified length. It transforms the geometries to a computational
+coordinate reference system (CRS) and calculates the lengths in meters.
+The segments are created by generating windows of fixed length along the lines.
+The resulting segments are stored in a new table named “segments”.
+The method assumes that the input table is already dissolved and contains
+geometries in a suitable format.
+The segments are created by cutting the lines into fixed-length segments
+and filtering out any empty geometries.
+This method is useful for preparing road segments for further analysis or processing.
+It is particularly useful in road network analysis, where roads need to be
+divided into manageable segments for tasks such as traffic analysis, road condition
+assessment, or infrastructure planning.
+
+Parameters:
+
+segment_length (float ) – The length of each segment in meters.
+table_name (str ) – The name of the table containing the lines, default is “dissolved”.
+
+
+Returns:
+SQL query string to create or replace the segments table.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+class Visualisation [source]
+Bases: object
+SQL queries for visualisation of results.
+2D visualisation is done in Web Mercator (EPSG:3857).
+
+
+static get_avg_cum_disp_graph ( patch_id : float , scaling_factor : float ) → str [source]
+Get average cumulative displacement time series.
+This method generates an SQL query to retrieve the average cumulative displacement
+time series for a specific patch, scaling the displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the average cumulative displacement time series for the specified patch.
+
+
+
+
+
+
+static get_avg_disp_lcp_graph ( patch_id : float , scaling_factor : float ) → str [source]
+Get average displacement time series based on local control points (LCPs).
+This method generates an SQL query to retrieve the average displacement time series
+based on local control points (LCPs) for a specific patch, scaling the displacement
+values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the average displacement time series based on LCPs for the specified patch.
+
+
+
+
+
+
+static get_center ( point_uid : float , source_crs : str ) → str [source]
+Get the center point of the outlier within a specific patch.
+This method generates an SQL query to retrieve the center point of the outlier
+within a specific patch, transforming the geometry from a source CRS to a target
+projection defined in the Visualisation class.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the center point of the outlier within the specified patch.
+
+
+
+
+
+
+static get_cum_disp_graph ( outlier_id : float , scaling_factor : float ) → str [source]
+Get outlier displacement time series.
+This method generates an SQL query to retrieve the outlier displacement time series
+for a specific patch, scaling the displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the outlier displacement time series for the specified patch.
+
+
+
+
+
+
+static get_cum_disp_map ( source_crs : str , scaling_factor : float ) → str [source]
+Get cumulative displacement per patch.
+This method generates an SQL query to retrieve the cumulative displacement
+for each patch, transforming the geometries from a source CRS to a target
+projection defined in the Visualisation class.
+
+Parameters:
+
+source_crs (str ) – The source coordinate reference system of the geometries.
+unit (str ) – The measurement unit for displacement (“m”, “cm”, or “mm”).
+
+
+Returns:
+SQL query string to get the cumulative displacement per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static get_lcp_disp_graph ( patch_id : float , scaling_factor : float ) → str [source]
+Get local control point (LCP) displacement time series.
+This method generates an SQL query to retrieve the local control point (LCP)
+displacement time series for a specific patch, scaling the displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the LCP displacement time series for the specified patch.
+
+
+
+
+
+
+static get_lcp_point ( patch_id : float , source_crs : str ) → str [source]
+Get the local control point (LCP) within a specific patch.
+This method generates an SQL query to retrieve the local control point (LCP)
+within a specific patch, transforming the geometry from a source CRS to a target
+projection defined in the Visualisation class.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the LCP within the specified patch.
+
+
+
+
+
+
+static get_outlier_points ( patch_id : float , source_crs : str ) → str [source]
+Get the outlier points within a specific patch.
+This method generates an SQL query to retrieve the outlier point within a specific patch,
+transforming the geometry from a source CRS to a target projection defined in the Visualisation class.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the outlier point within the specified patch.
+
+
+
+
+
+
+get_outlier_rel_ts_graph ( scaling_factor : float ) → str [source]
+Get outlier relative displacement time series.
+This method generates an SQL query to retrieve the outlier relative displacement
+time series for a specific patch, scaling the displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the outlier relative displacement time series for the specified patch.
+
+
+
+
+
+
+static get_outliers_map ( source_crs : str , scaling_factor : float ) → str [source]
+Get outlier points based on absolute average LCP velocity.
+This method generates an SQL query to retrieve outlier points based on their
+average velocity relative to local control points (LCPs). Points with an absolute
+average LCP velocity exceeding a specified threshold (5 mm/year) are
+marked as outliers by assigning their unique identifier to a new column in the
+patches table. The unit parameter allows for specifying the measurement unit
+(meters, centimeters, or millimeters) to appropriately scale the threshold.
+
+Parameters:
+
+
+Returns:
+SQL query string to identify outlier points.
+
+Return type:
+str
+
+
+
+
+
+
+static get_patch_center ( patch_id : float , source_crs : str ) → str [source]
+Get the center point of a specific patch.
+This method generates an SQL query to retrieve the center point of a specific
+patch, transforming the geometry from a source CRS to a target projection defined in the Visualisation class.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the center point of the specified patch.
+
+
+
+
+
+
+static get_ps_density ( source_crs : str ) → str [source]
+Get point density per patch.
+This method generates an SQL query to retrieve the point density for each patch,
+transforming the geometries from a source CRS to a target projection defined
+in the Visualisation class.
+
+Parameters:
+source_crs (str ) – The source coordinate reference system of the geometries.
+
+Returns:
+SQL query string to get the point density per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static get_ps_points ( patch_id : float , source_crs : str , table_name : str ) → str [source]
+Get points within a specific patch.
+This method generates an SQL query to retrieve points within a specific patch,
+transforming the geometries from a source CRS to a target projection defined
+in the Visualisation class.
+
+Parameters:
+
+patch_id (float ) – The unique identifier of the patch.
+source_crs (str ) – The source coordinate reference system of the geometries.
+table_name (str ) – The name of the table containing the points.
+
+
+Returns:
+SQL query string to get the points within the specified patch.
+
+Return type:
+str
+
+
+
+
+
+
+static get_ps_vel_gcp ( source_crs : str , scaling_factor : float ) → str [source]
+Get average velocity based on ground control points (GCPs).
+This method generates an SQL query to retrieve the average velocity for
+each point based on ground control points (GCPs), transforming the geometries
+from a source CRS to a target projection defined in the Visualisation class.
+
+Parameters:
+
+source_crs (str ) – The source coordinate reference system of the geometries.
+unit (str ) – The measurement unit for velocity (“m”, “cm”, or “mm”).
+
+
+Returns:
+SQL query string to get the average velocity based on GCPs.
+
+Return type:
+str
+
+
+
+
+
+
+static get_ps_vel_lcp ( source_crs : str , scaling_factor : float ) → str [source]
+Get average velocity based on local control points (LCPs).
+This method generates an SQL query to retrieve the average velocity for
+each point based on local control points (LCPs), transforming the geometries
+from a source CRS to a target projection defined in the Visualisation class.
+
+Parameters:
+
+source_crs (str ) – The source coordinate reference system of the geometries.
+unit (str ) – The measurement unit for velocity (“m”, “cm”, or “mm”).
+
+
+Returns:
+SQL query string to get the average velocity based on LCPs.
+
+Return type:
+str
+
+
+
+
+
+
+static get_std_cum_disp_graph ( patch_id : float , scaling_factor : float ) → str [source]
+Get standard deviation of cumulative displacement time series.
+This method generates an SQL query to retrieve the standard deviation of cumulative
+displacement time series for a specific patch, scaling the displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the standard deviation of cumulative displacement time series for the specified patch.
+
+
+
+
+
+
+static get_std_disp_lcp_graph ( patch_id : float , scaling_factor : float ) → str [source]
+Get standard deviation of displacement time series based on local control points (LCPs).
+This method generates an SQL query to retrieve the standard deviation of displacement
+time series based on local control points (LCPs) for a specific patch, scaling the
+displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the standard deviation of displacement time series based on LCPs for the specified patch.
+
+
+
+
+
+
+static get_table_bbox ( table_name : str , source_crs : str ) → str [source]
+Get the bounding box of a table in a specified projection.
+This method generates an SQL query to retrieve the bounding box of geometries
+from a specified table, transforming the geometries from a source CRS to
+a target projection defined in the Visualisation class.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the bounding box of the table.
+
+Return type:
+str
+
+
+
+
+
+
+static patch_uids ( ) → str [source]
+Get all patch UIDs that have outliers.
+This method generates an SQL query to retrieve all unique identifiers (UIDs)
+of patches that have been identified as containing outliers.
+
+Returns:
+SQL query string to get all patch UIDs with outliers.
+
+Return type:
+str
+
+
+
+
+
+
+projection = 'EPSG:3857'
+
+
+
+
+
+
+
+
+class saferoad. PsData ( filepath : str , latitude : str , longitude : str , unit : Literal [ 'm' , 'cm' , 'mm' ] = 'm' , crs_code : str = 'EPSG:4326' , name : str = 'pspoint' ) [source]
+Bases: object
+Class for storing point source data information.
+
+Parameters:
+
+filepath (str ) – Path to the point source data file.
+latitude (str ) – Field name of the latitude field in the data file.
+longitude (str ) – Field name of the longitude field in the data file.
+unit (Literal [ "m" , "cm" , "mm" ] ) – Unit of measurement for the coordinates. Options are “m”, “cm”, or “mm”. Default is “m”.
+crs_code (str ) – Coordinate Reference System code. Default is “EPSG:4326”.
+name (str ) – Name identifier for the point source data. Default is “pspoint”.
+
+
+
+
+
+crs_code : str = 'EPSG:4326'
+
+
+
+
+filepath : str
+
+
+
+
+latitude : str
+
+
+
+
+longitude : str
+
+
+
+
+name : str = 'pspoint'
+
+
+
+
+unit : Literal [ 'm' , 'cm' , 'mm' ] = 'm'
+
+
+
+
+
+
+class saferoad. Road ( filepath : str , crs_code : str = 'EPSG:4326' , name : str = 'road' ) [source]
+Bases: object
+Class for storing road data information.
+
+Parameters:
+
+filepath (str ) – Path to the road data file.
+crs_code (str ) – Coordinate Reference System code. Default is “EPSG:4326”.
+name (str ) – Name identifier for the road data. Default is “road”.
+
+
+
+
+
+crs_code : str = 'EPSG:4326'
+
+
+
+
+filepath : str
+
+
+
+
+name : str = 'road'
+
+
+
+
+
+
+class saferoad. SafeRoad ( road : Road , ps_data : PsData , computational_crs : str ) [source]
+Bases: object
+A class to perform road deformation analysis using MT-InSAR data.
+
+Parameters:
+
+road (Road ) – An instance of the Road class containing road data information.
+ps_data (PsData ) – An instance of the PsData class containing MT-InSAR data information.
+computational_crs (str ) – A string representing the EPSG code for the computational CRS.
+
+
+
+
+
+generate_rectangles ( road_width : float , segment_length : float ) [source]
+Generate road segments and patches.
+This involves:
+1. Splitting the road into segments of equal length.
+2. Generating rectangles along the road segments with a specified width.
+2. Rotating the generated rectangles int the same direction along the road.
+
+Parameters:
+
+
+
+
+
+
+
+generate_report ( output_name : str ) [source]
+Generate a PDF report containing maps and time series plots.
+
+Parameters:
+output_name (str ) – A string representing the name of the output PDF file endswith .pdf extension.
+
+
+
+
+
+
+load_files ( ) [source]
+Load the road and MT-InSAR data files into the database.
+
+
+
+
+preprocess ( attribute : str = None ) [source]
+Preprocess the road and MT-InSAR data.
+This includes transforming the data to the computational CRS, dissolving road features,
+and building geometries for the MT-InSAR points.
+1. Transform the road and MT-InSAR data to the computational CRS.
+2. Dissolve road features based on the provided attribute if given, otherwise merge all features.
+3. Build geometries for the MT-InSAR points from the latitude and longitude columns.
+4. Transform the MT-InSAR data to the computational CRS.
+
+Parameters:
+attribute (str , optional ) – An optional string representing the attribute to dissolve road features.
+If None, all features will be merged. Default is None.
+
+
+
+
+
+
+run_analysis ( ) [source]
+Run the deformation analysis on the MT-InSAR data for road network.
+This includes calculating cumulative displacement, average velocity, point density,
+local control points, and outliers.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/api/saferoad.pipeline.html b/docs/build/html/api/saferoad.pipeline.html
new file mode 100644
index 0000000..5da4497
--- /dev/null
+++ b/docs/build/html/api/saferoad.pipeline.html
@@ -0,0 +1,1184 @@
+
+
+
+
+
+
+
+
+
saferoad.pipeline module — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ saferoad
+
+
+
+
+
+
+
+
+
+saferoad.pipeline module
+
+
+class saferoad.pipeline. Pipeline [source]
+Bases: object
+
+
+class Processing [source]
+Bases: object
+Processing class for processing road data.
+This class provides methods to load files into a database, dissolve features,
+split lines into segments, generate patches, and save tables as GeoJSON files.
+It assumes that the database connection is already established and that the
+necessary SQL functions for spatial operations are available.
+The methods in this class generate SQL queries that can be executed against
+a spatial database, such as DuckDB.
+The class does not handle database connections or query execution directly;
+it only generates the SQL queries as strings.
+The methods are static and can be called without instantiating the class.
+The class is designed to be used in a pipeline for processing road data,
+where each method can be chained together to perform a series of operations
+on the road data.
+The methods assume that the input data is already in a suitable format for
+processing, such as a GIS vector file for loading into a database or a table
+containing road geometries for dissolving and segmenting.
+The class is intended to be used in conjunction with a spatial database
+that supports SQL queries for spatial operations, such as DuckDB with
+the Spatial extension or PostGIS.
+The methods are designed to be flexible and can be adapted to different
+use cases by modifying the parameters passed to them.
+
+
+static build_geometry ( latitude : str , longitude : str , table_name : str ) → str [source]
+Build a geometry from latitude and longitude coordinates.
+This method generates an SQL query to build a geometry column in a table
+from latitude and longitude coordinates. It assumes that the input table
+contains columns for latitude and longitude.
+
+Parameters:
+
+latitude (str ) – The name of the column containing latitude values.
+longitude (str ) – The name of the column containing longitude values.
+table_name (str ) – The name of the table to add the geometry column to.
+
+
+Returns:
+SQL query string to build the geometry column.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_cum_disp ( ) → str [source]
+Calculate average cumulative displacement per patch.
+This method generates an SQL query to calculate the average cumulative
+displacement for each patch by averaging the displacement values of points
+within each patch. It assumes that the point table contains a geometry column,
+a displacement column, and that the patch table contains a geometry column
+and a unique identifier for each patch.
+
+Returns:
+SQL query string to calculate average cumulative displacement per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_disp_ts_gcp ( date_fields : list [ str ] ) [source]
+Calculate average displacement time series for patches (Average Local Displacement (ALD)).
+This method generates an SQL query to calculate the average displacement
+time series for each patch by averaging the displacement values of points within each patch
+for the specified date fields. It assumes that the point table contains a geometry column,
+displacement columns for each date field, and that the patch table contains a geometry column
+and a unique identifier for each patch.
+
+Parameters:
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+
+Returns:
+SQL query string to calculate average displacement time series per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_lcp_velocity ( table_name : str = 'pspoint' ) → str [source]
+Calculate average LCP velocity per patch.
+This method generates an SQL query to calculate the average velocity of
+local control points (LCPs) for each patch by averaging the average velocities
+of points within each patch based on their LCP velocities.
+
+Parameters:
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+Returns:
+SQL query string to calculate average LCP velocity per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_std_disp_ts_lcp ( date_fields : list [ str ] , table_name : str = 'pspoint' ) → str [source]
+Calculate average and standard deviation of displacement time series based on LCPs.
+This method generates an SQL query to calculate the average and standard
+deviation of displacement time series for each patch based on the displacement
+values of points within each patch relative to the local control point (LCP).
+It assumes that the point table contains columns for displacement values at
+different dates and that the patch table contains a geometry column and a unique
+identifier for each patch.
+
+Parameters:
+
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to calculate average and standard deviation of displacement time series based on LCPs.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_velocity ( time_vector : list [ float ] , field_names : list [ str ] , table_name : str = 'pspoint' ) → str [source]
+Calculate average velocity using linear regression.
+This method generates an SQL query to calculate the average velocity for
+each point in a table using linear regression on displacement values over time.
+It assumes that the input table contains columns for displacement values at different dates and that the time vector is provided in days.
+
+Parameters:
+
+time_vector (list [ float ] ) – List of time differences in days from the first date.
+field_names (list [ str ] ) – List of column names representing displacement values at different dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to calculate average velocity.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_velocity_gcp ( table_name : str = 'pspoint' ) → str [source]
+Calculate average velocity based on ground control points (GCPs) for patches.
+This method generates an SQL query to calculate the average velocity for each patch based on the average velocities of points within each patch.
+
+Parameters:
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+Returns:
+SQL query string to calculate average velocity based on GCPs for patches.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_avg_velocity_lcp ( table_name : str = 'pspoint' ) → str [source]
+Calculate average velocity based on local control points (LCPs) for points.
+This method generates an SQL query to calculate the average velocity for each point
+based on the average velocity of the local control point (LCP) associated with the patch
+to which the point belongs. It assumes that the point table contains a geometry column,
+an average velocity column based on ground control points (GCPs), and that the patch table
+contains a geometry column, a unique identifier for each patch, and the average velocity
+of the LCP.
+
+Parameters:
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+Returns:
+SQL query string to calculate average velocity based on LCPs for points.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_cum_disp ( dates : list [ str ] , table_name : str = 'pspoint' ) → str [source]
+Calculate cumulative displacement.
+This method generates an SQL query to calculate the cumulative displacement
+for each point in a table based on the provided date fields. It assumes that
+the input table contains columns for displacement values at different dates.
+
+Parameters:
+
+dates (list [ str ] ) – List of column names representing dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to calculate cumulative displacement.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_lcp_velocity ( ) → str [source]
+Calculate LCP velocity for patches.
+This method generates an SQL query to calculate the velocity of the linear control point (LCP)
+for each patch by retrieving the average velocity of the point identified as the LCP.
+
+Returns:
+SQL query string to calculate LCP velocity for patches.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_med_std_disp_ts_lcp ( date_fields : list [ str ] , table_name : str = 'pspoint' ) → str [source]
+Calculate average and standard deviation of displacement time series based on LCPs.
+This method generates an SQL query to calculate the average and standard
+deviation of displacement time series for each patch based on the displacement
+values of points within each patch relative to the local control point (LCP).
+It assumes that the point table contains columns for displacement values at
+different dates and that the patch table contains a geometry column and a unique
+identifier for each patch.
+
+Parameters:
+
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to calculate average and standard deviation of displacement time series based on LCPs.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_outliers ( scaling_factor : float , table_name : str = 'pspoint' ) → str [source]
+Identify outlier points based on absolute average velocity.
+This method generates an SQL query to identify outlier points based on their
+average velocity relative to local control points (LCPs). Points with an absolute
+average LCP velocity exceeding a specified threshold (5 mm/year) are
+marked as outliers by assigning their unique identifier to a new column in the
+patches table. The unit parameter allows for specifying the measurement unit
+(meters, centimeters, or millimeters) to appropriately scale the threshold.
+
+Parameters:
+
+scaling_factor (float ) – The factor to scale the velocity threshold based on the unit.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to identify outlier points.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_outliers_avg_lcd ( table_name : str = 'pspoint' , date_vector = list[int] , date_names = list[str] ) → str [source]
+Calculate outliers based on average local control displacement (LCD).
+This method generates an SQL query to identify outlier points based on their
+displacement time series relative to the average local control displacement (LCD)
+of their associated patches. Points with displacement values exceeding the average
+LCD by more than standard deviations at any time point are marked as outliers
+by inserting their unique identifier and patch ID into a new outliers table.
+
+Parameters:
+
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+date_vector (list [ int ] ) – List of time differences in days from the first date.
+date_names (list [ str ] ) – List of column names representing displacement values at different dates.
+
+
+Returns:
+SQL query string to identify outlier points based on average LCD.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_outliers_med_lcd ( table_name : str = 'pspoint' , date_vector = list[int] , date_names = list[str] ) → str [source]
+Calculate outliers based on median local control displacement (LCD).
+This method generates an SQL query to identify outlier points based on their
+displacement time series relative to the median local control displacement (LCD)
+of their associated patches. Points with displacement values exceeding the median
+LCD by more than standard deviations at any time point are marked as outliers
+by inserting their unique identifier and patch ID into a new outliers table.
+
+Parameters:
+
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+date_vector (list [ int ] ) – List of time differences in days from the first date.
+date_names (list [ str ] ) – List of column names representing displacement values at different dates.
+
+
+Returns:
+SQL query string to identify outlier points based on median LCD.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_point_density ( point_name : str , patch_name : str = 'patches' ) → str [source]
+Calculate point density per patch.
+This method generates an SQL query to calculate the point density per patch
+by counting the number of points within each patch and dividing by the area
+of the patch in square kilometers. It assumes that the point table contains
+a geometry column and that the patch table contains a geometry column and
+a unique identifier for each patch.
+
+Parameters:
+
+point_name (str ) – The name of the table containing the points.
+patch_name (str ) – The name of the table containing the patches, default is “patches”.
+
+
+Returns:
+SQL query string to calculate point density per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static calc_std_disp_ts_gcp ( date_fields : list [ str ] ) [source]
+Calculate standard deviation of displacement time series for patches based on global control point (GCP).
+This method generates an SQL query to calculate the standard deviation
+of displacement time series for each patch by computing the standard deviation of displacement values of points within each patch for the specified date fields.
+
+Parameters:
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+
+Returns:
+SQL query string to calculate standard deviation of displacement time series per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static dissolve_features ( attribute : str , table_name : str ) → str [source]
+Dissolve features in a table based on a specified attribute.
+This method generates an SQL query to dissolve features in a table
+based on the provided attribute. It assumes the table is already loaded
+into the database.
+
+Parameters:
+
+attribute (str ) – The attribute to dissolve features by.
+table_name (str ) – The name of the table containing the features, default is “road”.
+
+
+Returns:
+SQL query string to dissolve features.
+
+Return type:
+str
+
+
+
+
+
+
+static generate_patches ( width : float , length : float , table_name : str = 'segments' ) → str [source]
+Generate patches from segments.
+This method generates patches from segments by creating a rectangular
+envelope around each segment, rotated to align with the segment’s direction.
+The patches are created by translating and rotating the envelope to the
+start point of the segment, ensuring that each patch is oriented correctly
+along the segment’s direction.
+
+Parameters:
+
+width (float ) – The width of the patches in meters.
+length (float ) – The length of the patches in meters.
+table_name (str ) – The name of the table containing the segments, default is “segments”.
+
+
+Returns:
+SQL query string to create or replace the patches table.
+
+Return type:
+str
+
+
+
+
+
+
+static get_column_names ( table_name : str ) → str [source]
+Get column names from a table.
+This method generates an SQL query to retrieve the column names from a specified table.
+
+Parameters:
+table_name (str ) – The name of the table to retrieve column names from.
+
+Returns:
+SQL query string to get the column names.
+
+Return type:
+str
+
+
+
+
+
+
+static lcp_ts_patch ( date_fields : list [ str ] , table_name : str = 'pspoint' ) [source]
+Get Local Control Point’s displacement time series for patches.
+This method generates an SQL query to retrieve the displacement time series
+of the local control point (LCP) for each patch based on specified date fields.
+
+Parameters:
+
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to get LCP displacement time series for patches.
+
+Return type:
+str
+
+
+
+
+
+
+static load_file ( file_path : str , table_name : str ) → str [source]
+Load a file into a database table.
+Method validates the provided file path and determines if existing
+and determines the appropriate loading method based on the file type.
+It generates an SQL query to create or replace a table in the database
+with the contents of the file. The method supports CSV files and other
+GIS vector files, using different loading methods for each type.
+
+Parameters:
+
+
+Raises:
+AssertionError – If the file does not exist.
+
+Returns:
+SQL query string to create or replace the table with the file data.
+
+Return type:
+str
+
+
+
+
+
+
+static outlier_rel_ts_patch ( ) [source]
+Calculate outlier displacement time series relative to LCP for patches.
+This method generates an SQL query to calculate the displacement time series
+of outlier points relative to the displacement time series of their associated
+local control points (LCPs). It assumes that the outliers table contains a
+geometry column, a displacement time series column, and a patch ID column,
+and that the patches table contains a geometry column, a unique identifier
+for each patch, and a displacement time series column for the LCP.
+
+Returns:
+SQL query string to calculate outlier displacement time series relative to LCP for patches.
+
+Return type:
+str
+
+
+
+
+
+
+outlier_ts_patch ( table_name : str = 'pspoint' ) [source]
+Get outlier displacement time series for patches.
+This method generates an SQL query to retrieve the displacement time series
+of outlier points based on specified date fields.
+
+Parameters:
+
+date_fields (list [ str ] ) – List of column names representing displacement values at different dates.
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+
+Returns:
+SQL query string to get outlier displacement time series for patches.
+
+Return type:
+str
+
+
+
+
+
+
+static relate_point_patches ( point_name : str , patch_name : str = 'patches' ) → str [source]
+Relate points to patches by assigning patch IDs to points.
+This method generates an SQL query to relate points in one table to patches
+in another table by assigning patch IDs to points based on their spatial
+relationship. It assumes that the point table contains a geometry column
+and that the patch table contains a geometry column and a unique identifier
+for each patch.
+
+Parameters:
+
+point_name (str ) – The name of the table containing the points.
+patch_name (str ) – The name of the table containing the patches, default is “patches”.
+
+
+Returns:
+SQL query string to relate points to patches.
+
+Return type:
+str
+
+
+
+
+
+
+static select_lcps ( table_name : str = 'pspoint' ) → str [source]
+Select linear control points (LCPs) for patches.
+This method generates an SQL query to select local control points (LCPs) for each patch by identifying the point with the minimum absolute average velocity within each patch.
+
+Parameters:
+table_name (str ) – The name of the table containing the points, default is “pspoint”.
+
+Returns:
+SQL query string to select LCPs for patches.
+
+Return type:
+str
+
+
+
+
+
+
+static spatial_tranformation ( source_epsg : str , target_epsg : str , table_name : str ) → str [source]
+Transform geometries from one EPSG code to another.
+This method generates an SQL query to transform geometries in a table
+from one EPSG code to another. It assumes that the input table contains
+geometries in the source EPSG code and that the target EPSG code is valid.
+
+Parameters:
+
+source_epsg (str ) – The source EPSG code of the geometries.
+target_epsg (str ) – The target EPSG code to transform the geometries to.
+table_name (str ) – The name of the table containing the geometries, default is “patches”.
+
+
+Returns:
+SQL query string to transform the geometries.
+
+Return type:
+str
+
+
+
+
+
+
+static split_to_segments ( segment_length : float , table_name : str = 'dissolved' ) → str [source]
+Split lines into segments of a specified length.
+This method generates an SQL query to split lines in a table into segments
+of a specified length. It transforms the geometries to a computational
+coordinate reference system (CRS) and calculates the lengths in meters.
+The segments are created by generating windows of fixed length along the lines.
+The resulting segments are stored in a new table named “segments”.
+The method assumes that the input table is already dissolved and contains
+geometries in a suitable format.
+The segments are created by cutting the lines into fixed-length segments
+and filtering out any empty geometries.
+This method is useful for preparing road segments for further analysis or processing.
+It is particularly useful in road network analysis, where roads need to be
+divided into manageable segments for tasks such as traffic analysis, road condition
+assessment, or infrastructure planning.
+
+Parameters:
+
+segment_length (float ) – The length of each segment in meters.
+table_name (str ) – The name of the table containing the lines, default is “dissolved”.
+
+
+Returns:
+SQL query string to create or replace the segments table.
+
+Return type:
+str
+
+
+
+
+
+
+
+
+class Visualisation [source]
+Bases: object
+SQL queries for visualisation of results.
+2D visualisation is done in Web Mercator (EPSG:3857).
+
+
+static get_avg_cum_disp_graph ( patch_id : float , scaling_factor : float ) → str [source]
+Get average cumulative displacement time series.
+This method generates an SQL query to retrieve the average cumulative displacement
+time series for a specific patch, scaling the displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the average cumulative displacement time series for the specified patch.
+
+
+
+
+
+
+static get_avg_disp_lcp_graph ( patch_id : float , scaling_factor : float ) → str [source]
+Get average displacement time series based on local control points (LCPs).
+This method generates an SQL query to retrieve the average displacement time series
+based on local control points (LCPs) for a specific patch, scaling the displacement
+values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the average displacement time series based on LCPs for the specified patch.
+
+
+
+
+
+
+static get_center ( point_uid : float , source_crs : str ) → str [source]
+Get the center point of the outlier within a specific patch.
+This method generates an SQL query to retrieve the center point of the outlier
+within a specific patch, transforming the geometry from a source CRS to a target
+projection defined in the Visualisation class.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the center point of the outlier within the specified patch.
+
+
+
+
+
+
+static get_cum_disp_graph ( outlier_id : float , scaling_factor : float ) → str [source]
+Get outlier displacement time series.
+This method generates an SQL query to retrieve the outlier displacement time series
+for a specific patch, scaling the displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the outlier displacement time series for the specified patch.
+
+
+
+
+
+
+static get_cum_disp_map ( source_crs : str , scaling_factor : float ) → str [source]
+Get cumulative displacement per patch.
+This method generates an SQL query to retrieve the cumulative displacement
+for each patch, transforming the geometries from a source CRS to a target
+projection defined in the Visualisation class.
+
+Parameters:
+
+source_crs (str ) – The source coordinate reference system of the geometries.
+unit (str ) – The measurement unit for displacement (“m”, “cm”, or “mm”).
+
+
+Returns:
+SQL query string to get the cumulative displacement per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static get_lcp_disp_graph ( patch_id : float , scaling_factor : float ) → str [source]
+Get local control point (LCP) displacement time series.
+This method generates an SQL query to retrieve the local control point (LCP)
+displacement time series for a specific patch, scaling the displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the LCP displacement time series for the specified patch.
+
+
+
+
+
+
+static get_lcp_point ( patch_id : float , source_crs : str ) → str [source]
+Get the local control point (LCP) within a specific patch.
+This method generates an SQL query to retrieve the local control point (LCP)
+within a specific patch, transforming the geometry from a source CRS to a target
+projection defined in the Visualisation class.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the LCP within the specified patch.
+
+
+
+
+
+
+static get_outlier_points ( patch_id : float , source_crs : str ) → str [source]
+Get the outlier points within a specific patch.
+This method generates an SQL query to retrieve the outlier point within a specific patch,
+transforming the geometry from a source CRS to a target projection defined in the Visualisation class.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the outlier point within the specified patch.
+
+
+
+
+
+
+get_outlier_rel_ts_graph ( scaling_factor : float ) → str [source]
+Get outlier relative displacement time series.
+This method generates an SQL query to retrieve the outlier relative displacement
+time series for a specific patch, scaling the displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the outlier relative displacement time series for the specified patch.
+
+
+
+
+
+
+static get_outliers_map ( source_crs : str , scaling_factor : float ) → str [source]
+Get outlier points based on absolute average LCP velocity.
+This method generates an SQL query to retrieve outlier points based on their
+average velocity relative to local control points (LCPs). Points with an absolute
+average LCP velocity exceeding a specified threshold (5 mm/year) are
+marked as outliers by assigning their unique identifier to a new column in the
+patches table. The unit parameter allows for specifying the measurement unit
+(meters, centimeters, or millimeters) to appropriately scale the threshold.
+
+Parameters:
+
+
+Returns:
+SQL query string to identify outlier points.
+
+Return type:
+str
+
+
+
+
+
+
+static get_patch_center ( patch_id : float , source_crs : str ) → str [source]
+Get the center point of a specific patch.
+This method generates an SQL query to retrieve the center point of a specific
+patch, transforming the geometry from a source CRS to a target projection defined in the Visualisation class.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the center point of the specified patch.
+
+
+
+
+
+
+static get_ps_density ( source_crs : str ) → str [source]
+Get point density per patch.
+This method generates an SQL query to retrieve the point density for each patch,
+transforming the geometries from a source CRS to a target projection defined
+in the Visualisation class.
+
+Parameters:
+source_crs (str ) – The source coordinate reference system of the geometries.
+
+Returns:
+SQL query string to get the point density per patch.
+
+Return type:
+str
+
+
+
+
+
+
+static get_ps_points ( patch_id : float , source_crs : str , table_name : str ) → str [source]
+Get points within a specific patch.
+This method generates an SQL query to retrieve points within a specific patch,
+transforming the geometries from a source CRS to a target projection defined
+in the Visualisation class.
+
+Parameters:
+
+patch_id (float ) – The unique identifier of the patch.
+source_crs (str ) – The source coordinate reference system of the geometries.
+table_name (str ) – The name of the table containing the points.
+
+
+Returns:
+SQL query string to get the points within the specified patch.
+
+Return type:
+str
+
+
+
+
+
+
+static get_ps_vel_gcp ( source_crs : str , scaling_factor : float ) → str [source]
+Get average velocity based on ground control points (GCPs).
+This method generates an SQL query to retrieve the average velocity for
+each point based on ground control points (GCPs), transforming the geometries
+from a source CRS to a target projection defined in the Visualisation class.
+
+Parameters:
+
+source_crs (str ) – The source coordinate reference system of the geometries.
+unit (str ) – The measurement unit for velocity (“m”, “cm”, or “mm”).
+
+
+Returns:
+SQL query string to get the average velocity based on GCPs.
+
+Return type:
+str
+
+
+
+
+
+
+static get_ps_vel_lcp ( source_crs : str , scaling_factor : float ) → str [source]
+Get average velocity based on local control points (LCPs).
+This method generates an SQL query to retrieve the average velocity for
+each point based on local control points (LCPs), transforming the geometries
+from a source CRS to a target projection defined in the Visualisation class.
+
+Parameters:
+
+source_crs (str ) – The source coordinate reference system of the geometries.
+unit (str ) – The measurement unit for velocity (“m”, “cm”, or “mm”).
+
+
+Returns:
+SQL query string to get the average velocity based on LCPs.
+
+Return type:
+str
+
+
+
+
+
+
+static get_std_cum_disp_graph ( patch_id : float , scaling_factor : float ) → str [source]
+Get standard deviation of cumulative displacement time series.
+This method generates an SQL query to retrieve the standard deviation of cumulative
+displacement time series for a specific patch, scaling the displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the standard deviation of cumulative displacement time series for the specified patch.
+
+
+
+
+
+
+static get_std_disp_lcp_graph ( patch_id : float , scaling_factor : float ) → str [source]
+Get standard deviation of displacement time series based on local control points (LCPs).
+This method generates an SQL query to retrieve the standard deviation of displacement
+time series based on local control points (LCPs) for a specific patch, scaling the
+displacement values by a specified factor.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the standard deviation of displacement time series based on LCPs for the specified patch.
+
+
+
+
+
+
+static get_table_bbox ( table_name : str , source_crs : str ) → str [source]
+Get the bounding box of a table in a specified projection.
+This method generates an SQL query to retrieve the bounding box of geometries
+from a specified table, transforming the geometries from a source CRS to
+a target projection defined in the Visualisation class.
+
+Parameters:
+
+
+Returns:
+SQL query string to get the bounding box of the table.
+
+Return type:
+str
+
+
+
+
+
+
+static patch_uids ( ) → str [source]
+Get all patch UIDs that have outliers.
+This method generates an SQL query to retrieve all unique identifiers (UIDs)
+of patches that have been identified as containing outliers.
+
+Returns:
+SQL query string to get all patch UIDs with outliers.
+
+Return type:
+str
+
+
+
+
+
+
+projection = 'EPSG:3857'
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/api/saferoad.plotter.html b/docs/build/html/api/saferoad.plotter.html
new file mode 100644
index 0000000..4d798a6
--- /dev/null
+++ b/docs/build/html/api/saferoad.plotter.html
@@ -0,0 +1,584 @@
+
+
+
+
+
+
+
+
+
saferoad.plotter module — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ saferoad
+
+
+
+
+
+
+
+
+
+saferoad.plotter module
+
+
+class saferoad.plotter. Plotter [source]
+Bases: object
+Class to create and manage plots for geospatial data analysis.
+
+
+class MapPane [source]
+Bases: object
+Class to create and manage a multi-panel map figure.
+Panels include:
+- PS Density
+- Outliers
+- Cumulative Displacement
+- PS Velocity based on GCP
+- PS Velocity based on LCP
+
+
+cum_disp_color_label ( value : float ) → str [source]
+Returns color and label based on cumulative displacement value.
+
+Parameters:
+value (float ) – Cumulative displacement value.
+
+Returns:
+Tuple containing color and label.
+
+Return type:
+tuple[str, str]
+
+
+
+
+
+
+gcp_vel_color ( value : float ) → str [source]
+Returns color based on GCP velocity value.
+
+Parameters:
+value (float ) – GCP velocity value.
+
+Returns:
+Color string.
+
+Return type:
+str
+
+
+
+
+
+
+generate_figure ( ) [source]
+Generates a multi-panel figure with specified layout and titles.
+
+
+
+
+get_figure ( ) → tuple [ Figure , list [ Axes ] ] [source]
+Returns the figure and axes.
+
+Returns:
+Tuple containing the figure and axes.
+
+Return type:
+tuple[plt.Figure, list[plt.Axes]]
+
+
+
+
+
+
+lcp_vel_color ( value : float ) → str [source]
+Returns color based on LCP velocity value.
+
+Parameters:
+value (float ) – LCP velocity value.
+
+Returns:
+Color string.
+
+Return type:
+str
+
+
+
+
+
+
+outlier_color_label ( value : float ) → tuple [ str , str ] [source]
+Returns color and label based on outlier velocity value.
+
+Parameters:
+value (float ) – Outlier velocity value.
+
+Returns:
+Tuple containing color and label.
+
+Return type:
+tuple[str, str]
+
+
+
+
+
+
+plot_basemap ( bbox : tuple [ float , float , float , float ] ) [source]
+Plots a basemap on all axes using the provided bounding box.
+
+Parameters:
+bbox – A tuple representing the bounding box (minx, miny, maxx, maxy).
+
+
+
+
+
+
+plot_cum_disp ( plot_data : list [ tuple ] ) → None [source]
+Plots cumulative displacement data on the third axis.
+
+Parameters:
+plot_data – List of tuples containing geometry and cumulative displacement value.
+
+
+
+
+
+
+plot_gcp_velocity ( plot_data : list [ tuple ] ) → None [source]
+Plots GCP velocity data on the fourth axis.
+
+Parameters:
+plot_data – List of tuples containing geometry and GCP velocity value.
+
+
+
+
+
+
+plot_lcp_velocity ( plot_data : list [ tuple ] ) → None [source]
+Plots LCP velocity data on the fifth axis.
+
+Parameters:
+plot_data – List of tuples containing geometry and LCP velocity value.
+
+
+
+
+
+
+plot_outliers ( plot_data : list [ tuple ] ) → None [source]
+Plots outlier data on the second axis.
+
+Parameters:
+plot_data – List of tuples containing geometry and outlier velocity value.
+
+
+
+
+
+
+plot_ps_density ( plot_data : list [ tuple ] ) → None [source]
+Plots PS Density data on the first axis.
+
+Parameters:
+plot_data – List of tuples containing geometry and PS density value.
+
+
+
+
+
+
+post_process ( ) [source]
+Post-processes the figure for better aesthetics.
+
+
+
+
+ps_density_color_label ( value : float ) → tuple [ str , str ] [source]
+Returns color and label based on PS density value.
+
+Parameters:
+value (float ) – PS density value.
+
+Returns:
+Tuple containing color and label.
+
+Return type:
+tuple[str, str]
+
+
+
+
+
+
+
+
+class TimeSeriesPane [source]
+Bases: object
+Class to create and manage a multi-panel time series figure.
+Panels include:
+- Basemap with Outliers
+- Basemap with PS Points
+- Cumulative Displacement
+- Relative Displacement
+- Local Control Point Displacement
+
+
+generate_figure ( ) [source]
+Generates a multi-panel figure with specified layout and titles.
+
+
+
+
+get_figure ( ) → tuple [ Figure , list [ Axes ] ] [source]
+Returns the figure and axes.
+
+Returns:
+Tuple containing the figure and axes.
+
+Return type:
+tuple[plt.Figure, list[plt.Axes]]
+
+
+
+
+
+
+outlier_color_label ( value : float ) → tuple [ str , str ] [source]
+Returns color and label based on outlier velocity value.
+
+Parameters:
+value (float ) – Outlier velocity value.
+
+Returns:
+Tuple containing color and label.
+
+Return type:
+tuple[str, str]
+
+
+
+
+
+
+plot_all_outliers ( plot_data : list [ tuple ] ) → None [source]
+Plots all outlier data on the first axis.
+
+Parameters:
+plot_data (list [ tuple ] ) – List of tuples containing geometry and outlier velocity value.
+
+
+
+
+
+
+plot_avg_disp_graph ( plot_data : list [ tuple ] , dates : list [ datetime ] ) → None [source]
+Plots average cumulative displacement data on the third axis.
+
+Parameters:
+
+
+
+
+
+
+
+plot_avg_lcp_disp_graph ( plot_data : list [ tuple ] , dates : list [ datetime ] ) → None [source]
+Plots average LCP displacement data on the fifth axis.
+
+Parameters:
+
+
+
+
+
+
+
+plot_avg_rel_disp_graph ( plot_data : list [ tuple ] , dates : list [ datetime ] ) → None [source]
+Plots average relative displacement data on the fourth axis.
+
+Parameters:
+
+
+
+
+
+
+
+plot_basemap_outlier ( center : tuple [ float , float ] ) [source]
+Plots a basemap on the first axis using the provided center point.
+
+Parameters:
+center (tuple [ float , float ] ) – A tuple representing the center point (x, y).
+
+
+
+
+
+
+plot_basemap_pspoint ( center : tuple [ float , float ] ) [source]
+Plots a basemap on the second axis using the provided center point.
+
+Parameters:
+center (tuple [ float , float ] ) – A tuple representing the center point (x, y).
+
+
+
+
+
+
+plot_cum_disp_graph ( plot_data : list [ tuple ] , dates : list [ datetime ] ) → None [source]
+Plots cumulative displacement data on the third axis.
+
+Parameters:
+
+
+
+
+
+
+
+plot_lcp ( plot_data : list [ tuple ] ) → None [source]
+Plots LCP data on the second axis.
+
+Parameters:
+plot_data (list [ tuple ] ) – List of tuples containing geometry.
+
+
+
+
+
+
+plot_lcp_disp_graph ( plot_data : list [ tuple ] , dates : list [ datetime ] ) → None [source]
+Plots LCP displacement data on the fifth axis.
+
+Parameters:
+
+
+
+
+
+
+
+plot_outlier ( plot_data : list [ tuple ] ) → None [source]
+Plots outlier data on the second axis.
+
+Parameters:
+plot_data (list [ tuple ] ) – List of tuples containing geometry and outlier velocity value.
+
+
+
+
+
+
+plot_pspoint_dist ( plot_data : list [ tuple ] ) → None [source]
+Plots PS Points on the second axis.
+
+Parameters:
+plot_data (list [ tuple ] ) – List of tuples containing geometry.
+
+
+
+
+
+
+plot_rel_disp_graph ( plot_data : list [ tuple ] , dates : list [ datetime ] ) → None [source]
+Plots relative displacement data on the fourth axis.
+
+Parameters:
+
+
+
+
+
+
+
+plot_square ( plot_data : list [ tuple ] ) → None [source]
+Plots a square on the first axis to indicate zoom area.
+
+Parameters:
+plot_data (list [ tuple ] ) – List of tuples containing geometry and outlier velocity value.
+
+
+
+
+
+
+plot_std_disp_graph ( avg_data : list [ tuple ] , std_data : list [ tuple ] , dates : list [ datetime ] ) [source]
+Plots standard deviation of cumulative displacement data on the third axis.
+
+Parameters:
+
+avg_data (list [ tuple ] ) – List of tuples containing average cumulative displacement values.
+std_data (list [ tuple ] ) – List of tuples containing standard deviation of cumulative displacement values.
+dates (list [ datetime ] ) – List of datetime objects corresponding to the displacement values.
+
+
+
+
+
+
+
+plot_std_lcp_disp_graph ( avg_data : list [ tuple ] , std_data : list [ tuple ] , dates : list [ datetime ] ) [source]
+Plots standard deviation of LCP displacement data on the fifth axis.
+
+Parameters:
+
+avg_data (list [ tuple ] ) – List of tuples containing average LCP displacement values.
+std_data (list [ tuple ] ) – List of tuples containing standard deviation of LCP displacement values.
+dates (list [ datetime ] ) – List of datetime objects corresponding to the displacement values.
+
+
+
+
+
+
+
+plot_std_rel_disp_graph ( avg_data : list [ tuple ] , std_data : list [ tuple ] , dates : list [ datetime ] ) [source]
+Plots standard deviation of relative displacement data on the fourth axis.
+
+Parameters:
+
+avg_data (list [ tuple ] ) – List of tuples containing average relative displacement values.
+std_data (list [ tuple ] ) – List of tuples containing standard deviation of relative displacement values.
+dates (list [ datetime ] ) – List of datetime objects corresponding to the displacement values.
+
+
+
+
+
+
+
+post_process ( ) [source]
+Post-processes the figure for better aesthetics.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/api/saferoad.saferoad.html b/docs/build/html/api/saferoad.saferoad.html
new file mode 100644
index 0000000..b375416
--- /dev/null
+++ b/docs/build/html/api/saferoad.saferoad.html
@@ -0,0 +1,282 @@
+
+
+
+
+
+
+
+
+
saferoad.saferoad module — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ saferoad
+
+
+
+
+
+
+
+
+
+saferoad.saferoad module
+
+
+class saferoad.saferoad. PsData ( filepath : str , latitude : str , longitude : str , unit : Literal [ 'm' , 'cm' , 'mm' ] = 'm' , crs_code : str = 'EPSG:4326' , name : str = 'pspoint' ) [source]
+Bases: object
+Class for storing point source data information.
+
+Parameters:
+
+filepath (str ) – Path to the point source data file.
+latitude (str ) – Field name of the latitude field in the data file.
+longitude (str ) – Field name of the longitude field in the data file.
+unit (Literal [ "m" , "cm" , "mm" ] ) – Unit of measurement for the coordinates. Options are “m”, “cm”, or “mm”. Default is “m”.
+crs_code (str ) – Coordinate Reference System code. Default is “EPSG:4326”.
+name (str ) – Name identifier for the point source data. Default is “pspoint”.
+
+
+
+
+
+crs_code : str = 'EPSG:4326'
+
+
+
+
+filepath : str
+
+
+
+
+latitude : str
+
+
+
+
+longitude : str
+
+
+
+
+name : str = 'pspoint'
+
+
+
+
+unit : Literal [ 'm' , 'cm' , 'mm' ] = 'm'
+
+
+
+
+
+
+class saferoad.saferoad. Road ( filepath : str , crs_code : str = 'EPSG:4326' , name : str = 'road' ) [source]
+Bases: object
+Class for storing road data information.
+
+Parameters:
+
+filepath (str ) – Path to the road data file.
+crs_code (str ) – Coordinate Reference System code. Default is “EPSG:4326”.
+name (str ) – Name identifier for the road data. Default is “road”.
+
+
+
+
+
+crs_code : str = 'EPSG:4326'
+
+
+
+
+filepath : str
+
+
+
+
+name : str = 'road'
+
+
+
+
+
+
+class saferoad.saferoad. SafeRoad ( road : Road , ps_data : PsData , computational_crs : str ) [source]
+Bases: object
+A class to perform road deformation analysis using MT-InSAR data.
+
+Parameters:
+
+road (Road ) – An instance of the Road class containing road data information.
+ps_data (PsData ) – An instance of the PsData class containing MT-InSAR data information.
+computational_crs (str ) – A string representing the EPSG code for the computational CRS.
+
+
+
+
+
+generate_rectangles ( road_width : float , segment_length : float ) [source]
+Generate road segments and patches.
+This involves:
+1. Splitting the road into segments of equal length.
+2. Generating rectangles along the road segments with a specified width.
+2. Rotating the generated rectangles int the same direction along the road.
+
+Parameters:
+
+
+
+
+
+
+
+generate_report ( output_name : str ) [source]
+Generate a PDF report containing maps and time series plots.
+
+Parameters:
+output_name (str ) – A string representing the name of the output PDF file endswith .pdf extension.
+
+
+
+
+
+
+load_files ( ) [source]
+Load the road and MT-InSAR data files into the database.
+
+
+
+
+preprocess ( attribute : str = None ) [source]
+Preprocess the road and MT-InSAR data.
+This includes transforming the data to the computational CRS, dissolving road features,
+and building geometries for the MT-InSAR points.
+1. Transform the road and MT-InSAR data to the computational CRS.
+2. Dissolve road features based on the provided attribute if given, otherwise merge all features.
+3. Build geometries for the MT-InSAR points from the latitude and longitude columns.
+4. Transform the MT-InSAR data to the computational CRS.
+
+Parameters:
+attribute (str , optional ) – An optional string representing the attribute to dissolve road features.
+If None, all features will be merged. Default is None.
+
+
+
+
+
+
+run_analysis ( ) [source]
+Run the deformation analysis on the MT-InSAR data for road network.
+This includes calculating cumulative displacement, average velocity, point density,
+local control points, and outliers.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/api/saferoad.utils.html b/docs/build/html/api/saferoad.utils.html
new file mode 100644
index 0000000..ed98e63
--- /dev/null
+++ b/docs/build/html/api/saferoad.utils.html
@@ -0,0 +1,164 @@
+
+
+
+
+
+
+
+
+
saferoad.utils module — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ saferoad
+
+
+
+
+
+
+
+
+
+saferoad.utils module
+
+
+class saferoad.utils. Timer ( name = None ) [source]
+Bases: object
+Context manager for timing code execution.
+
+
+
+
+Extracts date fields from a list of column names.
+
+Parameters:
+column_names (list [ str ] ) – List of column names to search for dates.
+
+Returns:
+A tuple containing two numpy arrays: one with the column names and another with the parsed date objects.
+
+Return type:
+tuple[ndarray, ndarray]
+
+
+
+
+
+
+saferoad.utils. time_vector ( dates : list [ datetime ] ) → array [source]
+Generates a time vector in days from a list of datetime objects.
+
+Parameters:
+dates (list [ datetime ] ) – List of datetime objects.
+
+Returns:
+List of time differences in days from the first date.
+
+Return type:
+list[float]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/genindex.html b/docs/build/html/genindex.html
new file mode 100644
index 0000000..0cf08e3
--- /dev/null
+++ b/docs/build/html/genindex.html
@@ -0,0 +1,802 @@
+
+
+
+
+
+
+
+
Index — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ saferoad
+
+
+
+
+
+
+
+
+
+
Index
+
+
+
B
+ |
C
+ |
D
+ |
E
+ |
F
+ |
G
+ |
I
+ |
L
+ |
M
+ |
N
+ |
O
+ |
P
+ |
R
+ |
S
+ |
T
+ |
U
+
+
+
B
+
+
+
C
+
+
+
D
+
+
+
E
+
+
+
F
+
+
+
G
+
+
+
I
+
+
+
L
+
+
+
M
+
+
+
N
+
+
+
O
+
+
+
P
+
+
+
R
+
+
+
S
+
+
+
+ saferoad
+
+
+ SafeRoad (class in saferoad)
+
+
+
+ saferoad.database
+
+
+
+ saferoad.pipeline
+
+
+
+ saferoad.plotter
+
+
+
+ saferoad.saferoad
+
+
+
+
+
+
+
T
+
+
+
U
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/index.html b/docs/build/html/index.html
new file mode 100644
index 0000000..5e41aff
--- /dev/null
+++ b/docs/build/html/index.html
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
Welcome to SafeRoad’s Documentation — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ saferoad
+
+
+
+
+
+
+
+
+
+Welcome to SafeRoad’s Documentation
+SafeRoad is an open-source Python library designed to monitor the structural condition of the road network by providing tools for data analysis and visualisation.
+It aims to assist researchers, policymakers, and developers in understanding and mitigating structural safety issues of road networks.
+SafeRoad is built with a focus on usability, performance, and extensibility. It uses modern Python libraries such as duckdb ,
+shapely , matplotlib and contextily to provide a robust framework for road network safety analysis.
+You can access the relavant paper from here .
+
+Summary
+SafeRoad offers a comprehensive suite of features, including:
+
+Data preprocessing tools for cleaning and organizing road and Multi-Temporal dataset.
+Visualisation utilities to generate insightful charts and graphs.
+Statistical analysis methods to identify trends and patterns.
+Extensible APIs for integrating with other applications.
+
+The library is modular, user-friendly, and well-documented, making it suitable for both beginners and experts in the field of structural safety.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/objects.inv b/docs/build/html/objects.inv
new file mode 100644
index 0000000..faf4841
Binary files /dev/null and b/docs/build/html/objects.inv differ
diff --git a/docs/build/html/py-modindex.html b/docs/build/html/py-modindex.html
new file mode 100644
index 0000000..667b493
--- /dev/null
+++ b/docs/build/html/py-modindex.html
@@ -0,0 +1,145 @@
+
+
+
+
+
+
+
+
Python Module Index — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ saferoad
+
+
+
+
+
+
+
+ Python Module Index
+
+
+
+
+
+
+
+
+
+
Python Module Index
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/search.html b/docs/build/html/search.html
new file mode 100644
index 0000000..563484d
--- /dev/null
+++ b/docs/build/html/search.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
Search — saferoad 0.1 documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ saferoad
+
+
+
+
+
+
+
+
+
+
+
+ Please activate JavaScript to enable the search functionality.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/build/html/searchindex.js b/docs/build/html/searchindex.js
new file mode 100644
index 0000000..bbaeb56
--- /dev/null
+++ b/docs/build/html/searchindex.js
@@ -0,0 +1 @@
+Search.setIndex({"alltitles":{"Contents:":[[7,null]],"Module contents":[[1,"module-saferoad"]],"Submodules":[[1,"submodules"]],"Summary":[[7,"summary"]],"Welcome to SafeRoad\u2019s Documentation":[[7,null]],"saferoad":[[0,null]],"saferoad package":[[1,null]],"saferoad.database module":[[2,null]],"saferoad.pipeline module":[[3,null]],"saferoad.plotter module":[[4,null]],"saferoad.saferoad module":[[5,null]],"saferoad.utils module":[[6,null]]},"docnames":["api/modules","api/saferoad","api/saferoad.database","api/saferoad.pipeline","api/saferoad.plotter","api/saferoad.saferoad","api/saferoad.utils","index"],"envversion":{"sphinx":65,"sphinx.domains.c":3,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":9,"sphinx.domains.index":1,"sphinx.domains.javascript":3,"sphinx.domains.math":2,"sphinx.domains.python":4,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.viewcode":1},"filenames":["api/modules.rst","api/saferoad.rst","api/saferoad.database.rst","api/saferoad.pipeline.rst","api/saferoad.plotter.rst","api/saferoad.saferoad.rst","api/saferoad.utils.rst","index.rst"],"indexentries":{"build_geometry() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.build_geometry",false]],"build_geometry() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.build_geometry",false]],"calc_avg_cum_disp() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_avg_cum_disp",false]],"calc_avg_cum_disp() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_avg_cum_disp",false]],"calc_avg_disp_ts_gcp() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_avg_disp_ts_gcp",false]],"calc_avg_disp_ts_gcp() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_avg_disp_ts_gcp",false]],"calc_avg_lcp_velocity() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_avg_lcp_velocity",false]],"calc_avg_lcp_velocity() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_avg_lcp_velocity",false]],"calc_avg_std_disp_ts_lcp() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_avg_std_disp_ts_lcp",false]],"calc_avg_std_disp_ts_lcp() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_avg_std_disp_ts_lcp",false]],"calc_avg_velocity() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_avg_velocity",false]],"calc_avg_velocity() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_avg_velocity",false]],"calc_avg_velocity_gcp() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_avg_velocity_gcp",false]],"calc_avg_velocity_gcp() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_avg_velocity_gcp",false]],"calc_avg_velocity_lcp() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_avg_velocity_lcp",false]],"calc_avg_velocity_lcp() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_avg_velocity_lcp",false]],"calc_cum_disp() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_cum_disp",false]],"calc_cum_disp() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_cum_disp",false]],"calc_lcp_velocity() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_lcp_velocity",false]],"calc_lcp_velocity() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_lcp_velocity",false]],"calc_med_std_disp_ts_lcp() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_med_std_disp_ts_lcp",false]],"calc_med_std_disp_ts_lcp() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_med_std_disp_ts_lcp",false]],"calc_outliers() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_outliers",false]],"calc_outliers() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_outliers",false]],"calc_outliers_avg_lcd() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_outliers_avg_lcd",false]],"calc_outliers_avg_lcd() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_outliers_avg_lcd",false]],"calc_outliers_med_lcd() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_outliers_med_lcd",false]],"calc_outliers_med_lcd() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_outliers_med_lcd",false]],"calc_point_density() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_point_density",false]],"calc_point_density() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_point_density",false]],"calc_std_disp_ts_gcp() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.calc_std_disp_ts_gcp",false]],"calc_std_disp_ts_gcp() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.calc_std_disp_ts_gcp",false]],"crs_code (saferoad.psdata attribute)":[[1,"saferoad.PsData.crs_code",false]],"crs_code (saferoad.road attribute)":[[1,"saferoad.Road.crs_code",false]],"crs_code (saferoad.saferoad.psdata attribute)":[[5,"saferoad.saferoad.PsData.crs_code",false]],"crs_code (saferoad.saferoad.road attribute)":[[5,"saferoad.saferoad.Road.crs_code",false]],"cum_disp_color_label() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.cum_disp_color_label",false]],"database (class in saferoad)":[[1,"saferoad.DataBase",false]],"database (class in saferoad.database)":[[2,"saferoad.database.DataBase",false]],"dissolve_features() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.dissolve_features",false]],"dissolve_features() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.dissolve_features",false]],"extract_dates() (in module saferoad.utils)":[[6,"saferoad.utils.extract_dates",false]],"filepath (saferoad.psdata attribute)":[[1,"saferoad.PsData.filepath",false]],"filepath (saferoad.road attribute)":[[1,"saferoad.Road.filepath",false]],"filepath (saferoad.saferoad.psdata attribute)":[[5,"saferoad.saferoad.PsData.filepath",false]],"filepath (saferoad.saferoad.road attribute)":[[5,"saferoad.saferoad.Road.filepath",false]],"gcp_vel_color() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.gcp_vel_color",false]],"generate_figure() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.generate_figure",false]],"generate_figure() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.generate_figure",false]],"generate_patches() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.generate_patches",false]],"generate_patches() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.generate_patches",false]],"generate_rectangles() (saferoad.saferoad method)":[[1,"saferoad.SafeRoad.generate_rectangles",false]],"generate_rectangles() (saferoad.saferoad.saferoad method)":[[5,"saferoad.saferoad.SafeRoad.generate_rectangles",false]],"generate_report() (saferoad.saferoad method)":[[1,"saferoad.SafeRoad.generate_report",false]],"generate_report() (saferoad.saferoad.saferoad method)":[[5,"saferoad.saferoad.SafeRoad.generate_report",false]],"get_avg_cum_disp_graph() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_avg_cum_disp_graph",false]],"get_avg_cum_disp_graph() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_avg_cum_disp_graph",false]],"get_avg_disp_lcp_graph() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_avg_disp_lcp_graph",false]],"get_avg_disp_lcp_graph() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_avg_disp_lcp_graph",false]],"get_center() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_center",false]],"get_center() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_center",false]],"get_column_names() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.get_column_names",false]],"get_column_names() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.get_column_names",false]],"get_cum_disp_graph() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_cum_disp_graph",false]],"get_cum_disp_graph() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_cum_disp_graph",false]],"get_cum_disp_map() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_cum_disp_map",false]],"get_cum_disp_map() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_cum_disp_map",false]],"get_figure() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.get_figure",false]],"get_figure() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.get_figure",false]],"get_lcp_disp_graph() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_lcp_disp_graph",false]],"get_lcp_disp_graph() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_lcp_disp_graph",false]],"get_lcp_point() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_lcp_point",false]],"get_lcp_point() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_lcp_point",false]],"get_outlier_points() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_outlier_points",false]],"get_outlier_points() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_outlier_points",false]],"get_outlier_rel_ts_graph() (saferoad.pipeline.pipeline.visualisation method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_outlier_rel_ts_graph",false]],"get_outlier_rel_ts_graph() (saferoad.pipeline.visualisation method)":[[1,"saferoad.Pipeline.Visualisation.get_outlier_rel_ts_graph",false]],"get_outliers_map() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_outliers_map",false]],"get_outliers_map() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_outliers_map",false]],"get_patch_center() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_patch_center",false]],"get_patch_center() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_patch_center",false]],"get_ps_density() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_ps_density",false]],"get_ps_density() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_ps_density",false]],"get_ps_points() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_ps_points",false]],"get_ps_points() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_ps_points",false]],"get_ps_vel_gcp() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_ps_vel_gcp",false]],"get_ps_vel_gcp() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_ps_vel_gcp",false]],"get_ps_vel_lcp() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_ps_vel_lcp",false]],"get_ps_vel_lcp() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_ps_vel_lcp",false]],"get_std_cum_disp_graph() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_std_cum_disp_graph",false]],"get_std_cum_disp_graph() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_std_cum_disp_graph",false]],"get_std_disp_lcp_graph() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_std_disp_lcp_graph",false]],"get_std_disp_lcp_graph() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_std_disp_lcp_graph",false]],"get_table_bbox() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.get_table_bbox",false]],"get_table_bbox() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.get_table_bbox",false]],"init_database_path() (saferoad.database method)":[[1,"saferoad.DataBase.init_database_path",false]],"init_database_path() (saferoad.database.database method)":[[2,"saferoad.database.DataBase.init_database_path",false]],"latitude (saferoad.psdata attribute)":[[1,"saferoad.PsData.latitude",false]],"latitude (saferoad.saferoad.psdata attribute)":[[5,"saferoad.saferoad.PsData.latitude",false]],"lcp_ts_patch() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.lcp_ts_patch",false]],"lcp_ts_patch() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.lcp_ts_patch",false]],"lcp_vel_color() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.lcp_vel_color",false]],"load_file() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.load_file",false]],"load_file() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.load_file",false]],"load_files() (saferoad.saferoad method)":[[1,"saferoad.SafeRoad.load_files",false]],"load_files() (saferoad.saferoad.saferoad method)":[[5,"saferoad.saferoad.SafeRoad.load_files",false]],"longitude (saferoad.psdata attribute)":[[1,"saferoad.PsData.longitude",false]],"longitude (saferoad.saferoad.psdata attribute)":[[5,"saferoad.saferoad.PsData.longitude",false]],"module":[[1,"module-saferoad",false],[2,"module-saferoad.database",false],[3,"module-saferoad.pipeline",false],[4,"module-saferoad.plotter",false],[5,"module-saferoad.saferoad",false],[6,"module-saferoad.utils",false]],"name (saferoad.psdata attribute)":[[1,"saferoad.PsData.name",false]],"name (saferoad.road attribute)":[[1,"saferoad.Road.name",false]],"name (saferoad.saferoad.psdata attribute)":[[5,"saferoad.saferoad.PsData.name",false]],"name (saferoad.saferoad.road attribute)":[[5,"saferoad.saferoad.Road.name",false]],"outlier_color_label() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.outlier_color_label",false]],"outlier_color_label() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.outlier_color_label",false]],"outlier_rel_ts_patch() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.outlier_rel_ts_patch",false]],"outlier_rel_ts_patch() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.outlier_rel_ts_patch",false]],"outlier_ts_patch() (saferoad.pipeline.pipeline.processing method)":[[3,"saferoad.pipeline.Pipeline.Processing.outlier_ts_patch",false]],"outlier_ts_patch() (saferoad.pipeline.processing method)":[[1,"saferoad.Pipeline.Processing.outlier_ts_patch",false]],"patch_uids() (saferoad.pipeline.pipeline.visualisation static method)":[[3,"saferoad.pipeline.Pipeline.Visualisation.patch_uids",false]],"patch_uids() (saferoad.pipeline.visualisation static method)":[[1,"saferoad.Pipeline.Visualisation.patch_uids",false]],"pipeline (class in saferoad)":[[1,"saferoad.Pipeline",false]],"pipeline (class in saferoad.pipeline)":[[3,"saferoad.pipeline.Pipeline",false]],"pipeline.processing (class in saferoad)":[[1,"saferoad.Pipeline.Processing",false]],"pipeline.processing (class in saferoad.pipeline)":[[3,"saferoad.pipeline.Pipeline.Processing",false]],"pipeline.visualisation (class in saferoad)":[[1,"saferoad.Pipeline.Visualisation",false]],"pipeline.visualisation (class in saferoad.pipeline)":[[3,"saferoad.pipeline.Pipeline.Visualisation",false]],"plot_all_outliers() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_all_outliers",false]],"plot_avg_disp_graph() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_avg_disp_graph",false]],"plot_avg_lcp_disp_graph() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_avg_lcp_disp_graph",false]],"plot_avg_rel_disp_graph() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_avg_rel_disp_graph",false]],"plot_basemap() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.plot_basemap",false]],"plot_basemap_outlier() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_basemap_outlier",false]],"plot_basemap_pspoint() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_basemap_pspoint",false]],"plot_cum_disp() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.plot_cum_disp",false]],"plot_cum_disp_graph() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_cum_disp_graph",false]],"plot_gcp_velocity() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.plot_gcp_velocity",false]],"plot_lcp() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_lcp",false]],"plot_lcp_disp_graph() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_lcp_disp_graph",false]],"plot_lcp_velocity() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.plot_lcp_velocity",false]],"plot_outlier() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_outlier",false]],"plot_outliers() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.plot_outliers",false]],"plot_ps_density() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.plot_ps_density",false]],"plot_pspoint_dist() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_pspoint_dist",false]],"plot_rel_disp_graph() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_rel_disp_graph",false]],"plot_square() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_square",false]],"plot_std_disp_graph() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_std_disp_graph",false]],"plot_std_lcp_disp_graph() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_std_lcp_disp_graph",false]],"plot_std_rel_disp_graph() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.plot_std_rel_disp_graph",false]],"plotter (class in saferoad.plotter)":[[4,"saferoad.plotter.Plotter",false]],"plotter.mappane (class in saferoad.plotter)":[[4,"saferoad.plotter.Plotter.MapPane",false]],"plotter.timeseriespane (class in saferoad.plotter)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane",false]],"post_process() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.post_process",false]],"post_process() (saferoad.plotter.plotter.timeseriespane method)":[[4,"saferoad.plotter.Plotter.TimeSeriesPane.post_process",false]],"preprocess() (saferoad.saferoad method)":[[1,"saferoad.SafeRoad.preprocess",false]],"preprocess() (saferoad.saferoad.saferoad method)":[[5,"saferoad.saferoad.SafeRoad.preprocess",false]],"projection (saferoad.pipeline.pipeline.visualisation attribute)":[[3,"saferoad.pipeline.Pipeline.Visualisation.projection",false]],"projection (saferoad.pipeline.visualisation attribute)":[[1,"saferoad.Pipeline.Visualisation.projection",false]],"ps_density_color_label() (saferoad.plotter.plotter.mappane method)":[[4,"saferoad.plotter.Plotter.MapPane.ps_density_color_label",false]],"psdata (class in saferoad)":[[1,"saferoad.PsData",false]],"psdata (class in saferoad.saferoad)":[[5,"saferoad.saferoad.PsData",false]],"relate_point_patches() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.relate_point_patches",false]],"relate_point_patches() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.relate_point_patches",false]],"road (class in saferoad)":[[1,"saferoad.Road",false]],"road (class in saferoad.saferoad)":[[5,"saferoad.saferoad.Road",false]],"run() (saferoad.database method)":[[1,"saferoad.DataBase.run",false]],"run() (saferoad.database.database method)":[[2,"saferoad.database.DataBase.run",false]],"run_analysis() (saferoad.saferoad method)":[[1,"saferoad.SafeRoad.run_analysis",false]],"run_analysis() (saferoad.saferoad.saferoad method)":[[5,"saferoad.saferoad.SafeRoad.run_analysis",false]],"saferoad":[[1,"module-saferoad",false]],"saferoad (class in saferoad)":[[1,"saferoad.SafeRoad",false]],"saferoad (class in saferoad.saferoad)":[[5,"saferoad.saferoad.SafeRoad",false]],"saferoad.database":[[2,"module-saferoad.database",false]],"saferoad.pipeline":[[3,"module-saferoad.pipeline",false]],"saferoad.plotter":[[4,"module-saferoad.plotter",false]],"saferoad.saferoad":[[5,"module-saferoad.saferoad",false]],"saferoad.utils":[[6,"module-saferoad.utils",false]],"select_lcps() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.select_lcps",false]],"select_lcps() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.select_lcps",false]],"setup() (saferoad.database method)":[[1,"saferoad.DataBase.setup",false]],"setup() (saferoad.database.database method)":[[2,"saferoad.database.DataBase.setup",false]],"spatial_tranformation() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.spatial_tranformation",false]],"spatial_tranformation() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.spatial_tranformation",false]],"split_to_segments() (saferoad.pipeline.pipeline.processing static method)":[[3,"saferoad.pipeline.Pipeline.Processing.split_to_segments",false]],"split_to_segments() (saferoad.pipeline.processing static method)":[[1,"saferoad.Pipeline.Processing.split_to_segments",false]],"time_vector() (in module saferoad.utils)":[[6,"saferoad.utils.time_vector",false]],"timer (class in saferoad.utils)":[[6,"saferoad.utils.Timer",false]],"unit (saferoad.psdata attribute)":[[1,"saferoad.PsData.unit",false]],"unit (saferoad.saferoad.psdata attribute)":[[5,"saferoad.saferoad.PsData.unit",false]]},"objects":{"":[[1,0,0,"-","saferoad"]],"saferoad":[[1,1,1,"","DataBase"],[1,1,1,"","Pipeline"],[1,1,1,"","PsData"],[1,1,1,"","Road"],[1,1,1,"","SafeRoad"],[2,0,0,"-","database"],[3,0,0,"-","pipeline"],[4,0,0,"-","plotter"],[5,0,0,"-","saferoad"],[6,0,0,"-","utils"]],"saferoad.DataBase":[[1,2,1,"","init_database_path"],[1,2,1,"","run"],[1,2,1,"","setup"]],"saferoad.Pipeline":[[1,1,1,"","Processing"],[1,1,1,"","Visualisation"]],"saferoad.Pipeline.Processing":[[1,2,1,"","build_geometry"],[1,2,1,"","calc_avg_cum_disp"],[1,2,1,"","calc_avg_disp_ts_gcp"],[1,2,1,"","calc_avg_lcp_velocity"],[1,2,1,"","calc_avg_std_disp_ts_lcp"],[1,2,1,"","calc_avg_velocity"],[1,2,1,"","calc_avg_velocity_gcp"],[1,2,1,"","calc_avg_velocity_lcp"],[1,2,1,"","calc_cum_disp"],[1,2,1,"","calc_lcp_velocity"],[1,2,1,"","calc_med_std_disp_ts_lcp"],[1,2,1,"","calc_outliers"],[1,2,1,"","calc_outliers_avg_lcd"],[1,2,1,"","calc_outliers_med_lcd"],[1,2,1,"","calc_point_density"],[1,2,1,"","calc_std_disp_ts_gcp"],[1,2,1,"","dissolve_features"],[1,2,1,"","generate_patches"],[1,2,1,"","get_column_names"],[1,2,1,"","lcp_ts_patch"],[1,2,1,"","load_file"],[1,2,1,"","outlier_rel_ts_patch"],[1,2,1,"","outlier_ts_patch"],[1,2,1,"","relate_point_patches"],[1,2,1,"","select_lcps"],[1,2,1,"","spatial_tranformation"],[1,2,1,"","split_to_segments"]],"saferoad.Pipeline.Visualisation":[[1,2,1,"","get_avg_cum_disp_graph"],[1,2,1,"","get_avg_disp_lcp_graph"],[1,2,1,"","get_center"],[1,2,1,"","get_cum_disp_graph"],[1,2,1,"","get_cum_disp_map"],[1,2,1,"","get_lcp_disp_graph"],[1,2,1,"","get_lcp_point"],[1,2,1,"","get_outlier_points"],[1,2,1,"","get_outlier_rel_ts_graph"],[1,2,1,"","get_outliers_map"],[1,2,1,"","get_patch_center"],[1,2,1,"","get_ps_density"],[1,2,1,"","get_ps_points"],[1,2,1,"","get_ps_vel_gcp"],[1,2,1,"","get_ps_vel_lcp"],[1,2,1,"","get_std_cum_disp_graph"],[1,2,1,"","get_std_disp_lcp_graph"],[1,2,1,"","get_table_bbox"],[1,2,1,"","patch_uids"],[1,3,1,"","projection"]],"saferoad.PsData":[[1,3,1,"","crs_code"],[1,3,1,"","filepath"],[1,3,1,"","latitude"],[1,3,1,"","longitude"],[1,3,1,"","name"],[1,3,1,"","unit"]],"saferoad.Road":[[1,3,1,"","crs_code"],[1,3,1,"","filepath"],[1,3,1,"","name"]],"saferoad.SafeRoad":[[1,2,1,"","generate_rectangles"],[1,2,1,"","generate_report"],[1,2,1,"","load_files"],[1,2,1,"","preprocess"],[1,2,1,"","run_analysis"]],"saferoad.database":[[2,1,1,"","DataBase"]],"saferoad.database.DataBase":[[2,2,1,"","init_database_path"],[2,2,1,"","run"],[2,2,1,"","setup"]],"saferoad.pipeline":[[3,1,1,"","Pipeline"]],"saferoad.pipeline.Pipeline":[[3,1,1,"","Processing"],[3,1,1,"","Visualisation"]],"saferoad.pipeline.Pipeline.Processing":[[3,2,1,"","build_geometry"],[3,2,1,"","calc_avg_cum_disp"],[3,2,1,"","calc_avg_disp_ts_gcp"],[3,2,1,"","calc_avg_lcp_velocity"],[3,2,1,"","calc_avg_std_disp_ts_lcp"],[3,2,1,"","calc_avg_velocity"],[3,2,1,"","calc_avg_velocity_gcp"],[3,2,1,"","calc_avg_velocity_lcp"],[3,2,1,"","calc_cum_disp"],[3,2,1,"","calc_lcp_velocity"],[3,2,1,"","calc_med_std_disp_ts_lcp"],[3,2,1,"","calc_outliers"],[3,2,1,"","calc_outliers_avg_lcd"],[3,2,1,"","calc_outliers_med_lcd"],[3,2,1,"","calc_point_density"],[3,2,1,"","calc_std_disp_ts_gcp"],[3,2,1,"","dissolve_features"],[3,2,1,"","generate_patches"],[3,2,1,"","get_column_names"],[3,2,1,"","lcp_ts_patch"],[3,2,1,"","load_file"],[3,2,1,"","outlier_rel_ts_patch"],[3,2,1,"","outlier_ts_patch"],[3,2,1,"","relate_point_patches"],[3,2,1,"","select_lcps"],[3,2,1,"","spatial_tranformation"],[3,2,1,"","split_to_segments"]],"saferoad.pipeline.Pipeline.Visualisation":[[3,2,1,"","get_avg_cum_disp_graph"],[3,2,1,"","get_avg_disp_lcp_graph"],[3,2,1,"","get_center"],[3,2,1,"","get_cum_disp_graph"],[3,2,1,"","get_cum_disp_map"],[3,2,1,"","get_lcp_disp_graph"],[3,2,1,"","get_lcp_point"],[3,2,1,"","get_outlier_points"],[3,2,1,"","get_outlier_rel_ts_graph"],[3,2,1,"","get_outliers_map"],[3,2,1,"","get_patch_center"],[3,2,1,"","get_ps_density"],[3,2,1,"","get_ps_points"],[3,2,1,"","get_ps_vel_gcp"],[3,2,1,"","get_ps_vel_lcp"],[3,2,1,"","get_std_cum_disp_graph"],[3,2,1,"","get_std_disp_lcp_graph"],[3,2,1,"","get_table_bbox"],[3,2,1,"","patch_uids"],[3,3,1,"","projection"]],"saferoad.plotter":[[4,1,1,"","Plotter"]],"saferoad.plotter.Plotter":[[4,1,1,"","MapPane"],[4,1,1,"","TimeSeriesPane"]],"saferoad.plotter.Plotter.MapPane":[[4,2,1,"","cum_disp_color_label"],[4,2,1,"","gcp_vel_color"],[4,2,1,"","generate_figure"],[4,2,1,"","get_figure"],[4,2,1,"","lcp_vel_color"],[4,2,1,"","outlier_color_label"],[4,2,1,"","plot_basemap"],[4,2,1,"","plot_cum_disp"],[4,2,1,"","plot_gcp_velocity"],[4,2,1,"","plot_lcp_velocity"],[4,2,1,"","plot_outliers"],[4,2,1,"","plot_ps_density"],[4,2,1,"","post_process"],[4,2,1,"","ps_density_color_label"]],"saferoad.plotter.Plotter.TimeSeriesPane":[[4,2,1,"","generate_figure"],[4,2,1,"","get_figure"],[4,2,1,"","outlier_color_label"],[4,2,1,"","plot_all_outliers"],[4,2,1,"","plot_avg_disp_graph"],[4,2,1,"","plot_avg_lcp_disp_graph"],[4,2,1,"","plot_avg_rel_disp_graph"],[4,2,1,"","plot_basemap_outlier"],[4,2,1,"","plot_basemap_pspoint"],[4,2,1,"","plot_cum_disp_graph"],[4,2,1,"","plot_lcp"],[4,2,1,"","plot_lcp_disp_graph"],[4,2,1,"","plot_outlier"],[4,2,1,"","plot_pspoint_dist"],[4,2,1,"","plot_rel_disp_graph"],[4,2,1,"","plot_square"],[4,2,1,"","plot_std_disp_graph"],[4,2,1,"","plot_std_lcp_disp_graph"],[4,2,1,"","plot_std_rel_disp_graph"],[4,2,1,"","post_process"]],"saferoad.saferoad":[[5,1,1,"","PsData"],[5,1,1,"","Road"],[5,1,1,"","SafeRoad"]],"saferoad.saferoad.PsData":[[5,3,1,"","crs_code"],[5,3,1,"","filepath"],[5,3,1,"","latitude"],[5,3,1,"","longitude"],[5,3,1,"","name"],[5,3,1,"","unit"]],"saferoad.saferoad.Road":[[5,3,1,"","crs_code"],[5,3,1,"","filepath"],[5,3,1,"","name"]],"saferoad.saferoad.SafeRoad":[[5,2,1,"","generate_rectangles"],[5,2,1,"","generate_report"],[5,2,1,"","load_files"],[5,2,1,"","preprocess"],[5,2,1,"","run_analysis"]],"saferoad.utils":[[6,1,1,"","Timer"],[6,4,1,"","extract_dates"],[6,4,1,"","time_vector"]]},"objnames":{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","method","Python method"],"3":["py","attribute","Python attribute"],"4":["py","function","Python function"]},"objtypes":{"0":"py:module","1":"py:class","2":"py:method","3":"py:attribute","4":"py:function"},"terms":{"":[1,3],"1":[1,5],"2":[1,5],"2d":[1,3],"3":[1,5],"3857":[1,3],"4":[1,5],"4326":[1,5],"5":[1,3],"A":[1,4,5,6],"If":[1,2,3,5],"It":[1,2,3,7],"The":[1,2,3,7],"absolut":[1,3],"access":7,"adapt":[1,3],"add":[1,3],"aesthet":4,"against":[1,3],"aim":7,"ald":[1,3],"align":[1,3],"all":[1,3,4,5],"allow":[1,3],"along":[1,3,5],"alreadi":[1,2,3],"also":[1,2],"an":[1,3,5,7],"analysi":[1,3,4,5,7],"ani":[1,3],"anoth":[1,3,6],"api":7,"applic":7,"appropri":[1,3],"ar":[1,3,5],"area":[1,3,4],"around":[1,3],"arrai":6,"assertionerror":[1,2,3],"assess":[1,3],"assign":[1,3],"assist":7,"associ":[1,3],"assum":[1,3],"attribut":[1,3,5],"avail":[1,2,3],"averag":[1,3,4,5],"avg_data":4,"ax":4,"axi":4,"base":[1,2,3,4,5,6],"basemap":4,"bbox":4,"been":[1,3],"beginn":7,"belong":[1,3],"better":4,"both":7,"bound":[1,3,4],"box":[1,3,4],"build":[1,3,5],"build_geometri":[1,3],"built":7,"calc_avg_cum_disp":[1,3],"calc_avg_disp_ts_gcp":[1,3],"calc_avg_lcp_veloc":[1,3],"calc_avg_std_disp_ts_lcp":[1,3],"calc_avg_veloc":[1,3],"calc_avg_velocity_gcp":[1,3],"calc_avg_velocity_lcp":[1,3],"calc_cum_disp":[1,3],"calc_lcp_veloc":[1,3],"calc_med_std_disp_ts_lcp":[1,3],"calc_outli":[1,3],"calc_outliers_avg_lcd":[1,3],"calc_outliers_med_lcd":[1,3],"calc_point_dens":[1,3],"calc_std_disp_ts_gcp":[1,3],"calcul":[1,3,5],"call":[1,3],"can":[1,3,7],"case":[1,3],"center":[1,3,4],"centimet":[1,3],"chain":[1,3],"chart":7,"class":[1,2,3,4,5,6],"clean":7,"cm":[1,3,5],"code":[1,3,5,6],"color":4,"column":[1,3,5,6],"column_nam":6,"comprehens":7,"comput":[1,3,5],"computational_cr":[1,5],"condit":[1,3,7],"conjunct":[1,3],"connect":[1,2,3],"contain":[1,3,4,5,6],"content":[0,3],"context":6,"contextili":7,"control":[1,3,4,5],"coordin":[1,3,5],"correctli":[1,3],"correspond":4,"count":[1,3],"cr":[1,3,5],"creat":[1,2,3,4],"crs_code":[0,1,5],"csv":[1,3],"cum_disp_color_label":[1,4],"cumul":[1,3,4,5],"current":[1,2],"cut":[1,3],"dai":[1,3,6],"data":[1,3,4,5,7],"databas":[0,1,3,5],"dataset":7,"date":[1,2,3,4,6],"date_field":[1,3],"date_nam":[1,3],"date_vector":[1,3],"datetim":[4,6],"default":[1,3,5],"defin":[1,3],"deform":[1,5],"densiti":[1,3,4,5],"design":[1,3,7],"determin":[1,3],"develop":7,"deviat":[1,3,4],"differ":[1,3,6],"direct":[1,3,5],"directli":[1,3],"directori":[1,2],"displac":[1,3,4,5],"dissolv":[1,3,5],"dissolve_featur":[1,3],"divid":[1,3],"doe":[1,2,3],"done":[1,3],"duckdb":[1,2,3,7],"each":[1,3,5],"empti":[1,3],"endswith":[1,5],"ensur":[1,3],"envelop":[1,3],"epsg":[1,3,5],"equal":[1,5],"establish":[1,2,3],"exceed":[1,3],"execut":[1,2,3,6],"exist":[1,2,3],"expert":7,"extens":[1,2,3,5,7],"extract":6,"extract_d":[0,1,6],"factor":[1,3],"featur":[1,3,5,7],"field":[1,3,5,6,7],"field_nam":[1,3],"fifth":4,"figur":4,"file":[1,2,3,5],"file_path":[1,3],"filenam":[1,2],"filepath":[0,1,5],"filter":[1,3],"first":[1,3,4,6],"fix":[1,3],"flexibl":[1,3],"float":[1,3,4,5,6],"focu":7,"format":[1,3],"fourth":4,"framework":7,"friendli":7,"from":[1,3,5,6,7],"function":[1,3],"further":[1,3],"gcp":[1,3,4],"gcp_vel_color":[1,4],"gener":[1,2,3,4,5,6,7],"generate_figur":[1,4],"generate_patch":[1,3],"generate_rectangl":[0,1,5],"generate_report":[0,1,5],"geojson":[1,3],"geometri":[1,3,4,5],"geospati":4,"get":[1,3],"get_avg_cum_disp_graph":[1,3],"get_avg_disp_lcp_graph":[1,3],"get_cent":[1,3],"get_column_nam":[1,3],"get_cum_disp_graph":[1,3],"get_cum_disp_map":[1,3],"get_figur":[1,4],"get_lcp_disp_graph":[1,3],"get_lcp_point":[1,3],"get_outlier_point":[1,3],"get_outlier_rel_ts_graph":[1,3],"get_outliers_map":[1,3],"get_patch_cent":[1,3],"get_ps_dens":[1,3],"get_ps_point":[1,3],"get_ps_vel_gcp":[1,3],"get_ps_vel_lcp":[1,3],"get_std_cum_disp_graph":[1,3],"get_std_disp_lcp_graph":[1,3],"get_table_bbox":[1,3],"gi":[1,3],"given":[1,5],"global":[1,3],"graph":7,"ground":[1,3],"handl":[1,3],"have":[1,3],"here":7,"i":[1,2,3,5,7],"id":[1,3],"identifi":[1,3,5,7],"includ":[1,4,5,7],"indic":4,"inform":[1,5],"infrastructur":[1,3],"init_database_path":[0,1,2],"initi":[1,2],"input":[1,3],"insar":[1,5],"insert":[1,3],"insight":7,"instanc":[1,5],"instanti":[1,3],"int":[1,3,5],"integr":7,"intend":[1,3],"involv":[1,5],"issu":7,"kilomet":[1,3],"label":4,"latitud":[0,1,3,5],"layout":4,"lcd":[1,3],"lcp":[1,3,4],"lcp_ts_patch":[1,3],"lcp_vel_color":[1,4],"length":[1,3,5],"librari":7,"line":[1,3],"linear":[1,3],"list":[1,3,4,6],"liter":[1,5],"load":[1,2,3,5],"load_fil":[0,1,3,5],"local":[1,3,4,5],"longitud":[0,1,3,5],"m":[1,3,5],"make":7,"manag":[1,2,3,4,6],"map":[1,4,5],"mappan":[1,4],"mark":[1,3],"matplotlib":7,"maxi":4,"maxx":4,"measur":[1,3,5],"median":[1,3],"mercat":[1,3],"merg":[1,5],"meter":[1,3,5],"method":[1,2,3,7],"millimet":[1,3],"mini":4,"minimum":[1,3],"minx":4,"mitig":7,"mm":[1,3,5],"modern":7,"modifi":[1,3],"modul":0,"modular":7,"monitor":7,"more":[1,3],"mt":[1,5],"multi":[4,7],"name":[0,1,3,5,6],"ndarrai":6,"necessari":[1,3],"need":[1,3],"network":[1,3,5,7],"new":[1,3],"none":[1,4,5,6],"number":[1,3],"numpi":6,"object":[1,2,3,4,5,6],"offer":7,"one":[1,3,6],"onli":[1,3],"open":7,"oper":[1,3],"option":[1,5],"organ":7,"orient":[1,3],"other":[1,3,7],"otherwis":[1,5],"out":[1,3],"outlier":[1,3,4,5],"outlier_color_label":[1,4],"outlier_id":[1,3],"outlier_rel_ts_patch":[1,3],"outlier_ts_patch":[1,3],"output":[1,5],"output_nam":[1,5],"over":[1,3],"p":4,"packag":[0,7],"panel":4,"paper":7,"paramet":[1,2,3,4,5,6],"pars":6,"particularli":[1,3],"pass":[1,3],"patch":[1,3,5],"patch_id":[1,3],"patch_nam":[1,3],"patch_uid":[1,3],"path":[1,2,3,5],"pattern":7,"pdf":[1,5],"per":[1,3],"perform":[1,3,5,7],"pipelin":[0,1],"plan":[1,3],"plot":[1,4,5],"plot_all_outli":[1,4],"plot_avg_disp_graph":[1,4],"plot_avg_lcp_disp_graph":[1,4],"plot_avg_rel_disp_graph":[1,4],"plot_basemap":[1,4],"plot_basemap_outli":[1,4],"plot_basemap_pspoint":[1,4],"plot_cum_disp":[1,4],"plot_cum_disp_graph":[1,4],"plot_data":4,"plot_gcp_veloc":[1,4],"plot_lcp":[1,4],"plot_lcp_disp_graph":[1,4],"plot_lcp_veloc":[1,4],"plot_outli":[1,4],"plot_ps_dens":[1,4],"plot_pspoint_dist":[1,4],"plot_rel_disp_graph":[1,4],"plot_squar":[1,4],"plot_std_disp_graph":[1,4],"plot_std_lcp_disp_graph":[1,4],"plot_std_rel_disp_graph":[1,4],"plotter":[0,1],"plt":4,"point":[1,3,4,5],"point_nam":[1,3],"point_uid":[1,3],"policymak":7,"post":4,"post_process":[1,4],"postgi":[1,3],"prepar":[1,3],"preprocess":[0,1,5,7],"process":[0,1,3,4],"project":[1,3],"provid":[1,2,3,4,5,7],"ps_data":[1,5],"ps_density_color_label":[1,4],"psdata":[0,1,5],"pspoint":[1,3,5],"python":7,"queri":[1,2,3],"rais":[1,2,3],"rectangl":[1,5],"rectangular":[1,3],"refer":[1,3,5],"regress":[1,3],"rel":[1,3,4],"relat":[1,3],"relate_point_patch":[1,3],"relationship":[1,3],"relav":7,"replac":[1,3],"report":[1,5],"repres":[1,3,4,5],"research":7,"result":[1,3],"retriev":[1,3],"return":[1,2,3,4,6],"road":[0,1,3,5,7],"road_width":[1,5],"robust":7,"rotat":[1,3,5],"run":[0,1,2,5],"run_analysi":[0,1,5],"safeti":7,"same":[1,5],"save":[1,3],"scale":[1,3],"scaling_factor":[1,3],"search":6,"second":4,"segment":[1,3,5],"segment_length":[1,3,5],"select":[1,3],"select_lcp":[1,3],"seri":[1,3,4,5],"set":[1,2],"setup":[0,1,2],"shape":7,"sourc":[1,2,3,4,5,6,7],"source_cr":[1,3],"source_epsg":[1,3],"spatial":[1,2,3],"spatial_tranform":[1,3],"specif":[1,3],"specifi":[1,3,4,5],"split":[1,3,5],"split_to_seg":[1,3],"sql":[1,2,3],"squar":[1,3,4],"standard":[1,3,4],"start":[1,3],"static":[1,3],"statist":7,"std_data":4,"store":[1,3,5],"str":[1,2,3,4,5,6],"string":[1,3,4,5],"structur":7,"submodul":0,"suit":7,"suitabl":[1,3,7],"support":[1,3],"system":[1,3,5],"tabl":[1,3],"table_nam":[1,3],"target":[1,3],"target_epsg":[1,3],"task":[1,3],"tempor":7,"than":[1,3],"them":[1,3],"thi":[1,2,3,5],"third":4,"threshold":[1,3],"time":[1,2,3,4,5,6],"time_vector":[0,1,3,6],"timer":[0,1,6],"timeseriespan":[1,4],"titl":4,"togeth":[1,3],"tool":7,"traffic":[1,3],"transform":[1,3,5],"translat":[1,3],"trend":7,"tupl":[4,6],"two":6,"type":[1,2,3,4,6],"uid":[1,3],"understand":7,"uniqu":[1,3],"unit":[0,1,3,5],"up":[1,2],"us":[1,3,4,5,7],"usabl":7,"user":7,"util":[0,1,7],"valid":[1,3],"valu":[1,3,4],"vector":[1,3,6],"veloc":[1,3,4,5],"visualis":[0,1,3,7],"web":[1,3],"well":7,"where":[1,3],"which":[1,3],"width":[1,3,5],"window":[1,3],"within":[1,3],"without":[1,3],"x":4,"y":4,"year":[1,3],"you":7,"zoom":4},"titles":["saferoad","saferoad package","saferoad.database module","saferoad.pipeline module","saferoad.plotter module","saferoad.saferoad module","saferoad.utils module","Welcome to SafeRoad\u2019s Documentation"],"titleterms":{"":7,"content":[1,7],"databas":2,"document":7,"modul":[1,2,3,4,5,6],"packag":1,"pipelin":3,"plotter":4,"saferoad":[0,1,2,3,4,5,6,7],"submodul":1,"summari":7,"util":6,"welcom":7}})
\ No newline at end of file
diff --git a/docs/make.bat b/docs/make.bat
new file mode 100644
index 0000000..747ffb7
--- /dev/null
+++ b/docs/make.bat
@@ -0,0 +1,35 @@
+@ECHO OFF
+
+pushd %~dp0
+
+REM Command file for Sphinx documentation
+
+if "%SPHINXBUILD%" == "" (
+ set SPHINXBUILD=sphinx-build
+)
+set SOURCEDIR=source
+set BUILDDIR=build
+
+%SPHINXBUILD% >NUL 2>NUL
+if errorlevel 9009 (
+ echo.
+ echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
+ echo.installed, then set the SPHINXBUILD environment variable to point
+ echo.to the full path of the 'sphinx-build' executable. Alternatively you
+ echo.may add the Sphinx directory to PATH.
+ echo.
+ echo.If you don't have Sphinx installed, grab it from
+ echo.https://www.sphinx-doc.org/
+ exit /b 1
+)
+
+if "%1" == "" goto help
+
+%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+goto end
+
+:help
+%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+
+:end
+popd
diff --git a/docs/requirements.txt b/docs/requirements.txt
new file mode 100644
index 0000000..1b3a6e8
--- /dev/null
+++ b/docs/requirements.txt
@@ -0,0 +1 @@
+sphinx
\ No newline at end of file
diff --git a/docs/source/api/modules.rst b/docs/source/api/modules.rst
new file mode 100644
index 0000000..75f2a20
--- /dev/null
+++ b/docs/source/api/modules.rst
@@ -0,0 +1,7 @@
+saferoad
+========
+
+.. toctree::
+ :maxdepth: 4
+
+ saferoad
diff --git a/docs/source/api/saferoad.database.rst b/docs/source/api/saferoad.database.rst
new file mode 100644
index 0000000..0e0c25b
--- /dev/null
+++ b/docs/source/api/saferoad.database.rst
@@ -0,0 +1,7 @@
+saferoad.database module
+========================
+
+.. automodule:: saferoad.database
+ :members:
+ :show-inheritance:
+ :undoc-members:
diff --git a/docs/source/api/saferoad.pipeline.rst b/docs/source/api/saferoad.pipeline.rst
new file mode 100644
index 0000000..8973f90
--- /dev/null
+++ b/docs/source/api/saferoad.pipeline.rst
@@ -0,0 +1,7 @@
+saferoad.pipeline module
+========================
+
+.. automodule:: saferoad.pipeline
+ :members:
+ :show-inheritance:
+ :undoc-members:
diff --git a/docs/source/api/saferoad.plotter.rst b/docs/source/api/saferoad.plotter.rst
new file mode 100644
index 0000000..147c4b7
--- /dev/null
+++ b/docs/source/api/saferoad.plotter.rst
@@ -0,0 +1,7 @@
+saferoad.plotter module
+=======================
+
+.. automodule:: saferoad.plotter
+ :members:
+ :show-inheritance:
+ :undoc-members:
diff --git a/docs/source/api/saferoad.rst b/docs/source/api/saferoad.rst
new file mode 100644
index 0000000..85870b1
--- /dev/null
+++ b/docs/source/api/saferoad.rst
@@ -0,0 +1,22 @@
+saferoad package
+================
+
+Submodules
+----------
+
+.. toctree::
+ :maxdepth: 4
+
+ saferoad.database
+ saferoad.pipeline
+ saferoad.plotter
+ saferoad.saferoad
+ saferoad.utils
+
+Module contents
+---------------
+
+.. automodule:: saferoad
+ :members:
+ :show-inheritance:
+ :undoc-members:
diff --git a/docs/source/api/saferoad.saferoad.rst b/docs/source/api/saferoad.saferoad.rst
new file mode 100644
index 0000000..e29e335
--- /dev/null
+++ b/docs/source/api/saferoad.saferoad.rst
@@ -0,0 +1,7 @@
+saferoad.saferoad module
+========================
+
+.. automodule:: saferoad.saferoad
+ :members:
+ :show-inheritance:
+ :undoc-members:
diff --git a/docs/source/api/saferoad.utils.rst b/docs/source/api/saferoad.utils.rst
new file mode 100644
index 0000000..8c742b5
--- /dev/null
+++ b/docs/source/api/saferoad.utils.rst
@@ -0,0 +1,7 @@
+saferoad.utils module
+=====================
+
+.. automodule:: saferoad.utils
+ :members:
+ :show-inheritance:
+ :undoc-members:
diff --git a/docs/source/conf.py b/docs/source/conf.py
new file mode 100644
index 0000000..7de886e
--- /dev/null
+++ b/docs/source/conf.py
@@ -0,0 +1,32 @@
+import os
+import sys
+
+# Add your src/ directory so autodoc can import your package
+sys.path.insert(0, os.path.abspath(os.path.join(__file__, "..", "..", "..", "src")))
+
+
+project = "saferoad"
+copyright = "2025, SafeStruct"
+author = "Mura Sahin"
+
+version = "0.1"
+release = "0.1"
+
+
+extensions = [
+ "sphinx.ext.autodoc",
+ "sphinx.ext.autosummary",
+ "sphinx.ext.viewcode",
+]
+
+# Autodoc / autosummary defaults
+autosummary_generate = True
+autodoc_default_options = {
+ "members": True,
+ "undoc-members": True,
+ "show-inheritance": True,
+}
+
+
+html_theme = "sphinx_rtd_theme"
+html_static_path = ["_static"]
diff --git a/docs/source/index.rst b/docs/source/index.rst
new file mode 100644
index 0000000..2f021a4
--- /dev/null
+++ b/docs/source/index.rst
@@ -0,0 +1,39 @@
+.. project documentation master file, created by
+ sphinx-quickstart on Mon Sep 1 09:55:46 2025.
+ You can adapt this file completely to your liking, but it should at least
+ contain the root `toctree` directive.
+
+Welcome to SafeRoad's Documentation
+======================================
+
+**SafeRoad** is an open-source Python library designed to monitor the structural condition of the road network by providing tools for data analysis and visualisation.
+It aims to assist researchers, policymakers, and developers in understanding and mitigating structural safety issues of road networks.
+**SafeRoad** is built with a focus on usability, performance, and extensibility. It uses modern Python libraries such as `duckdb`_,
+`shapely`_, `matplotlib`_ and `contextily`_ to provide a robust framework for road network safety analysis.
+
+You can access the relavant paper from `here`_.
+
+.. _here: https://doi.org/10.1177/14759217211045912
+.. _duckdb: https://duckdb.org/
+.. _shapely: https://shapely.readthedocs.io/en/stable/
+.. _matplotlib: https://matplotlib.org/
+.. _contextily: https://contextily.readthedocs.io/en/latest/
+
+Summary
+-------
+SafeRoad offers a comprehensive suite of features, including:
+
+- Data preprocessing tools for cleaning and organizing road and Multi-Temporal dataset.
+- Visualisation utilities to generate insightful charts and graphs.
+- Statistical analysis methods to identify trends and patterns.
+- Extensible APIs for integrating with other applications.
+
+The library is modular, user-friendly, and well-documented, making it suitable for both beginners and experts in the field of structural safety.
+
+
+
+.. toctree::
+ :maxdepth: 2
+ :caption: Contents:
+
+ api/modules
\ No newline at end of file
diff --git a/examples/fixtures/A10_ams.geojson b/examples/fixtures/A10_ams.geojson
new file mode 100644
index 0000000..cc835af
--- /dev/null
+++ b/examples/fixtures/A10_ams.geojson
@@ -0,0 +1,17683 @@
+{
+ "type": "FeatureCollection",
+ "generator": "overpass-turbo",
+ "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.",
+ "timestamp": "2025-08-19T12:45:35Z",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039960",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9731095,
+ 52.3691939
+ ],
+ [
+ 4.973248,
+ 52.3695642
+ ],
+ [
+ 4.9733876,
+ 52.369984
+ ],
+ [
+ 4.9734819,
+ 52.3702817
+ ]
+ ]
+ },
+ "id": "way/7039960"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039961",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "-1",
+ "lit": "24/7",
+ "maxheight": "4.2",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "tunnel": "yes",
+ "tunnel:name": "Zeeburgertunnel"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9739625,
+ 52.3765332
+ ],
+ [
+ 4.9740034,
+ 52.376034
+ ],
+ [
+ 4.9740208,
+ 52.3750109
+ ],
+ [
+ 4.9739926,
+ 52.3739898
+ ],
+ [
+ 4.9739227,
+ 52.3731194
+ ],
+ [
+ 4.9736386,
+ 52.3716913
+ ]
+ ]
+ },
+ "id": "way/7039961"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039962",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "-1",
+ "lit": "24/7",
+ "maxheight": "4.2",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "tunnel": "yes",
+ "tunnel:name": "Zeeburgertunnel"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9738538,
+ 52.3716704
+ ],
+ [
+ 4.9741516,
+ 52.373088
+ ],
+ [
+ 4.9742195,
+ 52.3739748
+ ],
+ [
+ 4.9742248,
+ 52.3750085
+ ],
+ [
+ 4.9741798,
+ 52.3760427
+ ],
+ [
+ 4.9741676,
+ 52.3765384
+ ]
+ ]
+ },
+ "id": "way/7039962"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039963",
+ "carriageway_ref": "Re",
+ "cutting": "yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9735951,
+ 52.3787725
+ ],
+ [
+ 4.973695,
+ 52.3783297
+ ],
+ [
+ 4.9737828,
+ 52.3778996
+ ],
+ [
+ 4.9738257,
+ 52.3776552
+ ]
+ ]
+ },
+ "id": "way/7039963"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039964",
+ "carriageway_ref": "Li",
+ "cutting": "yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9741371,
+ 52.3769393
+ ],
+ [
+ 4.9741186,
+ 52.3772236
+ ],
+ [
+ 4.9740403,
+ 52.3777516
+ ],
+ [
+ 4.9739403,
+ 52.3783176
+ ],
+ [
+ 4.9738395,
+ 52.3787956
+ ]
+ ]
+ },
+ "id": "way/7039964"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039967",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9722995,
+ 52.3678731
+ ],
+ [
+ 4.9720105,
+ 52.3673177
+ ]
+ ]
+ },
+ "id": "way/7039967"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039970",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9722081,
+ 52.3672126
+ ],
+ [
+ 4.9722606,
+ 52.3673168
+ ]
+ ]
+ },
+ "id": "way/7039970"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039973",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "destination": "Amsterdam-Noord;Purmerend;Zaanstad",
+ "destination:int_ref": "E35",
+ "destination:ref": "RING A10",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9701148,
+ 52.3632604
+ ],
+ [
+ 4.9714573,
+ 52.3657842
+ ]
+ ]
+ },
+ "id": "way/7039973"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039976",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9720105,
+ 52.3673177
+ ],
+ [
+ 4.9712381,
+ 52.3658304
+ ]
+ ]
+ },
+ "id": "way/7039976"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039979",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.970016,
+ 52.3636203
+ ],
+ [
+ 4.9683615,
+ 52.3606323
+ ],
+ [
+ 4.9655643,
+ 52.3557205
+ ]
+ ]
+ },
+ "id": "way/7039979"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7039985",
+ "carriageway_ref": "Re",
+ "cutting": "yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9736386,
+ 52.3716913
+ ],
+ [
+ 4.9735338,
+ 52.3712141
+ ],
+ [
+ 4.9734012,
+ 52.3707329
+ ],
+ [
+ 4.9732687,
+ 52.370295
+ ]
+ ]
+ },
+ "id": "way/7039985"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040861",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9637375,
+ 52.3934851
+ ],
+ [
+ 4.9642394,
+ 52.3929165
+ ],
+ [
+ 4.9664951,
+ 52.390265
+ ],
+ [
+ 4.9670304,
+ 52.3896423
+ ],
+ [
+ 4.9682253,
+ 52.3882114
+ ],
+ [
+ 4.9690651,
+ 52.38721
+ ]
+ ]
+ },
+ "id": "way/7040861"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040863",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9692788,
+ 52.3872563
+ ],
+ [
+ 4.9682207,
+ 52.3885381
+ ],
+ [
+ 4.9672203,
+ 52.3897248
+ ],
+ [
+ 4.9667106,
+ 52.3903159
+ ],
+ [
+ 4.9645603,
+ 52.3928524
+ ]
+ ]
+ },
+ "id": "way/7040863"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040873",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9693776,
+ 52.3871365
+ ],
+ [
+ 4.9692788,
+ 52.3872563
+ ]
+ ]
+ },
+ "id": "way/7040873"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040875",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9690651,
+ 52.38721
+ ],
+ [
+ 4.9691656,
+ 52.3870848
+ ]
+ ]
+ },
+ "id": "way/7040875"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040876",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9721646,
+ 52.3831105
+ ],
+ [
+ 4.9715674,
+ 52.3841584
+ ],
+ [
+ 4.9711993,
+ 52.3847357
+ ],
+ [
+ 4.970637,
+ 52.3855453
+ ],
+ [
+ 4.9696348,
+ 52.3868262
+ ]
+ ]
+ },
+ "id": "way/7040876"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040877",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9691656,
+ 52.3870848
+ ],
+ [
+ 4.9693108,
+ 52.3869132
+ ]
+ ]
+ },
+ "id": "way/7040877"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040878",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9732154,
+ 52.3801215
+ ],
+ [
+ 4.9732984,
+ 52.3798483
+ ]
+ ]
+ },
+ "id": "way/7040878"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040879",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9709274,
+ 52.3847686
+ ],
+ [
+ 4.9713145,
+ 52.3841643
+ ],
+ [
+ 4.9715824,
+ 52.3837091
+ ],
+ [
+ 4.9719307,
+ 52.383082
+ ]
+ ]
+ },
+ "id": "way/7040879"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040881",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9723293,
+ 52.3828047
+ ],
+ [
+ 4.9721646,
+ 52.3831105
+ ]
+ ]
+ },
+ "id": "way/7040881"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040882",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9719307,
+ 52.383082
+ ],
+ [
+ 4.9720959,
+ 52.3827692
+ ]
+ ]
+ },
+ "id": "way/7040882"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040883",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9730488,
+ 52.3812779
+ ],
+ [
+ 4.9729079,
+ 52.3815692
+ ],
+ [
+ 4.9723293,
+ 52.3828047
+ ]
+ ]
+ },
+ "id": "way/7040883"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040884",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9735854,
+ 52.3797627
+ ],
+ [
+ 4.9735007,
+ 52.3800363
+ ]
+ ]
+ },
+ "id": "way/7040884"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7040885",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9720959,
+ 52.3827692
+ ],
+ [
+ 4.9726989,
+ 52.3815216
+ ],
+ [
+ 4.9732154,
+ 52.3801215
+ ]
+ ]
+ },
+ "id": "way/7040885"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7041277",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9633207,
+ 52.3939943
+ ],
+ [
+ 4.9635483,
+ 52.3937162
+ ]
+ ]
+ },
+ "id": "way/7041277"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7041278",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9637659,
+ 52.393776
+ ],
+ [
+ 4.9635332,
+ 52.3940525
+ ]
+ ]
+ },
+ "id": "way/7041278"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7041279",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9552028,
+ 52.4008277
+ ],
+ [
+ 4.9557943,
+ 52.4004784
+ ],
+ [
+ 4.9567443,
+ 52.399839
+ ],
+ [
+ 4.9581514,
+ 52.3988591
+ ],
+ [
+ 4.9590503,
+ 52.3981765
+ ],
+ [
+ 4.9599478,
+ 52.3974348
+ ],
+ [
+ 4.9605968,
+ 52.3968563
+ ],
+ [
+ 4.9612406,
+ 52.3962511
+ ],
+ [
+ 4.9622001,
+ 52.3952724
+ ],
+ [
+ 4.9626828,
+ 52.3947236
+ ]
+ ]
+ },
+ "id": "way/7041279"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7041280",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9546577,
+ 52.4011475
+ ],
+ [
+ 4.9552028,
+ 52.4008277
+ ]
+ ]
+ },
+ "id": "way/7041280"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7041282",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9627622,
+ 52.3949368
+ ],
+ [
+ 4.9623834,
+ 52.3953558
+ ],
+ [
+ 4.9613974,
+ 52.3963629
+ ],
+ [
+ 4.9607761,
+ 52.3969432
+ ],
+ [
+ 4.9601292,
+ 52.3975132
+ ],
+ [
+ 4.9592072,
+ 52.3982762
+ ],
+ [
+ 4.9583167,
+ 52.3989515
+ ],
+ [
+ 4.9569172,
+ 52.3999351
+ ],
+ [
+ 4.9559523,
+ 52.4005551
+ ],
+ [
+ 4.9553152,
+ 52.4009336
+ ]
+ ]
+ },
+ "id": "way/7041282"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7041285",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9553152,
+ 52.4009336
+ ],
+ [
+ 4.9547886,
+ 52.401258
+ ]
+ ]
+ },
+ "id": "way/7041285"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7041917",
+ "carriageway_ref": "Li",
+ "destination": "Amsterdam-West;Purmerend;Zaanstad",
+ "destination:int_ref": "E35",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9462925,
+ 52.4052674
+ ],
+ [
+ 4.945729,
+ 52.4054693
+ ],
+ [
+ 4.9447789,
+ 52.4058027
+ ],
+ [
+ 4.9442483,
+ 52.4059823
+ ],
+ [
+ 4.9437021,
+ 52.4061575
+ ],
+ [
+ 4.9430545,
+ 52.4063623
+ ],
+ [
+ 4.9424312,
+ 52.4065532
+ ],
+ [
+ 4.9414705,
+ 52.4068328
+ ],
+ [
+ 4.9405061,
+ 52.4070976
+ ],
+ [
+ 4.9396782,
+ 52.4073143
+ ],
+ [
+ 4.9383752,
+ 52.4076427
+ ],
+ [
+ 4.9377032,
+ 52.4078148
+ ],
+ [
+ 4.9369478,
+ 52.4080236
+ ],
+ [
+ 4.936435,
+ 52.4081747
+ ],
+ [
+ 4.9358007,
+ 52.4083737
+ ]
+ ]
+ },
+ "id": "way/7041917"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042478",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9160536,
+ 52.4171711
+ ],
+ [
+ 4.9168761,
+ 52.4168619
+ ],
+ [
+ 4.9176634,
+ 52.4165486
+ ],
+ [
+ 4.9191489,
+ 52.4159332
+ ],
+ [
+ 4.9205839,
+ 52.4153088
+ ],
+ [
+ 4.9219638,
+ 52.4146825
+ ],
+ [
+ 4.9241765,
+ 52.4136431
+ ]
+ ]
+ },
+ "id": "way/7042478"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042479",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9244879,
+ 52.4137042
+ ],
+ [
+ 4.9243429,
+ 52.4137734
+ ]
+ ]
+ },
+ "id": "way/7042479"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042480",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9241765,
+ 52.4136431
+ ],
+ [
+ 4.9243285,
+ 52.4135691
+ ]
+ ]
+ },
+ "id": "way/7042480"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042482",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.929114,
+ 52.411406
+ ],
+ [
+ 4.9272043,
+ 52.4123607
+ ],
+ [
+ 4.9244879,
+ 52.4137042
+ ]
+ ]
+ },
+ "id": "way/7042482"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042483",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9253774,
+ 52.4130721
+ ],
+ [
+ 4.9270403,
+ 52.412238
+ ],
+ [
+ 4.9289516,
+ 52.4112647
+ ]
+ ]
+ },
+ "id": "way/7042483"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042484",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9303697,
+ 52.4107359
+ ],
+ [
+ 4.929114,
+ 52.411406
+ ]
+ ]
+ },
+ "id": "way/7042484"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042485",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9289516,
+ 52.4112647
+ ],
+ [
+ 4.9302293,
+ 52.4106163
+ ]
+ ]
+ },
+ "id": "way/7042485"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042487",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9302293,
+ 52.4106163
+ ],
+ [
+ 4.9308658,
+ 52.4102845
+ ]
+ ]
+ },
+ "id": "way/7042487"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042488",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9319456,
+ 52.4097558
+ ],
+ [
+ 4.9327629,
+ 52.4093755
+ ],
+ [
+ 4.9331863,
+ 52.4091912
+ ],
+ [
+ 4.9336231,
+ 52.4090105
+ ],
+ [
+ 4.9340368,
+ 52.4088457
+ ],
+ [
+ 4.9347781,
+ 52.4085675
+ ],
+ [
+ 4.9355522,
+ 52.4082983
+ ],
+ [
+ 4.9362089,
+ 52.4080886
+ ],
+ [
+ 4.9368699,
+ 52.4078958
+ ],
+ [
+ 4.9382634,
+ 52.4075203
+ ],
+ [
+ 4.9394948,
+ 52.4072117
+ ],
+ [
+ 4.9399481,
+ 52.4070945
+ ],
+ [
+ 4.9404342,
+ 52.4069684
+ ],
+ [
+ 4.9413939,
+ 52.406703
+ ],
+ [
+ 4.9423533,
+ 52.4064226
+ ],
+ [
+ 4.9430096,
+ 52.4062223
+ ],
+ [
+ 4.9436653,
+ 52.4060182
+ ],
+ [
+ 4.9446656,
+ 52.4056852
+ ],
+ [
+ 4.9455811,
+ 52.4053591
+ ]
+ ]
+ },
+ "id": "way/7042488"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042490",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9358007,
+ 52.4083737
+ ],
+ [
+ 4.9353543,
+ 52.408523
+ ],
+ [
+ 4.9349108,
+ 52.4086788
+ ],
+ [
+ 4.9341604,
+ 52.408961
+ ],
+ [
+ 4.9337471,
+ 52.4091242
+ ],
+ [
+ 4.9331385,
+ 52.4093788
+ ],
+ [
+ 4.9325485,
+ 52.4096443
+ ],
+ [
+ 4.9321432,
+ 52.4098342
+ ],
+ [
+ 4.9317515,
+ 52.4100248
+ ],
+ [
+ 4.9310707,
+ 52.4103709
+ ]
+ ]
+ },
+ "id": "way/7042490"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7042507",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9243429,
+ 52.4137734
+ ],
+ [
+ 4.9221323,
+ 52.4148048
+ ],
+ [
+ 4.9207435,
+ 52.4154377
+ ],
+ [
+ 4.9192892,
+ 52.4160781
+ ],
+ [
+ 4.9178173,
+ 52.4166857
+ ],
+ [
+ 4.9163707,
+ 52.4172395
+ ],
+ [
+ 4.9145949,
+ 52.4178629
+ ]
+ ]
+ },
+ "id": "way/7042507"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7043830",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9525495,
+ 52.3405664
+ ],
+ [
+ 4.9531034,
+ 52.3409846
+ ],
+ [
+ 4.9535208,
+ 52.3413358
+ ],
+ [
+ 4.9539455,
+ 52.3417586
+ ],
+ [
+ 4.9544472,
+ 52.3422732
+ ],
+ [
+ 4.9550209,
+ 52.3429103
+ ]
+ ]
+ },
+ "id": "way/7043830"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044052",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "-1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "tunnel": "yes",
+ "tunnel:name": "Watergraafsmeer"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9599732,
+ 52.3479627
+ ],
+ [
+ 4.9608108,
+ 52.348803
+ ]
+ ]
+ },
+ "id": "way/7044052"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044053",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9608108,
+ 52.348803
+ ],
+ [
+ 4.9616104,
+ 52.3496167
+ ],
+ [
+ 4.9621561,
+ 52.3502331
+ ],
+ [
+ 4.9628778,
+ 52.3511221
+ ],
+ [
+ 4.9632277,
+ 52.3515751
+ ],
+ [
+ 4.9637016,
+ 52.3522337
+ ]
+ ]
+ },
+ "id": "way/7044053"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044058",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "-1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "tunnel": "yes",
+ "tunnel:name": "Watergraafsmeer"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.960618,
+ 52.348885
+ ],
+ [
+ 4.9597845,
+ 52.3480409
+ ]
+ ]
+ },
+ "id": "way/7044058"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044070",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9634553,
+ 52.3522398
+ ],
+ [
+ 4.9626912,
+ 52.3511725
+ ],
+ [
+ 4.9619675,
+ 52.3503132
+ ],
+ [
+ 4.9614012,
+ 52.3496876
+ ],
+ [
+ 4.960618,
+ 52.348885
+ ]
+ ]
+ },
+ "id": "way/7044070"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044073",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9550209,
+ 52.3429103
+ ],
+ [
+ 4.9555055,
+ 52.3434048
+ ]
+ ]
+ },
+ "id": "way/7044073"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044075",
+ "carriageway_ref": "Li",
+ "destination": "RING-Noord;Purmerend;Zaanstad",
+ "destination:int_ref": "E35",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9588772,
+ 52.3469157
+ ],
+ [
+ 4.9591336,
+ 52.3471739
+ ],
+ [
+ 4.9599732,
+ 52.3479627
+ ]
+ ]
+ },
+ "id": "way/7044075"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044096",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9517949,
+ 52.3403063
+ ],
+ [
+ 4.9509959,
+ 52.3398416
+ ],
+ [
+ 4.9502717,
+ 52.3394849
+ ],
+ [
+ 4.9496739,
+ 52.3392211
+ ],
+ [
+ 4.9492716,
+ 52.3390675
+ ],
+ [
+ 4.9488719,
+ 52.3389241
+ ],
+ [
+ 4.9484301,
+ 52.3387768
+ ],
+ [
+ 4.9481228,
+ 52.3386825
+ ]
+ ]
+ },
+ "id": "way/7044096"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044098",
+ "carriageway_ref": "Li",
+ "destination": "Zaanstad;Hengelo;Groningen",
+ "destination:int_ref": "E35",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "width": "14.5"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.948151,
+ 52.3384966
+ ],
+ [
+ 4.9488023,
+ 52.3387095
+ ],
+ [
+ 4.9491179,
+ 52.3388222
+ ],
+ [
+ 4.949412,
+ 52.3389322
+ ],
+ [
+ 4.95011,
+ 52.3392118
+ ],
+ [
+ 4.9506844,
+ 52.3394728
+ ],
+ [
+ 4.9512299,
+ 52.3397465
+ ],
+ [
+ 4.9520019,
+ 52.3401998
+ ]
+ ]
+ },
+ "id": "way/7044098"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044400",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9520019,
+ 52.3401998
+ ],
+ [
+ 4.9525495,
+ 52.3405664
+ ]
+ ]
+ },
+ "id": "way/7044400"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044421",
+ "carriageway_ref": "Li",
+ "destination": "Zaanstad;Hengelo;Groningen",
+ "destination:int_ref": "E35",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lane_markings": "yes",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "shoulder": "right",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "width": "15"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9374629,
+ 52.3352867
+ ],
+ [
+ 4.9379372,
+ 52.3354712
+ ],
+ [
+ 4.9383178,
+ 52.3356279
+ ],
+ [
+ 4.9396527,
+ 52.336182
+ ],
+ [
+ 4.9404698,
+ 52.3364948
+ ]
+ ]
+ },
+ "id": "way/7044421"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044782",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "layer": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "left_of:3",
+ "ref": "A10",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right",
+ "width": "18.5"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.942714,
+ 52.3371793
+ ],
+ [
+ 4.9430983,
+ 52.3372746
+ ],
+ [
+ 4.9433945,
+ 52.3373442
+ ]
+ ]
+ },
+ "id": "way/7044782"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044784",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "layer": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "shoulder": "no",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right",
+ "width": "19"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9431599,
+ 52.3374684
+ ],
+ [
+ 4.9430604,
+ 52.3374436
+ ]
+ ]
+ },
+ "id": "way/7044784"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044785",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "left_of:3",
+ "ref": "A10",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right",
+ "width": "19"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9433945,
+ 52.3373442
+ ],
+ [
+ 4.9435414,
+ 52.3373772
+ ],
+ [
+ 4.9442821,
+ 52.3375403
+ ],
+ [
+ 4.9450529,
+ 52.3377059
+ ],
+ [
+ 4.9456219,
+ 52.3378375
+ ],
+ [
+ 4.9464156,
+ 52.338033
+ ],
+ [
+ 4.9469818,
+ 52.3381747
+ ],
+ [
+ 4.947523,
+ 52.3383198
+ ],
+ [
+ 4.9478455,
+ 52.3384087
+ ],
+ [
+ 4.948151,
+ 52.3384966
+ ]
+ ]
+ },
+ "id": "way/7044785"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7044787",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "shoulder": "no",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "width": "15"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9404698,
+ 52.3364948
+ ],
+ [
+ 4.9407122,
+ 52.3365814
+ ],
+ [
+ 4.9409528,
+ 52.3366616
+ ],
+ [
+ 4.9415587,
+ 52.3368588
+ ],
+ [
+ 4.942129,
+ 52.3370263
+ ],
+ [
+ 4.9424241,
+ 52.337105
+ ],
+ [
+ 4.942714,
+ 52.3371793
+ ]
+ ]
+ },
+ "id": "way/7044787"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7045317",
+ "carriageway_ref": "Re",
+ "destination": "RING-Oost;Rotterdam;Schiphol;Utrecht",
+ "destination:int_ref": "E 35",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9639498,
+ 52.3530038
+ ],
+ [
+ 4.9636164,
+ 52.3524733
+ ]
+ ]
+ },
+ "id": "way/7045317"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7045318",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9637016,
+ 52.3522337
+ ],
+ [
+ 4.9638583,
+ 52.3524684
+ ]
+ ]
+ },
+ "id": "way/7045318"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7045322",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9638583,
+ 52.3524684
+ ],
+ [
+ 4.9644897,
+ 52.3533579
+ ],
+ [
+ 4.9651144,
+ 52.3544141
+ ]
+ ]
+ },
+ "id": "way/7045322"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7045329",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9651144,
+ 52.3544141
+ ],
+ [
+ 4.9654168,
+ 52.3549246
+ ]
+ ]
+ },
+ "id": "way/7045329"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7045330",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9655643,
+ 52.3557205
+ ],
+ [
+ 4.9646949,
+ 52.3542633
+ ]
+ ]
+ },
+ "id": "way/7045330"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7045334",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.965817,
+ 52.3556658
+ ],
+ [
+ 4.9686241,
+ 52.3605927
+ ],
+ [
+ 4.9701148,
+ 52.3632604
+ ]
+ ]
+ },
+ "id": "way/7045334"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7046905",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "shoulder": "right",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|merge_to_left",
+ "width": "19"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9374902,
+ 52.3354952
+ ],
+ [
+ 4.9363859,
+ 52.3350802
+ ]
+ ]
+ },
+ "id": "way/7046905"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7046916",
+ "carriageway_ref": "Li",
+ "destination": "Zaanstad;Hengelo;Groningen",
+ "destination:int_ref": "E35",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxheight:signed": "no",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "width": "10.5"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9266603,
+ 52.3315372
+ ],
+ [
+ 4.9307528,
+ 52.3329408
+ ]
+ ]
+ },
+ "id": "way/7046916"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7046927",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "shoulder": "right",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "width": "15"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9401262,
+ 52.3365565
+ ],
+ [
+ 4.9395474,
+ 52.3363296
+ ],
+ [
+ 4.9390646,
+ 52.3361335
+ ],
+ [
+ 4.9385764,
+ 52.335932
+ ],
+ [
+ 4.938273,
+ 52.33581
+ ]
+ ]
+ },
+ "id": "way/7046927"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7046931",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "shoulder": "no",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "width": "15"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9430604,
+ 52.3374436
+ ],
+ [
+ 4.9425383,
+ 52.3373144
+ ],
+ [
+ 4.94216,
+ 52.3372153
+ ],
+ [
+ 4.9417535,
+ 52.3370984
+ ],
+ [
+ 4.9413615,
+ 52.3369821
+ ],
+ [
+ 4.9408641,
+ 52.336821
+ ],
+ [
+ 4.9404882,
+ 52.3366908
+ ],
+ [
+ 4.9401262,
+ 52.3365565
+ ]
+ ]
+ },
+ "id": "way/7046931"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047732",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9170248,
+ 52.3287275
+ ],
+ [
+ 4.9166022,
+ 52.3286572
+ ],
+ [
+ 4.9161523,
+ 52.3286035
+ ]
+ ]
+ },
+ "id": "way/7047732"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047734",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9147919,
+ 52.328352
+ ],
+ [
+ 4.9152025,
+ 52.3283741
+ ]
+ ]
+ },
+ "id": "way/7047734"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047881",
+ "carriageway_ref": "Re",
+ "destination": "Rotterdam;Schiphol",
+ "destination:int_ref": "E19",
+ "destination:ref": "RING A10",
+ "destination:symbol": "none;none;airport",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9212733,
+ 52.3298733
+ ],
+ [
+ 4.9200223,
+ 52.3294781
+ ]
+ ]
+ },
+ "id": "way/7047881"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047884",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9243763,
+ 52.330934
+ ],
+ [
+ 4.9230704,
+ 52.3304913
+ ]
+ ]
+ },
+ "id": "way/7047884"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047885",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9244989,
+ 52.3307977
+ ],
+ [
+ 4.9255389,
+ 52.3311571
+ ]
+ ]
+ },
+ "id": "way/7047885"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047886",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9254129,
+ 52.3312923
+ ],
+ [
+ 4.9243763,
+ 52.330934
+ ]
+ ]
+ },
+ "id": "way/7047886"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047887",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9255389,
+ 52.3311571
+ ],
+ [
+ 4.9266603,
+ 52.3315372
+ ]
+ ]
+ },
+ "id": "way/7047887"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047889",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9152025,
+ 52.3283741
+ ],
+ [
+ 4.9162694,
+ 52.3284781
+ ]
+ ]
+ },
+ "id": "way/7047889"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047895",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9171427,
+ 52.3286012
+ ],
+ [
+ 4.9180856,
+ 52.3287797
+ ],
+ [
+ 4.9186309,
+ 52.3289074
+ ],
+ [
+ 4.9191405,
+ 52.3290376
+ ]
+ ]
+ },
+ "id": "way/7047895"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047896",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9190188,
+ 52.3291704
+ ],
+ [
+ 4.917975,
+ 52.3289064
+ ],
+ [
+ 4.9170248,
+ 52.3287275
+ ]
+ ]
+ },
+ "id": "way/7047896"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047900",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9191405,
+ 52.3290376
+ ],
+ [
+ 4.9201528,
+ 52.329335
+ ]
+ ]
+ },
+ "id": "way/7047900"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047901",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9200223,
+ 52.3294781
+ ],
+ [
+ 4.9190188,
+ 52.3291704
+ ]
+ ]
+ },
+ "id": "way/7047901"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047902",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9201528,
+ 52.329335
+ ],
+ [
+ 4.9207356,
+ 52.3295053
+ ]
+ ]
+ },
+ "id": "way/7047902"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047904",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxheight:signed": "no",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.930706,
+ 52.3331136
+ ],
+ [
+ 4.9267808,
+ 52.3317682
+ ]
+ ]
+ },
+ "id": "way/7047904"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7047916",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9267808,
+ 52.3317682
+ ],
+ [
+ 4.9254129,
+ 52.3312923
+ ]
+ ]
+ },
+ "id": "way/7047916"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368857",
+ "carriageway_ref": "Li",
+ "destination": "Groningen;Zaanstad;Hengelo",
+ "destination:int_ref": "E35",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "lit": "yes",
+ "maxheight:signed": "no",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "toll": "no"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9027145,
+ 52.3303647
+ ],
+ [
+ 4.9031751,
+ 52.3301467
+ ],
+ [
+ 4.9036745,
+ 52.3299435
+ ],
+ [
+ 4.9044947,
+ 52.3296335
+ ],
+ [
+ 4.9048035,
+ 52.3295272
+ ],
+ [
+ 4.9051043,
+ 52.3294286
+ ],
+ [
+ 4.9055433,
+ 52.3292959
+ ],
+ [
+ 4.9060676,
+ 52.3291501
+ ],
+ [
+ 4.906648,
+ 52.3290046
+ ],
+ [
+ 4.9070885,
+ 52.3289169
+ ],
+ [
+ 4.9075032,
+ 52.3288422
+ ],
+ [
+ 4.9081803,
+ 52.3287392
+ ],
+ [
+ 4.908853,
+ 52.3286467
+ ],
+ [
+ 4.9101533,
+ 52.3285038
+ ]
+ ]
+ },
+ "id": "way/7368857"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368884",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9136546,
+ 52.3284652
+ ],
+ [
+ 4.9132264,
+ 52.3284675
+ ],
+ [
+ 4.9127604,
+ 52.3284836
+ ]
+ ]
+ },
+ "id": "way/7368884"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368887",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9136763,
+ 52.3283263
+ ],
+ [
+ 4.9139194,
+ 52.3283196
+ ]
+ ]
+ },
+ "id": "way/7368887"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368889",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9127821,
+ 52.328339
+ ],
+ [
+ 4.9132736,
+ 52.3283257
+ ],
+ [
+ 4.9136763,
+ 52.3283263
+ ]
+ ]
+ },
+ "id": "way/7368889"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368902",
+ "carriageway_ref": "Re",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|through|through;right|right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9044937,
+ 52.3304649
+ ],
+ [
+ 4.9033098,
+ 52.3309445
+ ],
+ [
+ 4.9017028,
+ 52.3317153
+ ],
+ [
+ 4.900377,
+ 52.3324087
+ ]
+ ]
+ },
+ "id": "way/7368902"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368906",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9103435,
+ 52.3287323
+ ],
+ [
+ 4.90908,
+ 52.32898
+ ],
+ [
+ 4.90842,
+ 52.32915
+ ],
+ [
+ 4.9074448,
+ 52.3294051
+ ],
+ [
+ 4.90649,
+ 52.32971
+ ],
+ [
+ 4.9058783,
+ 52.3299032
+ ],
+ [
+ 4.9044937,
+ 52.3304649
+ ]
+ ]
+ },
+ "id": "way/7368906"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368909",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9106872,
+ 52.3284629
+ ],
+ [
+ 4.9127821,
+ 52.328339
+ ]
+ ]
+ },
+ "id": "way/7368909"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368911",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9147893,
+ 52.328494
+ ],
+ [
+ 4.9136546,
+ 52.3284652
+ ]
+ ]
+ },
+ "id": "way/7368911"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368912",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9151968,
+ 52.3285182
+ ],
+ [
+ 4.9147893,
+ 52.328494
+ ]
+ ]
+ },
+ "id": "way/7368912"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368913",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9101533,
+ 52.3285038
+ ],
+ [
+ 4.9106872,
+ 52.3284629
+ ]
+ ]
+ },
+ "id": "way/7368913"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368919",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9127604,
+ 52.3284836
+ ],
+ [
+ 4.9120915,
+ 52.3285256
+ ],
+ [
+ 4.9113432,
+ 52.3285956
+ ],
+ [
+ 4.9108664,
+ 52.328652
+ ]
+ ]
+ },
+ "id": "way/7368919"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368927",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9108664,
+ 52.328652
+ ],
+ [
+ 4.9103435,
+ 52.3287323
+ ]
+ ]
+ },
+ "id": "way/7368927"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7368971",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "toll": "no",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8999182,
+ 52.3317364
+ ],
+ [
+ 4.9006689,
+ 52.3313671
+ ],
+ [
+ 4.9016351,
+ 52.3308889
+ ],
+ [
+ 4.9027145,
+ 52.3303647
+ ]
+ ]
+ },
+ "id": "way/7368971"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7370134",
+ "access:lanes": "yes|yes|yes|variable",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "width": "10.5"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.892017,
+ 52.3368389
+ ],
+ [
+ 4.8908107,
+ 52.3374788
+ ]
+ ]
+ },
+ "id": "way/7370134"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7370135",
+ "access:lanes": "yes|yes|yes|variable",
+ "carriageway_ref": "Re",
+ "destination": "Zaanstad;Rotterdam;Schiphol",
+ "destination:int_ref": "E19",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "width": "10.5"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8965712,
+ 52.3344208
+ ],
+ [
+ 4.8963501,
+ 52.3345289
+ ],
+ [
+ 4.8960859,
+ 52.3346686
+ ],
+ [
+ 4.8955714,
+ 52.3349416
+ ],
+ [
+ 4.8940557,
+ 52.3357495
+ ],
+ [
+ 4.893047,
+ 52.336289
+ ],
+ [
+ 4.892017,
+ 52.3368389
+ ]
+ ]
+ },
+ "id": "way/7370135"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7370137",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "smoothness": "good",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through|through|through;slight_right|slight_right",
+ "width": "14",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.889763,
+ 52.3367048
+ ],
+ [
+ 4.8910085,
+ 52.3360938
+ ]
+ ]
+ },
+ "id": "way/7370137"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7370150",
+ "access:lanes": "yes|yes|yes|variable",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8889636,
+ 52.3383935
+ ],
+ [
+ 4.888693,
+ 52.3385128
+ ],
+ [
+ 4.8883926,
+ 52.3386254
+ ],
+ [
+ 4.8877991,
+ 52.3388427
+ ],
+ [
+ 4.8869154,
+ 52.3391042
+ ],
+ [
+ 4.8862428,
+ 52.339269
+ ],
+ [
+ 4.8854309,
+ 52.3394319
+ ],
+ [
+ 4.8849004,
+ 52.3395143
+ ],
+ [
+ 4.8844071,
+ 52.3395785
+ ]
+ ]
+ },
+ "id": "way/7370150"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7370151",
+ "carriageway_ref": "Li",
+ "destination": "Groningen;Hengelo;Utrecht",
+ "destination:int_ref": "E19",
+ "destination:ref": "RING A10",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8924492,
+ 52.3353925
+ ],
+ [
+ 4.8950833,
+ 52.334103
+ ],
+ [
+ 4.8956763,
+ 52.3338117
+ ]
+ ]
+ },
+ "id": "way/7370151"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7370159",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|through|through;right|right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.900377,
+ 52.3324087
+ ],
+ [
+ 4.8976889,
+ 52.3338386
+ ]
+ ]
+ },
+ "id": "way/7370159"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7370160",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|yes|not_right|no",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8956763,
+ 52.3338117
+ ],
+ [
+ 4.8960359,
+ 52.3336362
+ ]
+ ]
+ },
+ "id": "way/7370160"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7374106",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8762648,
+ 52.3385839
+ ],
+ [
+ 4.8770801,
+ 52.3385853
+ ]
+ ]
+ },
+ "id": "way/7374106"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7374107",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8772053,
+ 52.3395764
+ ],
+ [
+ 4.8763843,
+ 52.3395505
+ ]
+ ]
+ },
+ "id": "way/7374107"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7374415",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8829537,
+ 52.3396867
+ ],
+ [
+ 4.8827943,
+ 52.3396925
+ ],
+ [
+ 4.8822052,
+ 52.3396972
+ ],
+ [
+ 4.8812168,
+ 52.339682
+ ],
+ [
+ 4.8791532,
+ 52.3396332
+ ],
+ [
+ 4.8772053,
+ 52.3395764
+ ]
+ ]
+ },
+ "id": "way/7374415"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7374430",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8681006,
+ 52.339191
+ ],
+ [
+ 4.8662199,
+ 52.3391069
+ ]
+ ]
+ },
+ "id": "way/7374430"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7374867",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8690894,
+ 52.3392365
+ ],
+ [
+ 4.8681006,
+ 52.339191
+ ]
+ ]
+ },
+ "id": "way/7374867"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7374869",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8763843,
+ 52.3395505
+ ],
+ [
+ 4.8739502,
+ 52.339456
+ ],
+ [
+ 4.8690894,
+ 52.3392365
+ ]
+ ]
+ },
+ "id": "way/7374869"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7374873",
+ "access:lanes": "yes|yes|yes|variable",
+ "carriageway_ref": "Re",
+ "disused:maxspeed": "100",
+ "hazard": "roadworks",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8638949,
+ 52.3390007
+ ],
+ [
+ 4.8622724,
+ 52.3389263
+ ],
+ [
+ 4.8602744,
+ 52.3388313
+ ]
+ ]
+ },
+ "id": "way/7374873"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7375161",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "none|none|none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8637401,
+ 52.338088
+ ],
+ [
+ 4.867527,
+ 52.3382606
+ ]
+ ]
+ },
+ "id": "way/7375161"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7375163",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8681899,
+ 52.3382907
+ ],
+ [
+ 4.8687725,
+ 52.3383119
+ ],
+ [
+ 4.8690509,
+ 52.3383188
+ ]
+ ]
+ },
+ "id": "way/7375163"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376541",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9144047,
+ 52.4179296
+ ],
+ [
+ 4.9135312,
+ 52.4182468
+ ]
+ ]
+ },
+ "id": "way/7376541"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376543",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9086004,
+ 52.4200973
+ ],
+ [
+ 4.9104964,
+ 52.4192503
+ ],
+ [
+ 4.9116838,
+ 52.418756
+ ],
+ [
+ 4.9129303,
+ 52.4182692
+ ]
+ ]
+ },
+ "id": "way/7376543"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376547",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9123483,
+ 52.4186834
+ ],
+ [
+ 4.9118057,
+ 52.418909
+ ],
+ [
+ 4.9106525,
+ 52.4193987
+ ],
+ [
+ 4.908004,
+ 52.4205859
+ ]
+ ]
+ },
+ "id": "way/7376547"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376548",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9075143,
+ 52.4206034
+ ],
+ [
+ 4.9079105,
+ 52.4204165
+ ]
+ ]
+ },
+ "id": "way/7376548"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376551",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.908004,
+ 52.4205859
+ ],
+ [
+ 4.9076172,
+ 52.4207642
+ ]
+ ]
+ },
+ "id": "way/7376551"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376553",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9129303,
+ 52.4182692
+ ],
+ [
+ 4.9134605,
+ 52.4180764
+ ]
+ ]
+ },
+ "id": "way/7376553"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376556",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.899986,
+ 52.4236132
+ ],
+ [
+ 4.9008767,
+ 52.423351
+ ],
+ [
+ 4.9011786,
+ 52.4232535
+ ],
+ [
+ 4.9020478,
+ 52.4229764
+ ],
+ [
+ 4.9029248,
+ 52.4226607
+ ],
+ [
+ 4.9035328,
+ 52.4224183
+ ],
+ [
+ 4.9044069,
+ 52.4220568
+ ],
+ [
+ 4.9067055,
+ 52.4209839
+ ]
+ ]
+ },
+ "id": "way/7376556"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376557",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9076172,
+ 52.4207642
+ ],
+ [
+ 4.9056561,
+ 52.4216753
+ ]
+ ]
+ },
+ "id": "way/7376557"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376760",
+ "carriageway_ref": "Li",
+ "destination": "RING-West;Rotterdam;Haarlem",
+ "destination:int_ref": "E 22",
+ "destination:ref": "RING A10",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8935785,
+ 52.4249386
+ ],
+ [
+ 4.8926286,
+ 52.425011
+ ],
+ [
+ 4.8916502,
+ 52.4250777
+ ]
+ ]
+ },
+ "id": "way/7376760"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376761",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8916502,
+ 52.4250777
+ ],
+ [
+ 4.8904421,
+ 52.4251176
+ ],
+ [
+ 4.8884038,
+ 52.4251186
+ ]
+ ]
+ },
+ "id": "way/7376761"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376764",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "note": "rijbaan 2 lanes, weefvak 2 lanes",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|slight_right|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.89825,
+ 52.4242141
+ ],
+ [
+ 4.8972376,
+ 52.4244291
+ ],
+ [
+ 4.8956152,
+ 52.4247067
+ ],
+ [
+ 4.8935785,
+ 52.4249386
+ ]
+ ]
+ },
+ "id": "way/7376764"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376765",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8885212,
+ 52.4249941
+ ],
+ [
+ 4.889446,
+ 52.4250056
+ ],
+ [
+ 4.8904449,
+ 52.4249974
+ ],
+ [
+ 4.8914585,
+ 52.4249543
+ ],
+ [
+ 4.892471,
+ 52.4248982
+ ],
+ [
+ 4.8931687,
+ 52.4248395
+ ]
+ ]
+ },
+ "id": "way/7376765"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376769",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8931687,
+ 52.4248395
+ ],
+ [
+ 4.8944872,
+ 52.4246979
+ ],
+ [
+ 4.8955341,
+ 52.4245619
+ ],
+ [
+ 4.896407,
+ 52.4244138
+ ],
+ [
+ 4.8968773,
+ 52.4243274
+ ]
+ ]
+ },
+ "id": "way/7376769"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376770",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "note": "rijbaan 2 lanes, weefvak 2 lanes",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|slight_right|slight_right",
+ "width": "11"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.899284,
+ 52.4239674
+ ],
+ [
+ 4.8987572,
+ 52.4240969
+ ],
+ [
+ 4.89825,
+ 52.4242141
+ ]
+ ]
+ },
+ "id": "way/7376770"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7376771",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "width": "8"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.898236,
+ 52.4240526
+ ],
+ [
+ 4.8987087,
+ 52.4239458
+ ],
+ [
+ 4.8992702,
+ 52.4238058
+ ]
+ ]
+ },
+ "id": "way/7376771"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377193",
+ "access:lanes": "variable|yes",
+ "carriageway_ref": "Li",
+ "emergency:lanes": "yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "layer": "-1",
+ "lit": "yes",
+ "maxheight": "4",
+ "maxspeed": "100",
+ "name": "Eerste Coentunnel",
+ "name:en": "First Coen Tunnel",
+ "name:nl": "Eerste Coentunnel",
+ "not:name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "tunnel": "yes",
+ "wikidata": "Q1106704",
+ "wikipedia": "nl:Coentunnel",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8659473,
+ 52.4162597
+ ],
+ [
+ 4.8609356,
+ 52.410962
+ ]
+ ]
+ },
+ "id": "way/7377193"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377780",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8783603,
+ 52.4234786
+ ],
+ [
+ 4.8788162,
+ 52.4236123
+ ],
+ [
+ 4.8793305,
+ 52.4237518
+ ],
+ [
+ 4.8799816,
+ 52.4239153
+ ],
+ [
+ 4.8804858,
+ 52.4240343
+ ],
+ [
+ 4.8809827,
+ 52.4241415
+ ],
+ [
+ 4.8814836,
+ 52.4242461
+ ],
+ [
+ 4.8818175,
+ 52.4243116
+ ],
+ [
+ 4.8821716,
+ 52.4243766
+ ]
+ ]
+ },
+ "id": "way/7377780"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377786",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:1",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8781444,
+ 52.4235884
+ ],
+ [
+ 4.8767217,
+ 52.4232343
+ ]
+ ]
+ },
+ "id": "way/7377786"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377791",
+ "carriageway_ref": "Re",
+ "destination": "Utrecht;Amersfoort;Volendam",
+ "destination:int_ref": "E 35",
+ "destination:ref": "RING A10",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8759523,
+ 52.4222737
+ ],
+ [
+ 4.8762666,
+ 52.422489
+ ],
+ [
+ 4.8767602,
+ 52.422777
+ ],
+ [
+ 4.8769409,
+ 52.42289
+ ],
+ [
+ 4.8771475,
+ 52.4229956
+ ],
+ [
+ 4.8773923,
+ 52.423109
+ ],
+ [
+ 4.8776019,
+ 52.4232
+ ],
+ [
+ 4.8778689,
+ 52.4233123
+ ],
+ [
+ 4.8781054,
+ 52.4233955
+ ],
+ [
+ 4.8783603,
+ 52.4234786
+ ]
+ ]
+ },
+ "id": "way/7377791"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377804",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8821716,
+ 52.4243766
+ ],
+ [
+ 4.8826068,
+ 52.4244526
+ ],
+ [
+ 4.8830433,
+ 52.4245244
+ ]
+ ]
+ },
+ "id": "way/7377804"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377807",
+ "access:lanes": "yes|yes|no",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:1",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8750353,
+ 52.4228229
+ ],
+ [
+ 4.874426,
+ 52.4226684
+ ],
+ [
+ 4.873969,
+ 52.4225395
+ ]
+ ]
+ },
+ "id": "way/7377807"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377809",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8743983,
+ 52.4215964
+ ],
+ [
+ 4.8747033,
+ 52.4216974
+ ],
+ [
+ 4.8750057,
+ 52.4218127
+ ],
+ [
+ 4.87527,
+ 52.4219309
+ ],
+ [
+ 4.8754444,
+ 52.4220158
+ ],
+ [
+ 4.8759523,
+ 52.4222737
+ ]
+ ]
+ },
+ "id": "way/7377809"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377811",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.87396,
+ 52.42145
+ ],
+ [
+ 4.8743983,
+ 52.4215964
+ ]
+ ]
+ },
+ "id": "way/7377811"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377832",
+ "access:lanes": "variable|yes",
+ "carriageway_ref": "Li",
+ "covered": "yes",
+ "cutting": "yes",
+ "emergency:lanes": "yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "layer": "-1",
+ "lit": "yes",
+ "maxheight": "4",
+ "maxspeed": "100",
+ "name": "Eerste Coentunnel",
+ "name:en": "First Coen Tunnel",
+ "name:nl": "Eerste Coentunnel",
+ "not:name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "wikidata": "Q1106704",
+ "wikipedia": "nl:Coentunnel",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8669684,
+ 52.417339
+ ],
+ [
+ 4.8659473,
+ 52.4162597
+ ]
+ ]
+ },
+ "id": "way/7377832"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377833",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:1",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8767217,
+ 52.4232343
+ ],
+ [
+ 4.8752062,
+ 52.4228655
+ ]
+ ]
+ },
+ "id": "way/7377833"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377848",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8830145,
+ 52.4246352
+ ],
+ [
+ 4.8821434,
+ 52.4244864
+ ]
+ ]
+ },
+ "id": "way/7377848"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377851",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8830433,
+ 52.4245244
+ ],
+ [
+ 4.8835033,
+ 52.4245945
+ ],
+ [
+ 4.8840049,
+ 52.4246649
+ ],
+ [
+ 4.884663,
+ 52.42473
+ ]
+ ]
+ },
+ "id": "way/7377851"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377853",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8865205,
+ 52.4249036
+ ],
+ [
+ 4.8870605,
+ 52.4249371
+ ],
+ [
+ 4.8880361,
+ 52.4249817
+ ]
+ ]
+ },
+ "id": "way/7377853"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377861",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8880361,
+ 52.4249817
+ ],
+ [
+ 4.8885212,
+ 52.4249941
+ ]
+ ]
+ },
+ "id": "way/7377861"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377863",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8879192,
+ 52.4251042
+ ],
+ [
+ 4.8870119,
+ 52.4250637
+ ],
+ [
+ 4.8861064,
+ 52.4250002
+ ],
+ [
+ 4.8853715,
+ 52.4249331
+ ],
+ [
+ 4.8848236,
+ 52.4248763
+ ],
+ [
+ 4.8841685,
+ 52.424799
+ ],
+ [
+ 4.8836515,
+ 52.4247311
+ ],
+ [
+ 4.8830145,
+ 52.4246352
+ ]
+ ]
+ },
+ "id": "way/7377863"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7377864",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8884038,
+ 52.4251186
+ ],
+ [
+ 4.8879192,
+ 52.4251042
+ ]
+ ]
+ },
+ "id": "way/7377864"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379012",
+ "access:lanes": "variable|variable|yes|yes",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|not_left|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "merge_to_right|none|none|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8440449,
+ 52.3914208
+ ],
+ [
+ 4.8440845,
+ 52.3907299
+ ]
+ ]
+ },
+ "id": "way/7379012"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379014",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8444153,
+ 52.3895755
+ ],
+ [
+ 4.8443801,
+ 52.3903527
+ ]
+ ]
+ },
+ "id": "way/7379014"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379188",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8494304,
+ 52.4016054
+ ],
+ [
+ 4.8491045,
+ 52.4013149
+ ]
+ ]
+ },
+ "id": "way/7379188"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379198",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8473461,
+ 52.3998615
+ ],
+ [
+ 4.8460675,
+ 52.3987817
+ ],
+ [
+ 4.8455463,
+ 52.3982453
+ ],
+ [
+ 4.8451511,
+ 52.397776
+ ],
+ [
+ 4.8448301,
+ 52.3973202
+ ],
+ [
+ 4.844578,
+ 52.3969089
+ ],
+ [
+ 4.8443046,
+ 52.3963326
+ ],
+ [
+ 4.8441411,
+ 52.3958937
+ ],
+ [
+ 4.8440007,
+ 52.3953834
+ ]
+ ]
+ },
+ "id": "way/7379198"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379201",
+ "access:lanes": "variable|variable|yes|yes",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|not_left|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "merge_to_right|none|none|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8440054,
+ 52.3921965
+ ],
+ [
+ 4.8440449,
+ 52.3914208
+ ]
+ ]
+ },
+ "id": "way/7379201"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379202",
+ "access:lanes": "variable|yes|yes|yes",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "slight_left|none|none|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.844324,
+ 52.3914289
+ ],
+ [
+ 4.8442976,
+ 52.3919265
+ ]
+ ]
+ },
+ "id": "way/7379202"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379203",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8439526,
+ 52.3949866
+ ],
+ [
+ 4.8439177,
+ 52.3946882
+ ],
+ [
+ 4.8439089,
+ 52.3944731
+ ],
+ [
+ 4.8438985,
+ 52.3939949
+ ]
+ ]
+ },
+ "id": "way/7379203"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379207",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8437956,
+ 52.3775201
+ ],
+ [
+ 4.8434183,
+ 52.3766277
+ ]
+ ]
+ },
+ "id": "way/7379207"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379208",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_right|yes|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8431934,
+ 52.3755906
+ ],
+ [
+ 4.8433851,
+ 52.376025
+ ]
+ ]
+ },
+ "id": "way/7379208"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379504",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8445301,
+ 52.3794845
+ ],
+ [
+ 4.8444958,
+ 52.3793473
+ ]
+ ]
+ },
+ "id": "way/7379504"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379509",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8448137,
+ 52.38259
+ ],
+ [
+ 4.8447129,
+ 52.3844097
+ ]
+ ]
+ },
+ "id": "way/7379509"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379516",
+ "carriageway_ref": "Re",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8446676,
+ 52.3851707
+ ],
+ [
+ 4.844626,
+ 52.385945
+ ]
+ ]
+ },
+ "id": "way/7379516"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379517",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8447129,
+ 52.3844097
+ ],
+ [
+ 4.8446676,
+ 52.3851707
+ ]
+ ]
+ },
+ "id": "way/7379517"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379519",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8444705,
+ 52.3851679
+ ],
+ [
+ 4.8445124,
+ 52.3844057
+ ]
+ ]
+ },
+ "id": "way/7379519"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379523",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "-1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "tunnel": "yes",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8440032,
+ 52.3774867
+ ],
+ [
+ 4.8443187,
+ 52.3782492
+ ]
+ ]
+ },
+ "id": "way/7379523"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379524",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "-1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "tunnel": "yes",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8441137,
+ 52.3782759
+ ],
+ [
+ 4.8437956,
+ 52.3775201
+ ]
+ ]
+ },
+ "id": "way/7379524"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379525",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8445124,
+ 52.3844057
+ ],
+ [
+ 4.844613,
+ 52.3825071
+ ]
+ ]
+ },
+ "id": "way/7379525"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379528",
+ "carriageway_ref": "Li",
+ "destination": "Utrecht;Rotterdam;Schiphol",
+ "destination:int_ref": "E22",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.844613,
+ 52.3825071
+ ],
+ [
+ 4.844702,
+ 52.3807133
+ ],
+ [
+ 4.8446777,
+ 52.3804213
+ ],
+ [
+ 4.8446606,
+ 52.3802989
+ ],
+ [
+ 4.8446548,
+ 52.3801347
+ ]
+ ]
+ },
+ "id": "way/7379528"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379530",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8443187,
+ 52.3782492
+ ],
+ [
+ 4.8444691,
+ 52.3786225
+ ],
+ [
+ 4.8445864,
+ 52.3789505
+ ]
+ ]
+ },
+ "id": "way/7379530"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379537",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.844319,
+ 52.3787841
+ ],
+ [
+ 4.8442884,
+ 52.3786918
+ ],
+ [
+ 4.8441137,
+ 52.3782759
+ ]
+ ]
+ },
+ "id": "way/7379537"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379544",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8446548,
+ 52.3801347
+ ],
+ [
+ 4.8446121,
+ 52.3798525
+ ],
+ [
+ 4.8445751,
+ 52.3796598
+ ],
+ [
+ 4.8445301,
+ 52.3794845
+ ]
+ ]
+ },
+ "id": "way/7379544"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7379866",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "note": "officiele naamsverandering weg",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "slight_left|none"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8556669,
+ 52.4064453
+ ],
+ [
+ 4.8554161,
+ 52.4062499
+ ]
+ ]
+ },
+ "id": "way/7379866"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381713",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through|through|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8511156,
+ 52.3374221
+ ],
+ [
+ 4.8514773,
+ 52.3374405
+ ],
+ [
+ 4.8528623,
+ 52.3375145
+ ]
+ ]
+ },
+ "id": "way/7381713"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381715",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "disused:lanes": "6",
+ "disused:maxspeed": "100",
+ "disused:turn:lanes": "none|none|none|none|slight_right|slight_right",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through|through|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8571198,
+ 52.3377399
+ ],
+ [
+ 4.8580974,
+ 52.3377892
+ ]
+ ]
+ },
+ "id": "way/7381715"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381722",
+ "carriageway_ref": "Re",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8571115,
+ 52.3386883
+ ],
+ [
+ 4.8534737,
+ 52.3384934
+ ]
+ ]
+ },
+ "id": "way/7381722"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381723",
+ "carriageway_ref": "Re",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8531919,
+ 52.3384772
+ ],
+ [
+ 4.8514817,
+ 52.3383696
+ ],
+ [
+ 4.8484561,
+ 52.3381498
+ ],
+ [
+ 4.8482866,
+ 52.3381383
+ ]
+ ]
+ },
+ "id": "way/7381723"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381737",
+ "carriageway_ref": "Li",
+ "destination:lanes": "Rotterdam;Den Haag;Schiphol|Rotterdam;Den Haag;Schiphol|Hengelo;Utrecht|Hengelo;Utrecht",
+ "destination:ref:lanes": "A4|A4|A10|A10",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|slight_right|slight_right;right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8423752,
+ 52.3513039
+ ],
+ [
+ 4.8423093,
+ 52.3510441
+ ],
+ [
+ 4.8422032,
+ 52.3506932
+ ]
+ ]
+ },
+ "id": "way/7381737"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381738",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8422729,
+ 52.350229
+ ],
+ [
+ 4.8424171,
+ 52.3505961
+ ],
+ [
+ 4.8425086,
+ 52.3508652
+ ],
+ [
+ 4.8426196,
+ 52.3513074
+ ]
+ ]
+ },
+ "id": "way/7381738"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381745",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|not_left|yes|yes",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8457092,
+ 52.337131
+ ],
+ [
+ 4.8462249,
+ 52.3371613
+ ]
+ ]
+ },
+ "id": "way/7381745"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381760",
+ "bridge": "yes",
+ "bridge:name": "Schinkelbrug",
+ "carriageway_ref": "Re",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8482866,
+ 52.3381383
+ ],
+ [
+ 4.8478398,
+ 52.3381047
+ ],
+ [
+ 4.8465116,
+ 52.33801
+ ],
+ [
+ 4.846106,
+ 52.3379827
+ ]
+ ]
+ },
+ "id": "way/7381760"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381767",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8421406,
+ 52.3499244
+ ],
+ [
+ 4.8422729,
+ 52.350229
+ ]
+ ]
+ },
+ "id": "way/7381767"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381773",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8581058,
+ 52.3387371
+ ],
+ [
+ 4.8571115,
+ 52.3386883
+ ]
+ ]
+ },
+ "id": "way/7381773"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381774",
+ "carriageway_ref": "Re",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8585583,
+ 52.3387582
+ ],
+ [
+ 4.8581058,
+ 52.3387371
+ ]
+ ]
+ },
+ "id": "way/7381774"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381777",
+ "bridge": "movable",
+ "bridge:movable": "bascule",
+ "bridge:name": "Schinkelbrug",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|not_left|yes|yes",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8462249,
+ 52.3371613
+ ],
+ [
+ 4.8462676,
+ 52.3371632
+ ],
+ [
+ 4.8465237,
+ 52.3371763
+ ]
+ ]
+ },
+ "id": "way/7381777"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381785",
+ "carriageway_ref": "Li",
+ "destination": "RING Zuid;Hengelo;Utrecht",
+ "destination:int_ref": "E 19",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8408883,
+ 52.3437137
+ ],
+ [
+ 4.8408775,
+ 52.3434368
+ ],
+ [
+ 4.8408726,
+ 52.3432351
+ ],
+ [
+ 4.8408857,
+ 52.3424591
+ ]
+ ]
+ },
+ "id": "way/7381785"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381798",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8414177,
+ 52.3420322
+ ],
+ [
+ 4.8413352,
+ 52.3427457
+ ],
+ [
+ 4.8412785,
+ 52.3432442
+ ],
+ [
+ 4.8412516,
+ 52.3434455
+ ],
+ [
+ 4.84116,
+ 52.3445156
+ ],
+ [
+ 4.8411125,
+ 52.3454469
+ ],
+ [
+ 4.841095,
+ 52.3460918
+ ],
+ [
+ 4.841103,
+ 52.3467516
+ ]
+ ]
+ },
+ "id": "way/7381798"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381804",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "destination:lanes": "Rotterdam;Den Haag;Schiphol|Rotterdam;Den Haag;Schiphol|Hengelo;Utrecht|Hengelo;Utrecht|Amsterdam-Slotervaart;Amsterdam-Oud Zuid",
+ "destination:ref:lanes": "A4|A4|A10|A10|S107",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|slight_right|slight_right|right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8420196,
+ 52.3502186
+ ],
+ [
+ 4.8418856,
+ 52.3499201
+ ]
+ ]
+ },
+ "id": "way/7381804"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381806",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8408857,
+ 52.3424591
+ ],
+ [
+ 4.8409119,
+ 52.3413326
+ ],
+ [
+ 4.8409754,
+ 52.3407963
+ ],
+ [
+ 4.8410835,
+ 52.3403506
+ ],
+ [
+ 4.8412123,
+ 52.339633
+ ],
+ [
+ 4.8412946,
+ 52.3392543
+ ],
+ [
+ 4.8414216,
+ 52.3388872
+ ],
+ [
+ 4.8414838,
+ 52.3387578
+ ],
+ [
+ 4.8416007,
+ 52.3385569
+ ],
+ [
+ 4.8416545,
+ 52.3384691
+ ],
+ [
+ 4.8417054,
+ 52.3383941
+ ],
+ [
+ 4.8417672,
+ 52.3383166
+ ],
+ [
+ 4.841845,
+ 52.338237
+ ],
+ [
+ 4.8419157,
+ 52.3381784
+ ]
+ ]
+ },
+ "id": "way/7381806"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381814",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "destination:lanes": "Rotterdam;Den Haag;Schiphol|Rotterdam;Den Haag;Schiphol|Hengelo;Utrecht|Hengelo;Utrecht",
+ "destination:ref:lanes": "A4|A4|A10|A10",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8408879,
+ 52.3470764
+ ],
+ [
+ 4.840861,
+ 52.3467661
+ ]
+ ]
+ },
+ "id": "way/7381814"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381815",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.841103,
+ 52.3467516
+ ],
+ [
+ 4.8411269,
+ 52.3470698
+ ]
+ ]
+ },
+ "id": "way/7381815"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381819",
+ "carriageway_ref": "Li",
+ "destination:lanes": "Rotterdam;Den Haag;Schiphol|Rotterdam;Den Haag;Schiphol|Hengelo;Utrecht|Hengelo;Utrecht",
+ "destination:ref:lanes": "A4|A4|A10|A10",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8411914,
+ 52.3483923
+ ],
+ [
+ 4.8411311,
+ 52.3482035
+ ],
+ [
+ 4.8410856,
+ 52.3480626
+ ],
+ [
+ 4.8410201,
+ 52.3478148
+ ],
+ [
+ 4.8409351,
+ 52.3474264
+ ],
+ [
+ 4.8408879,
+ 52.3470764
+ ]
+ ]
+ },
+ "id": "way/7381819"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7381823",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|not_right|no",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8415559,
+ 52.3486995
+ ],
+ [
+ 4.8417986,
+ 52.3492169
+ ]
+ ]
+ },
+ "id": "way/7381823"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382451",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424114,
+ 52.364358
+ ],
+ [
+ 4.8423647,
+ 52.3658425
+ ]
+ ]
+ },
+ "id": "way/7382451"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382452",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|yes|yes",
+ "foot": "no",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8421539,
+ 52.3658411
+ ],
+ [
+ 4.8421662,
+ 52.3654347
+ ]
+ ]
+ },
+ "id": "way/7382452"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382638",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8429986,
+ 52.375622
+ ],
+ [
+ 4.8427992,
+ 52.3751398
+ ]
+ ]
+ },
+ "id": "way/7382638"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382639",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_right|yes|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8429969,
+ 52.3751101
+ ],
+ [
+ 4.8431934,
+ 52.3755906
+ ]
+ ]
+ },
+ "id": "way/7382639"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382642",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.842269,
+ 52.369119
+ ],
+ [
+ 4.8422501,
+ 52.3697703
+ ]
+ ]
+ },
+ "id": "way/7382642"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382647",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering, zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8423647,
+ 52.3658425
+ ],
+ [
+ 4.8423633,
+ 52.365956
+ ]
+ ]
+ },
+ "id": "way/7382647"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382648",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|yes|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering, zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8421506,
+ 52.3659534
+ ],
+ [
+ 4.8421539,
+ 52.3658411
+ ]
+ ]
+ },
+ "id": "way/7382648"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382650",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_right|yes|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8428492,
+ 52.3747562
+ ],
+ [
+ 4.8429969,
+ 52.3751101
+ ]
+ ]
+ },
+ "id": "way/7382650"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382655",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_right|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424517,
+ 52.3734965
+ ],
+ [
+ 4.8424862,
+ 52.3736441
+ ],
+ [
+ 4.8425684,
+ 52.3739332
+ ],
+ [
+ 4.8426644,
+ 52.3742396
+ ],
+ [
+ 4.8428492,
+ 52.3747562
+ ]
+ ]
+ },
+ "id": "way/7382655"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382664",
+ "carriageway_ref": "Li",
+ "destination": "Amsterdam-West/Zuid;Utrecht;Rotterdam;Schiphol",
+ "destination:int_ref": "E22",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxheight": "default",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8426791,
+ 52.3748734
+ ],
+ [
+ 4.8424404,
+ 52.3741929
+ ],
+ [
+ 4.842278,
+ 52.3736856
+ ],
+ [
+ 4.8421692,
+ 52.3731783
+ ],
+ [
+ 4.8420803,
+ 52.3726606
+ ],
+ [
+ 4.8420368,
+ 52.3722211
+ ],
+ [
+ 4.842014,
+ 52.3717725
+ ],
+ [
+ 4.8419973,
+ 52.3712794
+ ],
+ [
+ 4.8420106,
+ 52.3707718
+ ],
+ [
+ 4.8420246,
+ 52.3701171
+ ]
+ ]
+ },
+ "id": "way/7382664"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382959",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424213,
+ 52.3639309
+ ],
+ [
+ 4.8424114,
+ 52.364358
+ ]
+ ]
+ },
+ "id": "way/7382959"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382961",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8421987,
+ 52.3643554
+ ],
+ [
+ 4.8422096,
+ 52.3639286
+ ]
+ ]
+ },
+ "id": "way/7382961"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382971",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8422096,
+ 52.3639286
+ ],
+ [
+ 4.8422313,
+ 52.3631746
+ ]
+ ]
+ },
+ "id": "way/7382971"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382973",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|yes|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8425155,
+ 52.3524999
+ ],
+ [
+ 4.842499,
+ 52.3521371
+ ],
+ [
+ 4.8424778,
+ 52.3518991
+ ]
+ ]
+ },
+ "id": "way/7382973"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382975",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8426196,
+ 52.3513074
+ ],
+ [
+ 4.8427011,
+ 52.3517866
+ ],
+ [
+ 4.8427251,
+ 52.3519979
+ ],
+ [
+ 4.8427397,
+ 52.3522571
+ ],
+ [
+ 4.8427487,
+ 52.3524996
+ ]
+ ]
+ },
+ "id": "way/7382975"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382977",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|yes|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424713,
+ 52.3542265
+ ],
+ [
+ 4.8424973,
+ 52.3533816
+ ],
+ [
+ 4.8425155,
+ 52.3524999
+ ]
+ ]
+ },
+ "id": "way/7382977"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382978",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424534,
+ 52.3556314
+ ],
+ [
+ 4.8424574,
+ 52.3555213
+ ]
+ ]
+ },
+ "id": "way/7382978"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382979",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8427487,
+ 52.3524996
+ ],
+ [
+ 4.8427179,
+ 52.3538447
+ ]
+ ]
+ },
+ "id": "way/7382979"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382981",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424261,
+ 52.356473
+ ],
+ [
+ 4.8424476,
+ 52.355794
+ ]
+ ]
+ },
+ "id": "way/7382981"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382982",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8426554,
+ 52.3557969
+ ],
+ [
+ 4.8426356,
+ 52.356476
+ ]
+ ]
+ },
+ "id": "way/7382982"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382984",
+ "carriageway_ref": "Li",
+ "destination": "Amsterdam-Zuid;Utrecht;Rotterdam;Schiphol",
+ "destination:int_ref": "E22",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8422789,
+ 52.3615701
+ ],
+ [
+ 4.8423077,
+ 52.3607231
+ ],
+ [
+ 4.8423407,
+ 52.3595313
+ ]
+ ]
+ },
+ "id": "way/7382984"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382985",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8425671,
+ 52.3592036
+ ],
+ [
+ 4.842552,
+ 52.3595331
+ ]
+ ]
+ },
+ "id": "way/7382985"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382987",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8423407,
+ 52.3595313
+ ],
+ [
+ 4.8423487,
+ 52.3592021
+ ]
+ ]
+ },
+ "id": "way/7382987"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382988",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxheight:signed": "no",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8423487,
+ 52.3592021
+ ],
+ [
+ 4.8423695,
+ 52.3584798
+ ],
+ [
+ 4.8424078,
+ 52.3574552
+ ],
+ [
+ 4.8424261,
+ 52.356473
+ ]
+ ]
+ },
+ "id": "way/7382988"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/7382990",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxheight:signed": "no",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8426356,
+ 52.356476
+ ],
+ [
+ 4.8426186,
+ 52.3574692
+ ],
+ [
+ 4.8425805,
+ 52.3584528
+ ],
+ [
+ 4.8425671,
+ 52.3592036
+ ]
+ ]
+ },
+ "id": "way/7382990"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/24729681",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.842445,
+ 52.3630654
+ ],
+ [
+ 4.8424418,
+ 52.3631755
+ ]
+ ]
+ },
+ "id": "way/24729681"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/24729682",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424418,
+ 52.3631755
+ ],
+ [
+ 4.8424213,
+ 52.3639309
+ ]
+ ]
+ },
+ "id": "way/24729682"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/24729683",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8422313,
+ 52.3631746
+ ],
+ [
+ 4.8422369,
+ 52.3630624
+ ]
+ ]
+ },
+ "id": "way/24729683"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/27087862",
+ "access:lanes": "variable|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "emergency:lanes": "yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "-1",
+ "lit": "yes",
+ "maxheight": "4.3",
+ "maxspeed": "100",
+ "name": "Tweede Coentunnel",
+ "name:en": "Second Coen Tunnel",
+ "name:nl": "Tweede Coentunnel",
+ "not:name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "tunnel": "yes",
+ "wikidata": "Q1974151",
+ "wikipedia": "nl:Tweede Coentunnel",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.861459,
+ 52.4107802
+ ],
+ [
+ 4.8671655,
+ 52.4167006
+ ]
+ ]
+ },
+ "id": "way/27087862"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/27244085",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.844626,
+ 52.385945
+ ],
+ [
+ 4.8446063,
+ 52.3863139
+ ]
+ ]
+ },
+ "id": "way/27244085"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/27244087",
+ "carriageway_ref": "Li",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8444301,
+ 52.3859281
+ ],
+ [
+ 4.8444705,
+ 52.3851679
+ ]
+ ]
+ },
+ "id": "way/27244087"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/27244089",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8444108,
+ 52.3862963
+ ],
+ [
+ 4.8444301,
+ 52.3859281
+ ]
+ ]
+ },
+ "id": "way/27244089"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/27244090",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8446063,
+ 52.3863139
+ ],
+ [
+ 4.8445889,
+ 52.3866059
+ ]
+ ]
+ },
+ "id": "way/27244090"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/27381004",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "shoulder": "right",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right",
+ "width": "19"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9363859,
+ 52.3350802
+ ],
+ [
+ 4.935931,
+ 52.3349175
+ ],
+ [
+ 4.9359116,
+ 52.3349105
+ ]
+ ]
+ },
+ "id": "way/27381004"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/27381006",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "shoulder": "right",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right",
+ "width": "19"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9359116,
+ 52.3349105
+ ],
+ [
+ 4.9329479,
+ 52.3338849
+ ],
+ [
+ 4.930706,
+ 52.3331136
+ ]
+ ]
+ },
+ "id": "way/27381006"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/27381009",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "6",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "shoulder": "right",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right|slight_right",
+ "width": "23"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9365261,
+ 52.3349349
+ ],
+ [
+ 4.9374629,
+ 52.3352867
+ ]
+ ]
+ },
+ "id": "way/27381009"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/27381173",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxheight:signed": "no",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "smoothness": "good",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|merge_to_left",
+ "width": "13.5"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9307528,
+ 52.3329408
+ ],
+ [
+ 4.9330209,
+ 52.3337181
+ ]
+ ]
+ },
+ "id": "way/27381173"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/28754388",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9161523,
+ 52.3286035
+ ],
+ [
+ 4.9151968,
+ 52.3285182
+ ]
+ ]
+ },
+ "id": "way/28754388"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/30985187",
+ "carriageway_ref": "Li",
+ "disused:lanes": "6",
+ "disused:maxspeed": "100",
+ "disused:turn:lanes": "none|none|none|none|slight_right|slight_right",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through|through|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8537956,
+ 52.3375616
+ ],
+ [
+ 4.854082,
+ 52.3375734
+ ],
+ [
+ 4.8571198,
+ 52.3377399
+ ]
+ ]
+ },
+ "id": "way/30985187"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/30985188",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "disused:lanes": "6",
+ "disused:maxspeed": "100",
+ "disused:turn:lanes": "none|none|none|none|slight_right|slight_right",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through|through|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8535218,
+ 52.3375475
+ ],
+ [
+ 4.8537956,
+ 52.3375616
+ ]
+ ]
+ },
+ "id": "way/30985188"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/30985195",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8534737,
+ 52.3384934
+ ],
+ [
+ 4.8531919,
+ 52.3384772
+ ]
+ ]
+ },
+ "id": "way/30985195"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/38245925",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|not_right|no",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8414387,
+ 52.348396
+ ],
+ [
+ 4.8414954,
+ 52.3485468
+ ],
+ [
+ 4.8415559,
+ 52.3486995
+ ]
+ ]
+ },
+ "id": "way/38245925"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/38245938",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8420355,
+ 52.3697673
+ ],
+ [
+ 4.8420547,
+ 52.3691163
+ ]
+ ]
+ },
+ "id": "way/38245938"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/38249624",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8441925,
+ 52.3895767
+ ],
+ [
+ 4.8442661,
+ 52.3887508
+ ]
+ ]
+ },
+ "id": "way/38249624"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/38365161",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9714573,
+ 52.3657842
+ ],
+ [
+ 4.9722081,
+ 52.3672126
+ ]
+ ]
+ },
+ "id": "way/38365161"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/38365164",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9712381,
+ 52.3658304
+ ],
+ [
+ 4.970016,
+ 52.3636203
+ ]
+ ]
+ },
+ "id": "way/38365164"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/38524670",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9547886,
+ 52.401258
+ ],
+ [
+ 4.9544349,
+ 52.4014721
+ ],
+ [
+ 4.9533834,
+ 52.4020654
+ ],
+ [
+ 4.9518111,
+ 52.402884
+ ],
+ [
+ 4.9505365,
+ 52.4035053
+ ],
+ [
+ 4.9494911,
+ 52.4039728
+ ]
+ ]
+ },
+ "id": "way/38524670"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/38524672",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9485367,
+ 52.4042104
+ ],
+ [
+ 4.9490137,
+ 52.4040099
+ ],
+ [
+ 4.9504022,
+ 52.4033978
+ ],
+ [
+ 4.9516373,
+ 52.4027991
+ ],
+ [
+ 4.9532365,
+ 52.401962
+ ],
+ [
+ 4.9546577,
+ 52.4011475
+ ]
+ ]
+ },
+ "id": "way/38524672"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/38587055",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.952346,
+ 52.3406701
+ ],
+ [
+ 4.9517949,
+ 52.3403063
+ ]
+ ]
+ },
+ "id": "way/38587055"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/39911403",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "not:name": "Ringweg-West",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.873969,
+ 52.4225395
+ ],
+ [
+ 4.8736635,
+ 52.4224405
+ ]
+ ]
+ },
+ "id": "way/39911403"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/39911408",
+ "access:lanes": "variable|yes|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|yes|no|no",
+ "emergency:lanes": "yes|yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "not:name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.86887,
+ 52.4184911
+ ],
+ [
+ 4.8691773,
+ 52.418797
+ ],
+ [
+ 4.869503,
+ 52.4191035
+ ],
+ [
+ 4.8698723,
+ 52.4194205
+ ],
+ [
+ 4.8701408,
+ 52.4196334
+ ],
+ [
+ 4.8705651,
+ 52.4199377
+ ],
+ [
+ 4.8706877,
+ 52.4200224
+ ]
+ ]
+ },
+ "id": "way/39911408"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/48748939",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8442844,
+ 52.3921904
+ ],
+ [
+ 4.8442935,
+ 52.3928304
+ ],
+ [
+ 4.8443185,
+ 52.3934079
+ ],
+ [
+ 4.8443755,
+ 52.3939646
+ ],
+ [
+ 4.8444729,
+ 52.3944581
+ ],
+ [
+ 4.8445513,
+ 52.3947512
+ ],
+ [
+ 4.8446434,
+ 52.3950661
+ ]
+ ]
+ },
+ "id": "way/48748939"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/75919461",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "destination": "Einsteinweg",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "_link improves spoken navigation",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8444693,
+ 52.3887585
+ ],
+ [
+ 4.8444153,
+ 52.3895755
+ ]
+ ]
+ },
+ "id": "way/75919461"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/75919463",
+ "carriageway_ref": "Li",
+ "destination": "Utrecht;Rotterdam;Schiphol",
+ "destination:int_ref": "E 22",
+ "destination:ref": "RING A10",
+ "destination:symbol": "none;none;airport",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "transition",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8440007,
+ 52.3953834
+ ],
+ [
+ 4.8440061,
+ 52.3952957
+ ]
+ ]
+ },
+ "id": "way/75919463"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/75919470",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8442661,
+ 52.3887508
+ ],
+ [
+ 4.8442867,
+ 52.3885409
+ ]
+ ]
+ },
+ "id": "way/75919470"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/75928702",
+ "carriageway_ref": "Re",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:1",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "survey:date": "2025-01-13",
+ "turn:lanes": "through|through;slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8447534,
+ 52.338024
+ ],
+ [
+ 4.8444759,
+ 52.3380538
+ ],
+ [
+ 4.8442283,
+ 52.3380895
+ ],
+ [
+ 4.8440478,
+ 52.3381252
+ ],
+ [
+ 4.8439021,
+ 52.3381592
+ ],
+ [
+ 4.8437178,
+ 52.3382099
+ ],
+ [
+ 4.8435216,
+ 52.3382755
+ ],
+ [
+ 4.8432523,
+ 52.3383833
+ ],
+ [
+ 4.8429979,
+ 52.3385078
+ ],
+ [
+ 4.8427462,
+ 52.3386585
+ ]
+ ]
+ },
+ "id": "way/75928702"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/76024921",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9636164,
+ 52.3524733
+ ],
+ [
+ 4.9634553,
+ 52.3522398
+ ]
+ ]
+ },
+ "id": "way/76024921"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/76025453",
+ "carriageway_ref": "Li",
+ "destination": "Amsterdam-Noord;Purmerend;Zaanstad",
+ "destination:int_ref": "E35",
+ "destination:ref": "RING A10",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9696348,
+ 52.3868262
+ ],
+ [
+ 4.9693776,
+ 52.3871365
+ ]
+ ]
+ },
+ "id": "way/76025453"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/76232191",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8420022,
+ 52.3394666
+ ],
+ [
+ 4.8419465,
+ 52.3395952
+ ],
+ [
+ 4.8418982,
+ 52.3397308
+ ]
+ ]
+ },
+ "id": "way/76232191"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/82955400",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "note": "rijbaan 2 lanes, weefvak 2 lanes",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|slight_right|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9056561,
+ 52.4216753
+ ],
+ [
+ 4.9045348,
+ 52.4221872
+ ],
+ [
+ 4.9030141,
+ 52.4228205
+ ],
+ [
+ 4.9021781,
+ 52.4231246
+ ],
+ [
+ 4.9012775,
+ 52.4234197
+ ],
+ [
+ 4.9001045,
+ 52.4237629
+ ]
+ ]
+ },
+ "id": "way/82955400"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/82958452",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8821434,
+ 52.4244864
+ ],
+ [
+ 4.8817579,
+ 52.4244138
+ ],
+ [
+ 4.8814025,
+ 52.4243435
+ ],
+ [
+ 4.8807487,
+ 52.4242089
+ ],
+ [
+ 4.8801633,
+ 52.4240777
+ ],
+ [
+ 4.8794184,
+ 52.4238959
+ ],
+ [
+ 4.8789288,
+ 52.4237751
+ ],
+ [
+ 4.8781444,
+ 52.4235884
+ ]
+ ]
+ },
+ "id": "way/82958452"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/87949238",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9207356,
+ 52.3295053
+ ],
+ [
+ 4.9223899,
+ 52.3300683
+ ]
+ ]
+ },
+ "id": "way/87949238"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/111873038",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "destination": "RING-West;Leeuwarden;Zaanstad",
+ "destination:int_ref": "E 22",
+ "destination:ref": "RING A10",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8498554,
+ 52.4008608
+ ],
+ [
+ 4.850277,
+ 52.4012215
+ ]
+ ]
+ },
+ "id": "way/111873038"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/123379292",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "not:name": "Ringweg-West",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8732099,
+ 52.4222737
+ ],
+ [
+ 4.8730162,
+ 52.4221949
+ ],
+ [
+ 4.8727741,
+ 52.4220857
+ ],
+ [
+ 4.8726133,
+ 52.4220085
+ ],
+ [
+ 4.8724713,
+ 52.4219364
+ ],
+ [
+ 4.8722365,
+ 52.4218098
+ ],
+ [
+ 4.8721028,
+ 52.4217328
+ ],
+ [
+ 4.8718391,
+ 52.4215736
+ ],
+ [
+ 4.8714733,
+ 52.4213442
+ ],
+ [
+ 4.8712455,
+ 52.4211913
+ ],
+ [
+ 4.8709838,
+ 52.4210133
+ ],
+ [
+ 4.8706673,
+ 52.420782
+ ],
+ [
+ 4.8705008,
+ 52.4206556
+ ],
+ [
+ 4.8702152,
+ 52.420438
+ ],
+ [
+ 4.8697827,
+ 52.42009
+ ],
+ [
+ 4.8694876,
+ 52.4198441
+ ],
+ [
+ 4.8692511,
+ 52.4196405
+ ],
+ [
+ 4.8691084,
+ 52.419513
+ ]
+ ]
+ },
+ "id": "way/123379292"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/128965109",
+ "carriageway_ref": "Re",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8448294,
+ 52.3955624
+ ],
+ [
+ 4.8449982,
+ 52.3959165
+ ],
+ [
+ 4.8452057,
+ 52.3963024
+ ],
+ [
+ 4.845401,
+ 52.3966221
+ ],
+ [
+ 4.8456215,
+ 52.3969543
+ ],
+ [
+ 4.8459034,
+ 52.3973194
+ ],
+ [
+ 4.8461431,
+ 52.3976106
+ ],
+ [
+ 4.8464038,
+ 52.3978983
+ ],
+ [
+ 4.8467088,
+ 52.3981893
+ ],
+ [
+ 4.8469236,
+ 52.3984176
+ ],
+ [
+ 4.8471997,
+ 52.3986584
+ ],
+ [
+ 4.8475959,
+ 52.3989981
+ ],
+ [
+ 4.848765,
+ 52.3999688
+ ]
+ ]
+ },
+ "id": "way/128965109"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/139347139",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9162694,
+ 52.3284781
+ ],
+ [
+ 4.9166522,
+ 52.3285269
+ ],
+ [
+ 4.9169182,
+ 52.3285644
+ ]
+ ]
+ },
+ "id": "way/139347139"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/217164330",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8447025,
+ 52.3793393
+ ],
+ [
+ 4.8447596,
+ 52.3795461
+ ]
+ ]
+ },
+ "id": "way/217164330"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/217164331",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8448481,
+ 52.3799881
+ ],
+ [
+ 4.8448639,
+ 52.3801492
+ ],
+ [
+ 4.8449002,
+ 52.3807255
+ ],
+ [
+ 4.8448137,
+ 52.38259
+ ]
+ ]
+ },
+ "id": "way/217164331"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/221205615",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_left|not_right|not_left|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "note": "officiele naamsverandering weg",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8556616,
+ 52.4058752
+ ],
+ [
+ 4.8561056,
+ 52.4062517
+ ]
+ ]
+ },
+ "id": "way/221205615"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/221205616",
+ "access:lanes": "variable|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "emergency:lanes": "yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "width": "11",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8585191,
+ 52.4081712
+ ],
+ [
+ 4.8585881,
+ 52.4082223
+ ],
+ [
+ 4.8587912,
+ 52.4083733
+ ],
+ [
+ 4.8589319,
+ 52.4084881
+ ],
+ [
+ 4.8593703,
+ 52.4088337
+ ],
+ [
+ 4.8599126,
+ 52.4092917
+ ],
+ [
+ 4.8607741,
+ 52.4100844
+ ],
+ [
+ 4.8612643,
+ 52.4105776
+ ]
+ ]
+ },
+ "id": "way/221205616"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/221205618",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.850277,
+ 52.4012215
+ ],
+ [
+ 4.8517085,
+ 52.4024632
+ ],
+ [
+ 4.8519318,
+ 52.4026652
+ ]
+ ]
+ },
+ "id": "way/221205618"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/221205619",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|not_left|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "note": "officiele naamsverandering weg",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:4",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "merge_to_right||||",
+ "width": "13",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8519318,
+ 52.4026652
+ ],
+ [
+ 4.8530039,
+ 52.4036057
+ ],
+ [
+ 4.8538383,
+ 52.4043257
+ ],
+ [
+ 4.8540436,
+ 52.4045025
+ ]
+ ]
+ },
+ "id": "way/221205619"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/221364027",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "not:name": "Ringweg-West",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8736635,
+ 52.4224405
+ ],
+ [
+ 4.873475,
+ 52.4223745
+ ],
+ [
+ 4.8732099,
+ 52.4222737
+ ]
+ ]
+ },
+ "id": "way/221364027"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/221380396",
+ "access:lanes": "variable|yes",
+ "carriageway_ref": "Li",
+ "emergency:lanes": "yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8603759,
+ 52.4103705
+ ],
+ [
+ 4.860078,
+ 52.4100622
+ ],
+ [
+ 4.8597684,
+ 52.4097639
+ ],
+ [
+ 4.8591133,
+ 52.4091716
+ ],
+ [
+ 4.8588021,
+ 52.408911
+ ]
+ ]
+ },
+ "id": "way/221380396"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/254282341",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|no",
+ "destination": "RING-Noord;Utrecht;Amersfoort;Volendam",
+ "destination:int_ref": "E 35",
+ "destination:ref": "RING A10",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "motorway": "yes",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "transition",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8713666,
+ 52.4204419
+ ],
+ [
+ 4.8720142,
+ 52.4206948
+ ]
+ ]
+ },
+ "id": "way/254282341"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/254282354",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "width": "14"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9559234,
+ 52.3438506
+ ],
+ [
+ 4.9566749,
+ 52.3446522
+ ],
+ [
+ 4.9574626,
+ 52.3454566
+ ]
+ ]
+ },
+ "id": "way/254282354"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/274383441",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|yes|yes|no",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9545066,
+ 52.3426944
+ ],
+ [
+ 4.9541858,
+ 52.3423395
+ ],
+ [
+ 4.9538548,
+ 52.341983
+ ],
+ [
+ 4.9534503,
+ 52.3415761
+ ],
+ [
+ 4.9530041,
+ 52.341179
+ ]
+ ]
+ },
+ "id": "way/274383441"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/293658307",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8446466,
+ 52.3950765
+ ],
+ [
+ 4.8447153,
+ 52.3952725
+ ],
+ [
+ 4.8447667,
+ 52.3954087
+ ]
+ ]
+ },
+ "id": "way/293658307"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/293658314",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "1",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8554161,
+ 52.4062499
+ ],
+ [
+ 4.8549993,
+ 52.4059661
+ ]
+ ]
+ },
+ "id": "way/293658314"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/293658315",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "slight_left|none|none|none"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8534001,
+ 52.4048581
+ ],
+ [
+ 4.8527751,
+ 52.4043324
+ ],
+ [
+ 4.8510251,
+ 52.4028708
+ ]
+ ]
+ },
+ "id": "way/293658315"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/293658510",
+ "access:lanes": "variable|variable|yes|yes",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|not_left|yes",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "merge_to_right|none|none|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8439575,
+ 52.3932291
+ ],
+ [
+ 4.8439937,
+ 52.3924628
+ ]
+ ]
+ },
+ "id": "way/293658510"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/293851529",
+ "carriageway_ref": "Re",
+ "destination": "RING-Noord;Utrecht;Amersfoort;Volendam",
+ "destination:int_ref": "E 35",
+ "destination:ref": "RING A10",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8725519,
+ 52.420922
+ ],
+ [
+ 4.8735226,
+ 52.4213079
+ ],
+ [
+ 4.87396,
+ 52.42145
+ ]
+ ]
+ },
+ "id": "way/293851529"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/468857465",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8435227,
+ 52.3373621
+ ],
+ [
+ 4.8435919,
+ 52.3373426
+ ],
+ [
+ 4.843665,
+ 52.3373248
+ ],
+ [
+ 4.8437574,
+ 52.3373023
+ ],
+ [
+ 4.8439084,
+ 52.3372728
+ ],
+ [
+ 4.8441748,
+ 52.3372312
+ ]
+ ]
+ },
+ "id": "way/468857465"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/468857468",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "lanes": "2",
+ "layer": "-1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source": "mapservices.prorail.nl",
+ "source:date": "23-1-2017",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "tunnel": "yes",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8419157,
+ 52.3381784
+ ],
+ [
+ 4.8419661,
+ 52.3381342
+ ],
+ [
+ 4.8420182,
+ 52.3380907
+ ],
+ [
+ 4.842072,
+ 52.3380479
+ ],
+ [
+ 4.8421273,
+ 52.338006
+ ],
+ [
+ 4.8421843,
+ 52.3379648
+ ],
+ [
+ 4.8422428,
+ 52.3379245
+ ],
+ [
+ 4.8423029,
+ 52.337885
+ ],
+ [
+ 4.8423644,
+ 52.3378463
+ ],
+ [
+ 4.8424274,
+ 52.3378086
+ ],
+ [
+ 4.8424919,
+ 52.3377718
+ ],
+ [
+ 4.8425577,
+ 52.3377359
+ ],
+ [
+ 4.8426249,
+ 52.3377009
+ ],
+ [
+ 4.8426934,
+ 52.3376669
+ ],
+ [
+ 4.8427631,
+ 52.337634
+ ],
+ [
+ 4.8428342,
+ 52.337602
+ ],
+ [
+ 4.8429064,
+ 52.337571
+ ],
+ [
+ 4.8429798,
+ 52.3375411
+ ],
+ [
+ 4.8430543,
+ 52.3375122
+ ],
+ [
+ 4.8431299,
+ 52.3374844
+ ],
+ [
+ 4.8432065,
+ 52.3374577
+ ],
+ [
+ 4.8432842,
+ 52.3374321
+ ],
+ [
+ 4.8433628,
+ 52.3374076
+ ],
+ [
+ 4.8434423,
+ 52.3373843
+ ],
+ [
+ 4.8435227,
+ 52.3373621
+ ]
+ ]
+ },
+ "id": "way/468857468"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/474659924",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9135312,
+ 52.4182468
+ ],
+ [
+ 4.9123483,
+ 52.4186834
+ ]
+ ]
+ },
+ "id": "way/474659924"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/474659925",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9134605,
+ 52.4180764
+ ],
+ [
+ 4.9143369,
+ 52.4177672
+ ]
+ ]
+ },
+ "id": "way/474659925"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/486782034",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8770801,
+ 52.3385853
+ ],
+ [
+ 4.8790267,
+ 52.338588
+ ],
+ [
+ 4.8816208,
+ 52.3385493
+ ],
+ [
+ 4.8821573,
+ 52.3385373
+ ],
+ [
+ 4.8826626,
+ 52.3385207
+ ],
+ [
+ 4.8831089,
+ 52.3385012
+ ],
+ [
+ 4.8834886,
+ 52.3384751
+ ],
+ [
+ 4.8837687,
+ 52.3384539
+ ],
+ [
+ 4.8840501,
+ 52.3384246
+ ],
+ [
+ 4.8843641,
+ 52.3383861
+ ],
+ [
+ 4.8846857,
+ 52.3383426
+ ],
+ [
+ 4.8850491,
+ 52.3382906
+ ],
+ [
+ 4.8854453,
+ 52.338221
+ ],
+ [
+ 4.8858264,
+ 52.3381377
+ ],
+ [
+ 4.886192,
+ 52.3380543
+ ],
+ [
+ 4.8866395,
+ 52.3379404
+ ],
+ [
+ 4.8870699,
+ 52.3378175
+ ],
+ [
+ 4.8874811,
+ 52.3376871
+ ],
+ [
+ 4.8879478,
+ 52.3375203
+ ],
+ [
+ 4.8883765,
+ 52.337349
+ ],
+ [
+ 4.888699,
+ 52.3372115
+ ]
+ ]
+ },
+ "id": "way/486782034"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/489140280",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8447596,
+ 52.3795461
+ ],
+ [
+ 4.8448481,
+ 52.3799881
+ ]
+ ]
+ },
+ "id": "way/489140280"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491212932",
+ "carriageway_ref": "Re",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.846106,
+ 52.3379827
+ ],
+ [
+ 4.8458625,
+ 52.3379707
+ ],
+ [
+ 4.8456818,
+ 52.3379635
+ ],
+ [
+ 4.8454993,
+ 52.3379604
+ ]
+ ]
+ },
+ "id": "way/491212932"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491573231",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8411269,
+ 52.3470698
+ ],
+ [
+ 4.8411767,
+ 52.347418
+ ],
+ [
+ 4.8412692,
+ 52.3478547
+ ],
+ [
+ 4.8413409,
+ 52.3481134
+ ],
+ [
+ 4.8414387,
+ 52.348396
+ ]
+ ]
+ },
+ "id": "way/491573231"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491573232",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8417986,
+ 52.3492169
+ ],
+ [
+ 4.8421406,
+ 52.3499244
+ ]
+ ]
+ },
+ "id": "way/491573232"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491573234",
+ "carriageway_ref": "Li",
+ "destination:lanes": "Rotterdam;Den Haag;Schiphol|Rotterdam;Den Haag;Schiphol|Hengelo;Utrecht|Hengelo;Utrecht|Amsterdam-Slotervaart;Amsterdam-Oud Zuid",
+ "destination:ref:lanes": "A4|A4|A10|A10|S107",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|slight_right|slight_right|right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8422032,
+ 52.3506932
+ ],
+ [
+ 4.8420196,
+ 52.3502186
+ ]
+ ]
+ },
+ "id": "way/491573234"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491573236",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:1",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "survey:date": "2025-01-13",
+ "turn:lanes": "through|through|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8427462,
+ 52.3386585
+ ],
+ [
+ 4.842606,
+ 52.3387551
+ ],
+ [
+ 4.8423939,
+ 52.3389331
+ ],
+ [
+ 4.8421648,
+ 52.3392062
+ ],
+ [
+ 4.8420022,
+ 52.3394666
+ ]
+ ]
+ },
+ "id": "way/491573236"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491573242",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.848765,
+ 52.3999688
+ ],
+ [
+ 4.8498554,
+ 52.4008608
+ ]
+ ]
+ },
+ "id": "way/491573242"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491573243",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8479531,
+ 52.400363
+ ],
+ [
+ 4.8473461,
+ 52.3998615
+ ]
+ ]
+ },
+ "id": "way/491573243"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491573244",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8491045,
+ 52.4013149
+ ],
+ [
+ 4.8479531,
+ 52.400363
+ ]
+ ]
+ },
+ "id": "way/491573244"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491574922",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8427012,
+ 52.3544849
+ ],
+ [
+ 4.8426554,
+ 52.3557969
+ ]
+ ]
+ },
+ "id": "way/491574922"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491578741",
+ "access:lanes": "variable|variable|yes|yes",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|not_left|yes",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "merge_to_right|none|none|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8439937,
+ 52.3924628
+ ],
+ [
+ 4.8440054,
+ 52.3921965
+ ]
+ ]
+ },
+ "id": "way/491578741"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491578742",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|merge_to_left|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8417182,
+ 52.3401358
+ ],
+ [
+ 4.8415476,
+ 52.3411081
+ ],
+ [
+ 4.8414781,
+ 52.3415873
+ ]
+ ]
+ },
+ "id": "way/491578742"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491581474",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_right|yes|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8433851,
+ 52.376025
+ ],
+ [
+ 4.84357,
+ 52.3764506
+ ]
+ ]
+ },
+ "id": "way/491581474"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491581475",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8430561,
+ 52.3757674
+ ],
+ [
+ 4.8429986,
+ 52.375622
+ ]
+ ]
+ },
+ "id": "way/491581475"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491586073",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8434183,
+ 52.3766277
+ ],
+ [
+ 4.8430561,
+ 52.3757674
+ ]
+ ]
+ },
+ "id": "way/491586073"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491586074",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8427992,
+ 52.3751398
+ ],
+ [
+ 4.8426791,
+ 52.3748734
+ ]
+ ]
+ },
+ "id": "way/491586074"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491586076",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8445864,
+ 52.3789505
+ ],
+ [
+ 4.8447025,
+ 52.3793393
+ ]
+ ]
+ },
+ "id": "way/491586076"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491586081",
+ "carriageway_ref": "Li",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8422369,
+ 52.3630624
+ ],
+ [
+ 4.8422479,
+ 52.3625656
+ ]
+ ]
+ },
+ "id": "way/491586081"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491586085",
+ "carriageway_ref": "Re",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424818,
+ 52.3618171
+ ],
+ [
+ 4.8424667,
+ 52.362383
+ ],
+ [
+ 4.8424506,
+ 52.3628539
+ ]
+ ]
+ },
+ "id": "way/491586085"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491586088",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.842552,
+ 52.3595331
+ ],
+ [
+ 4.8425212,
+ 52.3606322
+ ],
+ [
+ 4.8425007,
+ 52.3612219
+ ]
+ ]
+ },
+ "id": "way/491586088"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491586090",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering, zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8423633,
+ 52.365956
+ ],
+ [
+ 4.8423157,
+ 52.3677533
+ ]
+ ]
+ },
+ "id": "way/491586090"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491586092",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering, zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8423157,
+ 52.3677533
+ ],
+ [
+ 4.842269,
+ 52.369119
+ ]
+ ]
+ },
+ "id": "way/491586092"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491586100",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|yes|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering, zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8420999,
+ 52.3677143
+ ],
+ [
+ 4.842136,
+ 52.3665106
+ ],
+ [
+ 4.8421506,
+ 52.3659534
+ ]
+ ]
+ },
+ "id": "way/491586100"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491586101",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering, zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8420547,
+ 52.3691163
+ ],
+ [
+ 4.842079,
+ 52.3683601
+ ],
+ [
+ 4.8420999,
+ 52.3677143
+ ]
+ ]
+ },
+ "id": "way/491586101"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491590642",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "slight_left|none",
+ "width": "6"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8586603,
+ 52.408794
+ ],
+ [
+ 4.8581816,
+ 52.4084062
+ ],
+ [
+ 4.8580599,
+ 52.4083075
+ ],
+ [
+ 4.8572772,
+ 52.4076815
+ ],
+ [
+ 4.8556669,
+ 52.4064453
+ ]
+ ]
+ },
+ "id": "way/491590642"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491590643",
+ "access:lanes": "variable|yes|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_left|yes|yes|yes",
+ "emergency:lanes": "yes|yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|merge_to_left",
+ "width": "13",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8573161,
+ 52.407232
+ ],
+ [
+ 4.8578027,
+ 52.4076135
+ ],
+ [
+ 4.8579201,
+ 52.4077047
+ ]
+ ]
+ },
+ "id": "way/491590643"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491590647",
+ "carriageway_ref": "Li",
+ "destination": "RING-West;Utrecht;Schiphol;Amsterdam-Sloterdijk",
+ "destination:int_ref": "E 22",
+ "destination:ref": "RING A10",
+ "destination:symbol": "none;none;airport;none",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8510251,
+ 52.4028708
+ ],
+ [
+ 4.8494304,
+ 52.4016054
+ ]
+ ]
+ },
+ "id": "way/491590647"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491590649",
+ "access:lanes": "variable|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "slight_left|none|none|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8443801,
+ 52.3903527
+ ],
+ [
+ 4.844324,
+ 52.3914289
+ ]
+ ]
+ },
+ "id": "way/491590649"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491592272",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8442867,
+ 52.3885409
+ ],
+ [
+ 4.8443171,
+ 52.3879301
+ ]
+ ]
+ },
+ "id": "way/491592272"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491592275",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|yes|yes|no",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8445889,
+ 52.3866059
+ ],
+ [
+ 4.8445237,
+ 52.3877614
+ ],
+ [
+ 4.8444973,
+ 52.3882577
+ ]
+ ]
+ },
+ "id": "way/491592275"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/491592281",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|yes|yes|no",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8444862,
+ 52.3884967
+ ],
+ [
+ 4.8444693,
+ 52.3887585
+ ]
+ ]
+ },
+ "id": "way/491592281"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/494763910",
+ "access:lanes": "variable|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "emergency:lanes": "yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "not:name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8674459,
+ 52.4170089
+ ],
+ [
+ 4.8681771,
+ 52.4177709
+ ],
+ [
+ 4.86887,
+ 52.4184911
+ ]
+ ]
+ },
+ "id": "way/494763910"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/494763912",
+ "access:lanes": "variable|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "covered": "yes",
+ "cutting": "yes",
+ "emergency:lanes": "yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "-1",
+ "lit": "yes",
+ "maxheight": "4.3",
+ "maxspeed": "100",
+ "name": "Tweede Coentunnel",
+ "name:en": "Second Coen Tunnel",
+ "name:nl": "Tweede Coentunnel",
+ "not:name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "wikidata": "Q1974151",
+ "wikipedia": "nl:Tweede Coentunnel",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8671655,
+ 52.4167006
+ ],
+ [
+ 4.8673433,
+ 52.4168954
+ ]
+ ]
+ },
+ "id": "way/494763912"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495529526",
+ "carriageway_ref": "Li",
+ "disused:lanes": "6",
+ "disused:maxspeed": "100",
+ "disused:turn:lanes": "none|none|none|none|slight_right|slight_right",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through|through|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8580974,
+ 52.3377892
+ ],
+ [
+ 4.8584367,
+ 52.3378064
+ ]
+ ]
+ },
+ "id": "way/495529526"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495529527",
+ "carriageway_ref": "Li",
+ "disused:lanes": "6",
+ "disused:maxspeed": "100",
+ "disused:turn:lanes": "none|none|none|none|slight_right|slight_right",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through|through|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8528623,
+ 52.3375145
+ ],
+ [
+ 4.8535218,
+ 52.3375475
+ ]
+ ]
+ },
+ "id": "way/495529527"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495530118",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through|through|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.888699,
+ 52.3372115
+ ],
+ [
+ 4.889763,
+ 52.3367048
+ ]
+ ]
+ },
+ "id": "way/495530118"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495530119",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|yes|yes|no",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through|through|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8910085,
+ 52.3360938
+ ],
+ [
+ 4.8914819,
+ 52.3358598
+ ]
+ ]
+ },
+ "id": "way/495530119"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495530609",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|yes|yes|yes|no",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "6",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9230704,
+ 52.3304913
+ ],
+ [
+ 4.9212733,
+ 52.3298733
+ ]
+ ]
+ },
+ "id": "way/495530609"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495532166",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "6",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "shoulder": "right",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right|slight_right",
+ "width": "23"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9350037,
+ 52.334401
+ ],
+ [
+ 4.936056,
+ 52.3347634
+ ]
+ ]
+ },
+ "id": "way/495532166"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495532167",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9223899,
+ 52.3300683
+ ],
+ [
+ 4.9244989,
+ 52.3307977
+ ]
+ ]
+ },
+ "id": "way/495532167"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495535092",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|yes|yes|no",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9646395,
+ 52.3541697
+ ],
+ [
+ 4.9639498,
+ 52.3530038
+ ]
+ ]
+ },
+ "id": "way/495535092"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495535093",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9646949,
+ 52.3542633
+ ],
+ [
+ 4.9646395,
+ 52.3541697
+ ]
+ ]
+ },
+ "id": "way/495535093"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495535096",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|yes|yes|not_left|yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "6",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9574626,
+ 52.3454566
+ ],
+ [
+ 4.9580152,
+ 52.3459822
+ ],
+ [
+ 4.958621,
+ 52.3465837
+ ]
+ ]
+ },
+ "id": "way/495535096"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495535097",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "shoulder": "no",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right",
+ "width": "19"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9481228,
+ 52.3386825
+ ],
+ [
+ 4.9477282,
+ 52.338578
+ ],
+ [
+ 4.9470287,
+ 52.3383921
+ ],
+ [
+ 4.9463259,
+ 52.3382116
+ ],
+ [
+ 4.9449491,
+ 52.3378778
+ ],
+ [
+ 4.9445075,
+ 52.3377683
+ ],
+ [
+ 4.9440589,
+ 52.3376696
+ ],
+ [
+ 4.9431599,
+ 52.3374684
+ ]
+ ]
+ },
+ "id": "way/495535097"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495536082",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9735007,
+ 52.3800363
+ ],
+ [
+ 4.9733489,
+ 52.3804918
+ ],
+ [
+ 4.9730488,
+ 52.3812779
+ ]
+ ]
+ },
+ "id": "way/495536082"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495536083",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.972732,
+ 52.368848
+ ],
+ [
+ 4.9722995,
+ 52.3678731
+ ]
+ ]
+ },
+ "id": "way/495536083"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495536084",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9654168,
+ 52.3549246
+ ],
+ [
+ 4.965817,
+ 52.3556658
+ ]
+ ]
+ },
+ "id": "way/495536084"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495536347",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9635483,
+ 52.3937162
+ ],
+ [
+ 4.9637375,
+ 52.3934851
+ ]
+ ]
+ },
+ "id": "way/495536347"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495536350",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9626828,
+ 52.3947236
+ ],
+ [
+ 4.9633207,
+ 52.3939943
+ ]
+ ]
+ },
+ "id": "way/495536350"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495536525",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9494911,
+ 52.4039728
+ ],
+ [
+ 4.947882,
+ 52.4046482
+ ],
+ [
+ 4.9472217,
+ 52.4049075
+ ]
+ ]
+ },
+ "id": "way/495536525"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495536526",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9472217,
+ 52.4049075
+ ],
+ [
+ 4.9462925,
+ 52.4052674
+ ]
+ ]
+ },
+ "id": "way/495536526"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495536677",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9243285,
+ 52.4135691
+ ],
+ [
+ 4.9253774,
+ 52.4130721
+ ]
+ ]
+ },
+ "id": "way/495536677"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495536678",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9308658,
+ 52.4102845
+ ],
+ [
+ 4.9319456,
+ 52.4097558
+ ]
+ ]
+ },
+ "id": "way/495536678"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495537084",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9067055,
+ 52.4209839
+ ],
+ [
+ 4.9075143,
+ 52.4206034
+ ]
+ ]
+ },
+ "id": "way/495537084"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495537085",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9079105,
+ 52.4204165
+ ],
+ [
+ 4.9086004,
+ 52.4200973
+ ]
+ ]
+ },
+ "id": "way/495537085"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/495537086",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9145949,
+ 52.4178629
+ ],
+ [
+ 4.9144047,
+ 52.4179296
+ ]
+ ]
+ },
+ "id": "way/495537086"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/651227231",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9310707,
+ 52.4103709
+ ],
+ [
+ 4.9303697,
+ 52.4107359
+ ]
+ ]
+ },
+ "id": "way/651227231"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/679563336",
+ "access:lanes": "variable|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "emergency:lanes": "yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "not:name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8673433,
+ 52.4168954
+ ],
+ [
+ 4.8674459,
+ 52.4170089
+ ]
+ ]
+ },
+ "id": "way/679563336"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/679563339",
+ "access:lanes": "variable|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "covered": "yes",
+ "cutting": "yes",
+ "emergency:lanes": "yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "-1",
+ "lit": "yes",
+ "maxheight": "4.3",
+ "maxspeed": "100",
+ "name": "Tweede Coentunnel",
+ "name:en": "Second Coen Tunnel",
+ "name:nl": "Tweede Coentunnel",
+ "not:name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "wikidata": "Q1974151",
+ "wikipedia": "nl:Tweede Coentunnel",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8612643,
+ 52.4105776
+ ],
+ [
+ 4.861459,
+ 52.4107802
+ ]
+ ]
+ },
+ "id": "way/679563339"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/679563340",
+ "access:lanes": "variable|yes",
+ "carriageway_ref": "Li",
+ "covered": "yes",
+ "cutting": "yes",
+ "emergency:lanes": "yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "layer": "-1",
+ "lit": "yes",
+ "maxheight": "4",
+ "maxspeed": "100",
+ "name": "Eerste Coentunnel",
+ "name:en": "First Coen Tunnel",
+ "name:nl": "Eerste Coentunnel",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "wikidata": "Q1106704",
+ "wikipedia": "nl:Coentunnel",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8609356,
+ 52.410962
+ ],
+ [
+ 4.8603759,
+ 52.4103705
+ ]
+ ]
+ },
+ "id": "way/679563340"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/702297422",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_left|not_right|no",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "note": "officiele naamsverandering weg",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "width": "11",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8555018,
+ 52.4057387
+ ],
+ [
+ 4.8556616,
+ 52.4058752
+ ]
+ ]
+ },
+ "id": "way/702297422"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/702297425",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8549993,
+ 52.4059661
+ ],
+ [
+ 4.8545574,
+ 52.4056652
+ ],
+ [
+ 4.8534001,
+ 52.4048581
+ ]
+ ]
+ },
+ "id": "way/702297425"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/706993022",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|through|through;right|right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8976889,
+ 52.3338386
+ ],
+ [
+ 4.8968831,
+ 52.3342763
+ ],
+ [
+ 4.8965712,
+ 52.3344208
+ ]
+ ]
+ },
+ "id": "way/706993022"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/722735365",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "6",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "shoulder": "right",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right|slight_right",
+ "width": "23"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.936056,
+ 52.3347634
+ ],
+ [
+ 4.9360754,
+ 52.3347704
+ ],
+ [
+ 4.9365261,
+ 52.3349349
+ ]
+ ]
+ },
+ "id": "way/722735365"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/722735725",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9693108,
+ 52.3869132
+ ],
+ [
+ 4.9699083,
+ 52.3861689
+ ],
+ [
+ 4.9704347,
+ 52.3854664
+ ],
+ [
+ 4.9709274,
+ 52.3847686
+ ]
+ ]
+ },
+ "id": "way/722735725"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/741001783",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxheight": "default",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "width": "14"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9558623,
+ 52.3437854
+ ],
+ [
+ 4.9559234,
+ 52.3438506
+ ]
+ ]
+ },
+ "id": "way/741001783"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/741001784",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "width": "14"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9555055,
+ 52.3434048
+ ],
+ [
+ 4.9558623,
+ 52.3437854
+ ]
+ ]
+ },
+ "id": "way/741001784"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/741001785",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "width": "8"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9597845,
+ 52.3480409
+ ],
+ [
+ 4.9591411,
+ 52.347436
+ ],
+ [
+ 4.9580482,
+ 52.3463651
+ ],
+ [
+ 4.957256,
+ 52.3455763
+ ],
+ [
+ 4.9564397,
+ 52.3447292
+ ],
+ [
+ 4.955679,
+ 52.3439288
+ ]
+ ]
+ },
+ "id": "way/741001785"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/756749520",
+ "carriageway_ref": "Li",
+ "destination:lanes": "Rotterdam;Den Haag;Schiphol|Rotterdam;Den Haag;Schiphol|Hengelo;Utrecht|Hengelo;Utrecht|Amsterdam-Slotervaart;Amsterdam-Oud Zuid",
+ "destination:ref:lanes": "A4|A4|A10|A10|S107",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|slight_right|slight_right|right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8418856,
+ 52.3499201
+ ],
+ [
+ 4.8414243,
+ 52.3489597
+ ],
+ [
+ 4.8413126,
+ 52.3486966
+ ]
+ ]
+ },
+ "id": "way/756749520"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/776821853",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "destination:lanes": "Rotterdam;Den Haag;Schiphol|Rotterdam;Den Haag;Schiphol|Hengelo;Utrecht|Hengelo;Utrecht|Amsterdam-Slotervaart;Amsterdam-Oud Zuid",
+ "destination:ref:lanes": "A4|A4|A10|A10|S107",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|slight_right|slight_right|right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8413126,
+ 52.3486966
+ ],
+ [
+ 4.841302,
+ 52.3486753
+ ]
+ ]
+ },
+ "id": "way/776821853"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/789640560",
+ "access:lanes": "yes|yes|yes|variable",
+ "bridge": "yes",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8892036,
+ 52.3382976
+ ],
+ [
+ 4.8889636,
+ 52.3383935
+ ]
+ ]
+ },
+ "id": "way/789640560"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/789640561",
+ "access:lanes": "yes|yes|yes|variable",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "width": "10.5"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8908107,
+ 52.3374788
+ ],
+ [
+ 4.88992,
+ 52.3379486
+ ],
+ [
+ 4.8893632,
+ 52.3382234
+ ],
+ [
+ 4.8892036,
+ 52.3382976
+ ]
+ ]
+ },
+ "id": "way/789640561"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/852173505",
+ "carriageway_ref": "Li",
+ "destination:lanes": "Rotterdam;Den Haag;Schiphol|Rotterdam;Den Haag;Schiphol|Hengelo;Utrecht|Hengelo;Utrecht",
+ "destination:ref:lanes": "A4|A4|A10|A10",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.840861,
+ 52.3467661
+ ],
+ [
+ 4.8408521,
+ 52.3464547
+ ],
+ [
+ 4.8408765,
+ 52.3454566
+ ],
+ [
+ 4.840928,
+ 52.3444317
+ ]
+ ]
+ },
+ "id": "way/852173505"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/859704530",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_left|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "note": "officiele naamsverandering weg",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "width": "11",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8540436,
+ 52.4045025
+ ],
+ [
+ 4.8547342,
+ 52.4050902
+ ],
+ [
+ 4.8551476,
+ 52.4054404
+ ]
+ ]
+ },
+ "id": "way/859704530"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/866749024",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9724865,
+ 52.3677654
+ ],
+ [
+ 4.9729159,
+ 52.3687038
+ ],
+ [
+ 4.9731095,
+ 52.3691939
+ ]
+ ]
+ },
+ "id": "way/866749024"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/866749025",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9722606,
+ 52.3673168
+ ],
+ [
+ 4.9724865,
+ 52.3677654
+ ]
+ ]
+ },
+ "id": "way/866749025"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/866749027",
+ "carriageway_ref": "Re",
+ "covered": "yes",
+ "cutting": "yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9738257,
+ 52.3776552
+ ],
+ [
+ 4.9738921,
+ 52.3772417
+ ],
+ [
+ 4.9739625,
+ 52.3765332
+ ]
+ ]
+ },
+ "id": "way/866749027"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/866749028",
+ "carriageway_ref": "Li",
+ "covered": "yes",
+ "cutting": "yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9736012,
+ 52.3706797
+ ],
+ [
+ 4.9738538,
+ 52.3716704
+ ]
+ ]
+ },
+ "id": "way/866749028"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/866749029",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9732687,
+ 52.370295
+ ],
+ [
+ 4.9732121,
+ 52.3701129
+ ],
+ [
+ 4.9729876,
+ 52.3694887
+ ],
+ [
+ 4.972732,
+ 52.368848
+ ]
+ ]
+ },
+ "id": "way/866749029"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/866749030",
+ "carriageway_ref": "Li",
+ "cutting": "yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9734819,
+ 52.3702817
+ ],
+ [
+ 4.9736012,
+ 52.3706797
+ ]
+ ]
+ },
+ "id": "way/866749030"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/866749031",
+ "carriageway_ref": "Li",
+ "cutting": "yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9741676,
+ 52.3765384
+ ],
+ [
+ 4.9741371,
+ 52.3769393
+ ]
+ ]
+ },
+ "id": "way/866749031"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/866749032",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9738395,
+ 52.3787956
+ ],
+ [
+ 4.9735854,
+ 52.3797627
+ ]
+ ]
+ },
+ "id": "way/866749032"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/866749033",
+ "carriageway_ref": "Re",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9732984,
+ 52.3798483
+ ],
+ [
+ 4.9734291,
+ 52.3793869
+ ],
+ [
+ 4.9735951,
+ 52.3787725
+ ]
+ ]
+ },
+ "id": "way/866749033"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/910068112",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "smoothness": "good",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|slight_right",
+ "width": "13.5"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9330209,
+ 52.3337181
+ ],
+ [
+ 4.9350037,
+ 52.334401
+ ]
+ ]
+ },
+ "id": "way/910068112"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/910069418",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "3",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9169182,
+ 52.3285644
+ ],
+ [
+ 4.9171427,
+ 52.3286012
+ ]
+ ]
+ },
+ "id": "way/910069418"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/910069419",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9139194,
+ 52.3283196
+ ],
+ [
+ 4.9147919,
+ 52.328352
+ ]
+ ]
+ },
+ "id": "way/910069419"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/978868103",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8992702,
+ 52.4238058
+ ],
+ [
+ 4.899986,
+ 52.4236132
+ ]
+ ]
+ },
+ "id": "way/978868103"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/978868104",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "note": "rijbaan 2 lanes, weefvak 2 lanes",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|slight_right|slight_right"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9001045,
+ 52.4237629
+ ],
+ [
+ 4.899284,
+ 52.4239674
+ ]
+ ]
+ },
+ "id": "way/978868104"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/999040452",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "width": "8"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9556117,
+ 52.343858
+ ],
+ [
+ 4.9552569,
+ 52.3434847
+ ],
+ [
+ 4.9545066,
+ 52.3426944
+ ]
+ ]
+ },
+ "id": "way/999040452"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/999040453",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxheight": "default",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "width": "8"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.955679,
+ 52.3439288
+ ],
+ [
+ 4.9556117,
+ 52.343858
+ ]
+ ]
+ },
+ "id": "way/999040453"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1017357983",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9645603,
+ 52.3928524
+ ],
+ [
+ 4.9637659,
+ 52.393776
+ ]
+ ]
+ },
+ "id": "way/1017357983"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1020896904",
+ "carriageway_ref": "Li",
+ "foot": "no",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8421662,
+ 52.3654347
+ ],
+ [
+ 4.8421987,
+ 52.3643554
+ ]
+ ]
+ },
+ "id": "way/1020896904"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1092346865",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8444958,
+ 52.3793473
+ ],
+ [
+ 4.844319,
+ 52.3787841
+ ]
+ ]
+ },
+ "id": "way/1092346865"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1092346866",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.84357,
+ 52.3764506
+ ],
+ [
+ 4.8440032,
+ 52.3774867
+ ]
+ ]
+ },
+ "id": "way/1092346866"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1093814683",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9530041,
+ 52.341179
+ ],
+ [
+ 4.9529213,
+ 52.3411066
+ ],
+ [
+ 4.952346,
+ 52.3406701
+ ]
+ ]
+ },
+ "id": "way/1093814683"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1093943741",
+ "access:lanes": "variable|yes|yes",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_left|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8440845,
+ 52.3907299
+ ],
+ [
+ 4.8441316,
+ 52.3902186
+ ],
+ [
+ 4.8441531,
+ 52.3899462
+ ]
+ ]
+ },
+ "id": "way/1093943741"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1093952223",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|yes|not_right|yes",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8968821,
+ 52.3332181
+ ],
+ [
+ 4.8971343,
+ 52.3330994
+ ]
+ ]
+ },
+ "id": "way/1093952223"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1093953831",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.867527,
+ 52.3382606
+ ],
+ [
+ 4.8681899,
+ 52.3382907
+ ]
+ ]
+ },
+ "id": "way/1093953831"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1093953832",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8690509,
+ 52.3383188
+ ],
+ [
+ 4.8693292,
+ 52.3383274
+ ],
+ [
+ 4.8696617,
+ 52.338338
+ ],
+ [
+ 4.8698519,
+ 52.3383444
+ ],
+ [
+ 4.8702022,
+ 52.3383565
+ ],
+ [
+ 4.8707394,
+ 52.3383827
+ ],
+ [
+ 4.8712798,
+ 52.338415
+ ],
+ [
+ 4.8718256,
+ 52.3384513
+ ],
+ [
+ 4.872343,
+ 52.3384816
+ ],
+ [
+ 4.8728717,
+ 52.3385054
+ ],
+ [
+ 4.874018,
+ 52.3385466
+ ],
+ [
+ 4.8750639,
+ 52.3385696
+ ],
+ [
+ 4.8762648,
+ 52.3385839
+ ]
+ ]
+ },
+ "id": "way/1093953832"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1093956257",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9635332,
+ 52.3940525
+ ],
+ [
+ 4.9627622,
+ 52.3949368
+ ]
+ ]
+ },
+ "id": "way/1093956257"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1093957498",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9455811,
+ 52.4053591
+ ],
+ [
+ 4.9467193,
+ 52.4049398
+ ],
+ [
+ 4.9477556,
+ 52.4045388
+ ],
+ [
+ 4.9485367,
+ 52.4042104
+ ]
+ ]
+ },
+ "id": "way/1093957498"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1093957820",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|merge_to_left"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.9143369,
+ 52.4177672
+ ],
+ [
+ 4.9160536,
+ 52.4171711
+ ]
+ ]
+ },
+ "id": "way/1093957820"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1093958036",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8968773,
+ 52.4243274
+ ],
+ [
+ 4.898236,
+ 52.4240526
+ ]
+ ]
+ },
+ "id": "way/1093958036"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1093958473",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|merge_to_left|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.884663,
+ 52.42473
+ ],
+ [
+ 4.8856039,
+ 52.4248288
+ ],
+ [
+ 4.8865205,
+ 52.4249036
+ ]
+ ]
+ },
+ "id": "way/1093958473"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1134381569",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "destination:lanes": "Rotterdam;Den Haag;Schiphol|Rotterdam;Den Haag;Schiphol|Hengelo;Utrecht|Hengelo;Utrecht|Amsterdam-Slotervaart;Amsterdam-Oud Zuid",
+ "destination:ref:lanes": "A4|A4|A10|A10|S107",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "through|through|slight_right|slight_right|right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.841302,
+ 52.3486753
+ ],
+ [
+ 4.8411914,
+ 52.3483923
+ ]
+ ]
+ },
+ "id": "way/1134381569"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1194747953",
+ "carriageway_ref": "Re",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8447667,
+ 52.3954087
+ ],
+ [
+ 4.8448294,
+ 52.3955624
+ ]
+ ]
+ },
+ "id": "way/1194747953"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1194747958",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8446434,
+ 52.3950661
+ ],
+ [
+ 4.8446466,
+ 52.3950765
+ ]
+ ]
+ },
+ "id": "way/1194747958"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1194747959",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "transition",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8438985,
+ 52.3939949
+ ],
+ [
+ 4.8439575,
+ 52.3932291
+ ]
+ ]
+ },
+ "id": "way/1194747959"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1194755867",
+ "bridge": "viaduct",
+ "carriageway_ref": "Li",
+ "destination": "Utrecht;Rotterdam;Schiphol",
+ "destination:int_ref": "E 22",
+ "destination:ref": "RING A10",
+ "destination:symbol": "none;none;airport",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8440061,
+ 52.3952957
+ ],
+ [
+ 4.8439526,
+ 52.3949866
+ ]
+ ]
+ },
+ "id": "way/1194755867"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1223241460",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|yes|yes|yes|no",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "6",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "none|none|none|through|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8914819,
+ 52.3358598
+ ],
+ [
+ 4.8924492,
+ 52.3353925
+ ]
+ ]
+ },
+ "id": "way/1223241460"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1230633238",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|not_right|not_left|yes",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|through;slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8844071,
+ 52.3395785
+ ],
+ [
+ 4.8838971,
+ 52.3396296
+ ],
+ [
+ 4.8835031,
+ 52.3396579
+ ],
+ [
+ 4.8829537,
+ 52.3396867
+ ]
+ ]
+ },
+ "id": "way/1230633238"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1230633242",
+ "access:lanes": "yes|yes|yes|variable|yes|yes",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|yes|yes|yes|no",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "6",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|through|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8662199,
+ 52.3391069
+ ],
+ [
+ 4.8648936,
+ 52.3390451
+ ]
+ ]
+ },
+ "id": "way/1230633242"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1266081878",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.848411,
+ 52.3372691
+ ],
+ [
+ 4.8494809,
+ 52.3373339
+ ]
+ ]
+ },
+ "id": "way/1266081878"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1269104014",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxheight": "default",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8422501,
+ 52.3697703
+ ],
+ [
+ 4.8422178,
+ 52.3707434
+ ],
+ [
+ 4.8422034,
+ 52.3712562
+ ],
+ [
+ 4.842213,
+ 52.371762
+ ],
+ [
+ 4.8422326,
+ 52.3722117
+ ],
+ [
+ 4.8422941,
+ 52.3726646
+ ],
+ [
+ 4.8423784,
+ 52.3731663
+ ],
+ [
+ 4.8424517,
+ 52.3734965
+ ]
+ ]
+ },
+ "id": "way/1269104014"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1269104017",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|not_right|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8425007,
+ 52.3612219
+ ],
+ [
+ 4.8424818,
+ 52.3618171
+ ]
+ ]
+ },
+ "id": "way/1269104017"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1269104021",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "transition",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8418982,
+ 52.3397308
+ ],
+ [
+ 4.8417182,
+ 52.3401358
+ ]
+ ]
+ },
+ "id": "way/1269104021"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1269104022",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|merge_to_left|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8414781,
+ 52.3415873
+ ],
+ [
+ 4.8414177,
+ 52.3420322
+ ]
+ ]
+ },
+ "id": "way/1269104022"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1269325978",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "transition",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424774,
+ 52.3548288
+ ],
+ [
+ 4.8424713,
+ 52.3542265
+ ]
+ ]
+ },
+ "id": "way/1269325978"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1269325979",
+ "carriageway_ref": "Li",
+ "destination": "RING Zuid;Hengelo;Utrecht",
+ "destination:int_ref": "E 19",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "transition",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.840928,
+ 52.3444317
+ ],
+ [
+ 4.8408883,
+ 52.3437137
+ ]
+ ]
+ },
+ "id": "way/1269325979"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1269325982",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424778,
+ 52.3518991
+ ],
+ [
+ 4.8424548,
+ 52.3517114
+ ],
+ [
+ 4.8423752,
+ 52.3513039
+ ]
+ ]
+ },
+ "id": "way/1269325982"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1269325985",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424476,
+ 52.355794
+ ],
+ [
+ 4.8424534,
+ 52.3556314
+ ]
+ ]
+ },
+ "id": "way/1269325985"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1269325990",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8441531,
+ 52.3899462
+ ],
+ [
+ 4.8441925,
+ 52.3895767
+ ]
+ ]
+ },
+ "id": "way/1269325990"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1270061806",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "naamsverandering zie https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8420246,
+ 52.3701171
+ ],
+ [
+ 4.8420355,
+ 52.3697673
+ ]
+ ]
+ },
+ "id": "way/1270061806"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1270064083",
+ "carriageway_ref": "Li",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8422479,
+ 52.3625656
+ ],
+ [
+ 4.8422789,
+ 52.3615701
+ ]
+ ]
+ },
+ "id": "way/1270064083"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1270096753",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|not_right|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424574,
+ 52.3555213
+ ],
+ [
+ 4.8424774,
+ 52.3548288
+ ]
+ ]
+ },
+ "id": "way/1270096753"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1270138127",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8443171,
+ 52.3879301
+ ],
+ [
+ 4.8444108,
+ 52.3862963
+ ]
+ ]
+ },
+ "id": "way/1270138127"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1270143548",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|yes|yes|no",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8444973,
+ 52.3882577
+ ],
+ [
+ 4.8444862,
+ 52.3884967
+ ]
+ ]
+ },
+ "id": "way/1270143548"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1270145698",
+ "carriageway_ref": "Re",
+ "embankment": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "lit:indirect": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8424506,
+ 52.3628539
+ ],
+ [
+ 4.842445,
+ 52.3630654
+ ]
+ ]
+ },
+ "id": "way/1270145698"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1270172389",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:2",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8427179,
+ 52.3538447
+ ],
+ [
+ 4.8427012,
+ 52.3544849
+ ]
+ ]
+ },
+ "id": "way/1270172389"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1331070955",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:1",
+ "ref": "A10",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|merge_to_left",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8752062,
+ 52.4228655
+ ],
+ [
+ 4.8750353,
+ 52.4228229
+ ]
+ ]
+ },
+ "id": "way/1331070955"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1331091269",
+ "carriageway_ref": "Li",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "note": "Officiele naamsverandering",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8588021,
+ 52.408911
+ ],
+ [
+ 4.8586603,
+ 52.408794
+ ]
+ ]
+ },
+ "id": "way/1331091269"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1331091270",
+ "access:lanes": "variable|yes",
+ "carriageway_ref": "Li",
+ "emergency:lanes": "yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "not:name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8691084,
+ 52.419513
+ ],
+ [
+ 4.8689638,
+ 52.4193816
+ ],
+ [
+ 4.8686735,
+ 52.4191101
+ ],
+ [
+ 4.8683915,
+ 52.418838
+ ],
+ [
+ 4.8676714,
+ 52.4180978
+ ],
+ [
+ 4.8669684,
+ 52.417339
+ ]
+ ]
+ },
+ "id": "way/1331091270"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1331091272",
+ "access:lanes": "variable|yes|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|yes|yes|no|no",
+ "emergency:lanes": "yes|yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Noord",
+ "not:name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "NWB",
+ "source:not:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "merge_to_right|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8706877,
+ 52.4200224
+ ],
+ [
+ 4.8709151,
+ 52.4201675
+ ],
+ [
+ 4.8713666,
+ 52.4204419
+ ]
+ ]
+ },
+ "id": "way/1331091272"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1331091273",
+ "access:lanes": "variable|yes|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_left|not_right|not_left|yes",
+ "emergency:lanes": "yes|yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|merge_to_left",
+ "width": "13",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8569036,
+ 52.4069045
+ ],
+ [
+ 4.8573161,
+ 52.407232
+ ]
+ ]
+ },
+ "id": "way/1331091273"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1331091274",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_left|not_right|not_left|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Officiele naamsverandering",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "none|none|none|none|merge_to_left",
+ "width": "13",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8561056,
+ 52.4062517
+ ],
+ [
+ 4.8569036,
+ 52.4069045
+ ]
+ ]
+ },
+ "id": "way/1331091274"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1331091275",
+ "access:lanes": "variable|yes|yes|yes",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_left|yes|yes",
+ "emergency:lanes": "yes|yes|yes|yes",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "note": "Linkerrijstrook wordt alleen geopend ter vervanging van een andere rijstrook/wisselbaan. Maximaal 8 van de 10 rijstroken in de Coentunnel zijn tegelijk open.",
+ "note:url": "https://www.autoweek.nl/verkeer/waarom-is-de-linker-rijstrook-van-de-coentunnel-altijd-leeg/",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "width": "11",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8579201,
+ 52.4077047
+ ],
+ [
+ 4.8581133,
+ 52.407854
+ ],
+ [
+ 4.8583847,
+ 52.4080644
+ ],
+ [
+ 4.8585191,
+ 52.4081712
+ ]
+ ]
+ },
+ "id": "way/1331091275"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1331091276",
+ "carriageway_ref": "Re",
+ "change:lanes": "yes|not_left|not_right|no",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-West",
+ "note": "officiele naamsverandering weg",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "width": "11",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8551476,
+ 52.4054404
+ ],
+ [
+ 4.8555018,
+ 52.4057387
+ ]
+ ]
+ },
+ "id": "way/1331091276"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1331091279",
+ "carriageway_ref": "Re",
+ "destination": "RING-Noord;Utrecht;Amersfoort;Volendam",
+ "destination:int_ref": "E 35",
+ "destination:ref": "RING A10",
+ "hazmat:B": "no",
+ "hazmat:C": "no",
+ "hazmat:D": "yes",
+ "hazmat:E": "yes",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "motorway": "yes",
+ "name": "Ringweg-Noord",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8720142,
+ 52.4206948
+ ],
+ [
+ 4.8725519,
+ 52.420922
+ ]
+ ]
+ },
+ "id": "way/1331091279"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1332839356",
+ "access:lanes": "variable|yes|yes|yes",
+ "bridge": "viaduct",
+ "carriageway_ref": "Re",
+ "change:lanes": "no|not_left|yes|yes",
+ "highway": "motorway",
+ "int_ref": "E 22",
+ "lanes": "4",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "80",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "turn:lanes": "slight_left|none|none|none",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8442976,
+ 52.3919265
+ ],
+ [
+ 4.8442844,
+ 52.3921904
+ ]
+ ]
+ },
+ "id": "way/1332839356"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1354663630",
+ "carriageway_ref": "Li",
+ "destination": "RING-Noord;Purmerend;Zaanstad",
+ "destination:int_ref": "E35",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "3",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "transition",
+ "ref": "A10",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.958621,
+ 52.3465837
+ ],
+ [
+ 4.9588772,
+ 52.3469157
+ ]
+ ]
+ },
+ "id": "way/1354663630"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359663062",
+ "bridge": "yes",
+ "carriageway_ref": "Li",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "none|none|none|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8971343,
+ 52.3330994
+ ],
+ [
+ 4.8999182,
+ 52.3317364
+ ]
+ ]
+ },
+ "id": "way/1359663062"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359663063",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|yes|not_right|yes",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8960359,
+ 52.3336362
+ ],
+ [
+ 4.8968821,
+ 52.3332181
+ ]
+ ]
+ },
+ "id": "way/1359663063"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359663064",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8441748,
+ 52.3372312
+ ],
+ [
+ 4.8443234,
+ 52.3372112
+ ],
+ [
+ 4.8445334,
+ 52.3371894
+ ],
+ [
+ 4.8448666,
+ 52.3371731
+ ]
+ ]
+ },
+ "id": "way/1359663064"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359663065",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "transition",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8448666,
+ 52.3371731
+ ],
+ [
+ 4.8457092,
+ 52.337131
+ ]
+ ]
+ },
+ "id": "way/1359663065"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359663067",
+ "bridge": "movable",
+ "bridge:movable": "bascule",
+ "bridge:name": "Schinkelbrug",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "layer": "1",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8465237,
+ 52.3371763
+ ],
+ [
+ 4.848411,
+ 52.3372691
+ ]
+ ]
+ },
+ "id": "way/1359663067"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359663075",
+ "carriageway_ref": "Li",
+ "change:lanes": "yes|yes|yes|yes|yes|no",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "6",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through|through|through|slight_right|slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8584367,
+ 52.3378064
+ ],
+ [
+ 4.8594545,
+ 52.3378697
+ ]
+ ]
+ },
+ "id": "way/1359663075"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359663076",
+ "carriageway_ref": "Li",
+ "destination": "Groningen;Hengelo;Utrecht",
+ "destination:int_ref": "E19",
+ "destination:ref": "RING A10",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8594545,
+ 52.3378697
+ ],
+ [
+ 4.8597202,
+ 52.3378843
+ ],
+ [
+ 4.8611225,
+ 52.3379495
+ ],
+ [
+ 4.8637401,
+ 52.338088
+ ]
+ ]
+ },
+ "id": "way/1359663076"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359668401",
+ "carriageway_ref": "Li",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "5",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "middle_of:3",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8494809,
+ 52.3373339
+ ],
+ [
+ 4.8511156,
+ 52.3374221
+ ]
+ ]
+ },
+ "id": "way/1359668401"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359673884",
+ "carriageway_ref": "Re",
+ "destination": "RING-West;Leeuwarden;Zaanstad",
+ "destination:int_ref": "E 22",
+ "destination:ref": "RING A10",
+ "disused:maxspeed": "100",
+ "highway": "motorway",
+ "lanes": "2",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-West",
+ "old_name:-2016-12-13": "Einsteinweg",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "transition",
+ "ref": "A10",
+ "source:name": "https://zoek.officielebekendmakingen.nl/gmb-2016-183326.html",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "turn:lanes": "through|through;slight_right",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8454993,
+ 52.3379604
+ ],
+ [
+ 4.8447534,
+ 52.338024
+ ]
+ ]
+ },
+ "id": "way/1359673884"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359673885",
+ "access:lanes": "yes|yes|yes|variable",
+ "carriageway_ref": "Re",
+ "disused:maxspeed": "100",
+ "hazard": "roadworks",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "90",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "transition",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8602744,
+ 52.3388313
+ ],
+ [
+ 4.8585583,
+ 52.3387582
+ ]
+ ]
+ },
+ "id": "way/1359673885"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1359673887",
+ "access:lanes": "yes|yes|yes|variable",
+ "carriageway_ref": "Re",
+ "destination": "Zaanstad;Rotterdam;Schiphol",
+ "destination:int_ref": "E19",
+ "destination:ref": "RING A10",
+ "highway": "motorway",
+ "int_ref": "E 19",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "maxspeed:type": "sign",
+ "name": "Ringweg-Zuid",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "placement": "right_of:2",
+ "ref": "A10",
+ "surface": "asphalt",
+ "survey:date": "2025-01-27",
+ "zone:traffic": "NL:rural"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.8648936,
+ 52.3390451
+ ],
+ [
+ 4.8638949,
+ 52.3390007
+ ]
+ ]
+ },
+ "id": "way/1359673887"
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "@id": "way/1375575558",
+ "carriageway_ref": "Re",
+ "highway": "motorway",
+ "int_ref": "E 35",
+ "lanes": "4",
+ "lit": "yes",
+ "maxspeed": "100",
+ "name": "Ringweg-Oost",
+ "oneway": "yes",
+ "operator": "Rijkswaterstaat",
+ "ref": "A10",
+ "shoulder": "no",
+ "smoothness": "excellent",
+ "surface": "asphalt",
+ "width": "15"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 4.938273,
+ 52.33581
+ ],
+ [
+ 4.9374902,
+ 52.3354952
+ ]
+ ]
+ },
+ "id": "way/1375575558"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/examples/fixtures/psdata_synthetic.csv b/examples/fixtures/psdata_synthetic.csv
new file mode 100644
index 0000000..bea0567
--- /dev/null
+++ b/examples/fixtures/psdata_synthetic.csv
@@ -0,0 +1,999 @@
+pnt_lat,pnt_lon,d_20180107,d_20180118,d_20180129,d_20180209,d_20180220,d_20180303,d_20180314,d_20180325,d_20180405,d_20180416,d_20180427,d_20180508,d_20180519,d_20180530,d_20180610,d_20180621,d_20180702,d_20180713,d_20180724,d_20180804,d_20180815,d_20180826,d_20180906,d_20180917,d_20180928,d_20181009,d_20181020,d_20181031,d_20181111,d_20181122,d_20181203,d_20181214,d_20190105,d_20190116,d_20190207,d_20190301,d_20190323,d_20190403,d_20190414,d_20190425,d_20190506,d_20190517,d_20190528,d_20190608,d_20190619,d_20190630,d_20190722,d_20190802,d_20190824,d_20190904,d_20190915,d_20190926,d_20191007,d_20191018,d_20191029,d_20191109,d_20191120,d_20191201,d_20191212,d_20191223
+52.379822,4.973473,0.006848166486662237,0.00042312149436877643,0.003129987221470059,0.00492087681669,0.005238865449900761,0.0035774649616547916,0.00487500328485124,0.004494441639630682,0.006068268183338904,0.0034716597879255306,0.0008370385207604693,0.001834008879848297,0.0011892619585285348,0.0014638251135104404,0.00022359960449096485,-0.002417796756298723,-0.0005922388292433124,0.0004365850107360665,0.0013910633458811953,0.002820216110416103,0.002490659821810673,0.0027509585782422427,0.00715510223959176,0.0024646857376243703,-0.000858105950089501,0.004613520927755421,0.003504549313273673,0.005504336697208453,0.004252069497100539,0.006084349711828371,0.005484941184628054,0.0025816181739720637,0.004831339939458578,0.006329787569165871,0.00387198950002484,0.003294561172659741,0.003103497639708699,0.004580194970341346,0.0011116301643194844,0.004723791219208811,0.002888244256875119,0.0019833273178313095,0.004164324418919285,0.0022573077039064375,-0.0004878306670863734,-0.0005002882741553551,0.0012042830895193856,0.001232965828343816,-0.0004637657609179802,0.003949075834958012,0.003954083158989189,0.00742356688718703,0.005598554747457054,0.004886343139044169,0.002721783055010665,0.004798986486257045,0.004657048660754955,0.004353279107820063,0.006394070950570502,0.005908868986632762
+52.379737,4.973493,-0.0044518335133377634,-0.008876878505631224,-0.00887001277852994,-0.00537912318331,-0.0035611345500992393,-0.004822535038345208,-0.008324996715148759,-0.006205558360369318,-0.003331731816661096,-0.00792834021207447,-0.008162961479239532,-0.007965991120151703,-0.006810738041471465,-0.01043617488648956,-0.008276400395509035,-0.012417796756298723,-0.010392238829243311,-0.011263414989263932,-0.009408936654118806,-0.009379783889583899,-0.009109340178189328,-0.008549041421757757,-0.007344897760408239,-0.00833531426237563,-0.012658105950089501,-0.0055864790722445785,-0.007495450686726326,-0.006695663302791547,-0.0059479305028994605,-0.00631565028817163,-0.012415058815371947,-0.008018381826027937,-0.00876866006054142,-0.00737021243083413,-0.017528010499975162,-0.011505438827340259,-0.0112965023602913,-0.011419805029658656,-0.011788369835680516,-0.012376208780791188,-0.01201175574312488,-0.00941667268216869,-0.008435675581080715,-0.018042692296093562,-0.013187830667086373,-0.014900288274155354,-0.012095716910480614,-0.015467034171656183,-0.015563765760917982,-0.009150924165041987,-0.010545916841010812,-0.009176433112812969,-0.007001445252542945,-0.01031365686095583,-0.012078216944989334,-0.009901013513742955,-0.008242951339245045,-0.010946720892179938,-0.008405929049429498,-0.009591131013367239
+52.379653,4.973585,0.007148166486662237,0.0024231214943687767,0.002429987221470059,0.0055208768166899996,0.006838865449900761,0.004377464961654792,0.00557500328485124,0.006594441639630682,0.006668268183338905,0.003571659787925531,0.003637038520760469,0.004934008879848297,0.004289261958528534,0.0025638251135104402,0.004523599604490965,0.0009822032437012765,0.004407761170756687,0.0037365850107360663,0.0038910633458811954,0.004820216110416103,0.004890659821810673,0.002850958578242242,0.00625510223959176,0.0035646857376243706,-5.8105950089500915e-05,0.006113520927755422,0.0068045493132736735,0.004004336697208452,0.005252069497100539,0.007384349711828371,0.0028849411846280535,0.0035816181739720637,0.002731339939458579,0.005729787569165871,0.0025719895000248395,0.0007945611726597412,0.002403497639708699,0.0016801949703413456,0.0011116301643194844,0.002123791219208811,0.005188244256875118,0.0032833273178313094,0.001764324418919285,0.002757307703906438,-0.0009878306670863734,0.0017997117258446449,0.0021042830895193856,0.000332965828343816,-0.0010637657609179803,0.0040490758349580125,0.0030540831589891885,0.0038235668871870305,0.003998554747457054,0.001586343139044169,0.002821783055010665,0.0017989864862570455,0.002657048660754955,0.004753279107820063,0.0023940709505705015,0.002908868986632762
+52.379555,4.973626,-0.0028518335133377636,-0.008576878505631224,-0.006970012778529941,-0.00447912318331,-0.0052611345500992385,-0.005622535038345209,-0.00822499671514876,-0.005205558360369318,-0.005931731816661097,-0.00842834021207447,-0.00636296147923953,-0.005365991120151703,-0.006410738041471465,-0.011236174886489559,-0.0061764003955090355,-0.010317796756298724,-0.007592238829243312,-0.008863414989263933,-0.0063089366541188045,-0.0055797838895838975,-0.006209340178189328,-0.009049041421757758,-0.006644897760408238,-0.00593531426237563,-0.009758105950089501,-0.0034864790722445786,-0.004495450686726327,-0.008995663302791548,-0.005547930502899461,-0.004115650288171629,-0.007615058815371946,-0.008318381826027937,-0.006668660060541422,-0.00697021243083413,-0.01262801049997516,-0.008105438827340258,-0.0064965023602913015,-0.008319805029658655,-0.009888369835680515,-0.008576208780791189,-0.005711755743124882,-0.007716672682168691,-0.006935675581080715,-0.008442692296093563,-0.009687830667086374,-0.009900288274155355,-0.009095716910480615,-0.011367034171656184,-0.01196376576091798,-0.005150924165041988,-0.0060459168410108115,-0.007076433112812969,-0.008901445252542946,-0.010613656860955832,-0.007878216944989335,-0.010201013513742955,-0.010342951339245045,-0.009246720892179938,-0.010405929049429498,-0.007291131013367239
+52.379534,4.973519,-0.0019518335133377636,-0.009076878505631224,-0.007270012778529941,-0.00357912318331,-0.0019611345500992385,-0.004122535038345208,-0.00782499671514876,-0.0038055583603693183,-0.0038317318166610965,-0.007028340212074469,-0.00666296147923953,-0.008965991120151704,-0.007310738041471466,-0.011736174886489559,-0.008176400395509036,-0.013917796756298723,-0.010392238829243311,-0.011563414989263932,-0.011508936654118805,-0.009279783889583898,-0.007409340178189327,-0.010949041421757757,-0.007144897760408239,-0.007335314262375629,-0.0111581059500895,-0.003586479072244579,-0.005595450686726326,-0.007995663302791547,-0.00794793050289946,-0.00271565028817163,-0.008015058815371946,-0.008218381826027936,-0.00786866006054142,-0.00707021243083413,-0.00692801049997516,-0.00910543882734026,-0.007596502360291301,-0.009419805029658656,-0.007988369835680516,-0.010076208780791188,-0.00821175574312488,-0.008116672682168691,-0.010635675581080715,-0.011142692296093562,-0.015487830667086375,-0.015100288274155355,-0.013195716910480614,-0.012267034171656184,-0.01466376576091798,-0.0071509241650419865,-0.009645916841010812,-0.008076433112812968,-0.008301445252542946,-0.009513656860955831,-0.006878216944989335,-0.009001013513742953,-0.006342951339245046,-0.005146720892179937,-0.007405929049429498,-0.006391131013367238
+52.379395,4.973561,-0.0007518335133377639,-0.006176878505631224,-0.0029700127785299408,-0.0030791231833100004,-0.002061134550099239,-0.0029225350383452085,-0.0052249967151487605,-0.003705558360369318,-0.0031317318166610964,-0.007328340212074469,-0.00506296147923953,-0.005665991120151703,-0.006710738041471465,-0.00983617488648956,-0.0071764003955090356,-0.011217796756298724,-0.008692238829243313,-0.008463414989263934,-0.0073089366541188045,-0.007279783889583897,-0.005609340178189327,-0.007749041421757758,-0.006044897760408239,-0.005835314262375629,-0.009758105950089501,-0.003586479072244579,-0.0038954506867263264,-0.005995663302791548,-0.006347930502899461,-0.00211565028817163,-0.007915058815371946,-0.006818381826027935,-0.005568660060541422,-0.005570212430834129,-0.00612801049997516,-0.009305438827340258,-0.006196502360291302,-0.007919805029658654,-0.006688369835680516,-0.007276208780791188,-0.004911755743124881,-0.006816672682168691,-0.009735675581080716,-0.009742692296093562,-0.012187830667086374,-0.014100288274155355,-0.008895716910480614,-0.013067034171656184,-0.01066376576091798,-0.004550924165041987,-0.007045916841010812,-0.00547643311281297,-0.007601445252542945,-0.00821365686095583,-0.006278216944989336,-0.008001013513742954,-0.0076429513392450455,-0.005046720892179937,-0.005305929049429498,-0.006191131013367239
+52.379178,4.973677,0.0030481664866622363,-0.0032768785056312235,2.998722147005907e-05,0.0021208768166899998,0.0016388654499007614,0.0019774649616547918,-0.00192499671514876,0.0014944416396306818,0.008468268183338904,-0.0010283402120744695,0.00023703852076046921,0.001334008879848297,0.0009892619585285347,-0.004836174886489559,-0.0004764003955090351,-0.0035177967562987234,-0.0004922388292433125,-0.0010634149892639335,0.0014910633458811956,0.0011202161104161027,-0.0003093401781893272,-0.0016490414217577574,-0.0023448977604082397,0.0016646857376243704,-0.0038581059500895007,0.0038135209277554215,0.003204549313273673,-0.0007956633027915479,-4.7930502899461126e-05,0.0024843497118283704,-0.0023150588153719462,-0.0014183818260279362,-0.00016866006054142143,0.0004297875691658705,-0.0005280104999751604,-0.0036054388273402587,-0.000996502360291301,-0.0012198050296586545,-0.0021883698356805156,-0.0022762087807911887,-0.00021175574312488107,-0.00031667268216869056,0.0008643244189192848,-0.003542692296093563,-0.0030878306670863737,-0.0035002882741553554,-0.0022957169104806142,-0.004767034171656184,-0.004263765760917981,0.0016490758349580125,0.00045408315898918855,0.0010235668871870305,-0.0013014452525429456,-0.002513656860955831,-0.0002782169449893352,-0.004201013513742954,-0.00024295133924504526,-0.0005467208921799372,-0.0008059290494294985,0.0005088689866327619
+52.379105,4.973673,-0.001751833513337764,-0.006376878505631224,-0.005170012778529941,-0.00497912318331,-0.0036611345500992386,-0.006122535038345208,-0.00272499671514876,-0.0035055583603693184,-0.002631731816661096,-0.00522834021207447,-0.00736296147923953,-0.007165991120151704,-0.0065107380414714654,-0.00473617488648956,-0.008276400395509035,-0.010817796756298723,-0.008992238829243313,-0.009063414989263933,-0.008208936654118804,-0.007579783889583897,-0.006709340178189326,-0.005849041421757757,-0.00434489776040824,-0.006835314262375629,-0.0102581059500895,-0.0034864790722445786,-0.0047954506867263266,-0.006995663302791548,-0.008147930502899461,-0.00401565028817163,-0.008515058815371946,-0.0065183818260279355,-0.007168660060541422,-0.006170212430834129,-0.00832801049997516,-0.00900543882734026,-0.008296502360291301,-0.008719805029658655,-0.008388369835680516,-0.007376208780791189,-0.0046117557431248814,-0.00661667268216869,-0.009435675581080716,-0.008842692296093562,-0.011787830667086373,-0.012900288274155356,-0.010595716910480614,-0.012667034171656183,-0.01356376576091798,-0.007050924165041987,-0.007145916841010812,-0.0024764331128129696,-0.004701445252542945,-0.008713656860955831,-0.008778216944989335,-0.008401013513742953,-0.007242951339245045,-0.0069467208921799375,-0.008005929049429499,-0.008091131013367238
+52.3791,4.973628,0.002848166486662236,-0.0060768785056312235,-0.002770012778529941,-0.0026791231833100003,-0.0014611345500992387,-0.0039225350383452085,-0.00212499671514876,-0.0007055583603693182,-0.0011317318166610964,-0.0038283402120744695,-0.004562961479239531,-0.004465991120151703,-0.0036107380414714648,-0.01153617488648956,-0.0071764003955090356,-0.010217796756298723,-0.007492238829243313,-0.007663414989263934,-0.006108936654118805,-0.005479783889583897,-0.005209340178189327,-0.006649041421757758,-0.005944897760408239,-0.005835314262375629,-0.0087581059500895,-0.0016864790722445787,-0.0023954506867263268,-0.004095663302791547,-0.004447930502899461,-0.0030156502881716297,-0.005715058815371946,-0.0049183818260279365,-0.005368660060541422,-0.005170212430834129,-0.005628010499975161,-0.00790543882734026,-0.006596502360291301,-0.007219805029658654,-0.0072883698356805155,-0.006376208780791188,-0.005211755743124881,-0.00601667268216869,-0.008235675581080714,-0.007542692296093562,-0.009487830667086373,-0.009900288274155355,-0.007995716910480614,-0.009967034171656184,-0.010463765760917981,-0.0055509241650419875,-0.005645916841010811,-0.0034764331128129696,-0.005701445252542945,-0.006613656860955831,-0.004878216944989335,-0.0059010135137429545,-0.005742951339245046,-0.005146720892179937,-0.0059059290494294986,-0.004891131013367239
+52.378896,4.973693,-0.001751833513337764,-0.006376878505631224,-0.004070012778529941,-0.00247912318331,-0.0022611345500992384,-0.0033225350383452087,-0.00452499671514876,-0.003105558360369318,-0.0014317318166610963,-0.005928340212074469,-0.00536296147923953,-0.003965991120151703,-0.004710738041471465,-0.00823617488648956,-0.006276400395509036,-0.008717796756298723,0.00020776117075668754,-0.0012634149892639334,0.0014910633458811956,0.0040202161104161025,-0.003609340178189327,0.0030509585782422426,-0.004844897760408239,-0.00563531426237563,-0.0087581059500895,-0.0023864790722445783,-0.003795450686726327,-0.0041956633027915476,-0.008447930502899461,-0.0025156502881716293,-0.004615058815371946,-0.005618381826027936,-0.0027686600605414213,-0.0052702124308341295,-0.00442801049997516,-0.006605438827340259,-0.004096502360291301,-0.006219805029658654,-0.007688369835680516,-0.004676208780791188,-0.005511755743124881,-0.0074166726821686905,-0.007535675581080715,-0.006542692296093562,-0.011187830667086373,-0.009800288274155355,-0.009495716910480614,-0.010167034171656184,-0.00956376576091798,-0.004550924165041987,-0.004645916841010811,-0.003576433112812969,-0.0031014452525429453,-0.006413656860955831,-0.005178216944989335,-0.006301013513742955,-0.004842951339245045,-0.005246720892179937,-0.005605929049429498,-0.002291131013367238
+52.378842,4.973662,0.0006481664866622362,0.0012231214943687766,-0.003070012778529941,-0.00107912318331,0.00023886544990076134,-0.00032253503834520845,-0.00412499671514876,-0.0026055583603693186,0.0010682681833389038,-0.0038283402120744695,-0.0035629614792395308,-0.002065991120151703,-0.002710738041471465,-0.00603617488648956,-0.004676400395509035,-0.006717796756298723,-0.003192238829243312,-0.0034634149892639335,-0.0023089366541188044,-0.0014797838895838971,-0.0018093401781893272,-0.005949041421757758,-0.0032448977604082395,-0.0012353142623756294,-0.006958105950089501,-0.0007864790722445785,0.00020454931327367338,-0.0022956633027915478,-0.004247930502899461,-0.0003156502881716298,-0.004915058815371946,-0.004318381826027937,-0.002368660060541421,-0.0019702124308341295,-0.0001280104999751604,-0.005805438827340258,-0.0037965023602913013,-0.0031198050296586547,-0.004088369835680516,-0.003676208780791189,-0.002911755743124881,-0.0027166726821686903,-0.014135675581080715,-0.008342692296093563,-0.006587830667086373,-0.006400288274155355,-0.005195716910480614,-0.005967034171656184,-0.00646376576091798,-0.0016509241650419872,-0.0037459168410108115,-0.003976433112812969,-0.0029014452525429456,-0.006913656860955831,-0.003878216944989335,-0.004801013513742955,-0.0043429513392450455,-0.004046720892179937,-0.005005929049429498,-0.0034911310133672385
+52.378801,4.973689,-0.002651833513337764,-0.006376878505631224,-0.0007700127785299409,-0.00077912318331,-0.0014611345500992387,-0.0028225350383452087,-0.00872499671514876,-0.0025055583603693183,-0.0028317318166610965,-0.00852834021207447,-0.005562961479239531,-0.005565991120151703,-0.005710738041471465,-0.00633617488648956,-0.005576400395509036,-0.010217796756298723,-0.007592238829243312,-0.007063414989263933,-0.0028089366541188044,-0.004079783889583897,-0.004509340178189327,-0.005449041421757758,-0.0032448977604082395,-0.0029353142623756295,-0.0078581059500895,-0.00048647907224457854,-0.0008954506867263266,-0.005095663302791547,-0.0049479305028994605,8.434971182837018e-05,-0.0022150588153719464,-0.0008183818260279361,-0.0012686600605414213,0.0017297875691658705,-0.004828010499975161,-0.004605438827340259,-0.002696502360291301,-0.006419805029658654,-0.0022883698356805154,-0.005276208780791189,-0.003311755743124881,-0.008316672682168692,-0.005335675581080715,-0.012142692296093563,-0.007487830667086373,-0.009000288274155355,-0.005395716910480615,-0.009467034171656183,-0.00956376576091798,-0.002950924165041987,-0.004845916841010812,-0.0037764331128129695,-0.006101445252542945,-0.006613656860955831,-0.004378216944989336,-0.0062010135137429544,-0.005442951339245046,-0.0039467208921799375,-0.005705929049429498,-0.003991131013367238
+52.378569,4.973744,-0.002051833513337764,-0.003976878505631224,-0.0043700127785299405,-0.00387912318331,-0.003461134550099239,-0.0030225350383452083,-0.00712499671514876,-0.003305558360369318,-0.0017317318166610962,-0.0058283402120744695,-0.00536296147923953,-0.003565991120151703,-0.003810738041471465,-0.00963617488648956,-0.005276400395509036,-0.005617796756298724,-0.007092238829243313,-0.007563414989263934,-0.0013089366541188044,-0.0010797838895838974,-0.0031093401781893265,-0.008449041421757758,-0.004844897760408239,-0.006135314262375629,-0.008858105950089502,-0.002286479072244579,-0.0036954506867263267,-0.007295663302791548,-0.007547930502899461,-0.00271565028817163,-0.007315058815371946,-0.007118381826027935,-0.005868660060541422,-0.004770212430834129,-0.00692801049997516,-0.00850543882734026,-0.005296502360291301,-0.006219805029658654,-0.008388369835680516,-0.006976208780791188,-0.002911755743124881,-0.003916672682168691,-0.008335675581080716,-0.008842692296093562,-0.007287830667086374,-0.010400288274155355,-0.007095716910480615,-0.007767034171656184,-0.01036376576091798,-0.007650924165041987,-0.005445916841010812,-0.005976433112812969,-0.008401445252542945,-0.008913656860955832,-0.005878216944989335,-0.009001013513742953,-0.008442951339245044,-0.0069467208921799375,-0.007905929049429498,-0.007191131013367238
+52.378488,4.973791,-0.0013518335133377638,0.00042312149436877643,-0.004970012778529941,-0.0001791231833100002,-0.0028611345500992383,-0.0018225350383452086,-0.0035249967151487604,-0.0013055583603693182,-0.00023173181666109616,-0.0015283402120744695,-0.00596296147923953,-0.003665991120151703,-0.005410738041471465,-0.01473617488648956,-0.006676400395509035,-0.009017796756298723,-0.0069922388292433125,-0.007563414989263934,-0.006008936654118805,-0.006079783889583897,-0.004209340178189327,-0.013549041421757758,-0.009144897760408239,-0.005535314262375629,-0.0099581059500895,-0.0030864790722445784,-0.003995450686726326,-0.010395663302791548,-0.00934793050289946,-0.00241565028817163,-0.010915058815371945,-0.007118381826027935,-0.006768660060541422,-0.00437021243083413,-0.0013280104999751604,-0.010405438827340258,-0.0054965023602913015,-0.007219805029658654,-0.006588369835680515,-0.009576208780791188,-0.0037117557431248813,-0.00531667268216869,-0.009335675581080715,-0.013442692296093562,-0.009087830667086374,-0.009700288274155354,-0.008195716910480615,-0.010967034171656185,-0.010963765760917982,-0.004750924165041987,-0.006445916841010812,-0.010276433112812969,-0.007201445252542946,-0.008913656860955832,-0.005178216944989335,-0.0072010135137429545,-0.007942951339245045,-0.007046720892179937,-0.004705929049429498,-0.0057911310133672384
+52.378429,4.97376,-0.0022518335133377637,-0.005276878505631224,-0.001570012778529941,-0.0005791231833100002,-0.0018611345500992385,-0.0042225350383452084,-0.0062249967151487605,-0.0028055583603693183,-0.0031317318166610964,-0.00362834021207447,-0.006162961479239531,-0.002365991120151703,-0.0062107380414714655,-0.007536174886489559,-0.0071764003955090356,-0.006717796756298723,-0.005292238829243312,-0.008063414989263933,-0.006808936654118805,-0.0038797838895838974,-0.005409340178189327,-0.0075490414217577574,-0.0038448977604082393,-0.0052353142623756295,-0.0093581059500895,-0.0026864790722445782,-0.004395450686726326,-0.004595663302791548,-0.007047930502899461,-0.0010156502881716299,-0.006415058815371946,-0.005918381826027936,-0.0038686600605414216,-0.0042702124308341294,-0.007428010499975161,-0.007205438827340259,-0.005996502360291301,-0.004419805029658655,-0.004388369835680516,-0.007576208780791188,-0.002411755743124881,-0.005816672682168691,-0.005335675581080715,-0.008042692296093563,-0.010587830667086373,-0.0078002882741553545,-0.008695716910480614,-0.009867034171656184,-0.011563765760917982,-0.004450924165041987,-0.005845916841010812,-0.006776433112812969,-0.004701445252542945,-0.006213656860955831,-0.008178216944989335,-0.005601013513742955,-0.004942951339245045,-0.004046720892179937,-0.004505929049429498,-0.005991131013367238
+52.378375,4.973815,-0.0025518335133377637,-0.004176878505631224,-0.005270012778529941,-0.0026791231833100003,-0.0019611345500992385,-0.0016225350383452086,-0.00512499671514876,-0.002305558360369318,-0.00023173181666109616,-0.00522834021207447,-0.005862961479239531,-0.004665991120151703,-0.0065107380414714654,-0.009236174886489559,-0.007076400395509035,-0.009117796756298722,-0.008892238829243311,-0.007863414989263934,-0.006408936654118805,-0.007779783889583897,-0.008009340178189328,-0.010449041421757758,-0.00644489776040824,-0.0065353142623756294,-0.0119581059500895,-0.0024864790722445786,-0.005495450686726327,-0.006095663302791547,-0.0069479305028994605,-0.0023156502881716296,-0.006415058815371946,-0.006018381826027937,-0.0049686600605414214,-0.004170212430834129,-0.006528010499975161,-0.007705438827340259,-0.005796502360291301,-0.006719805029658655,-0.006988369835680516,-0.008376208780791188,-0.004511755743124881,-0.00661667268216869,-0.006135675581080715,-0.012942692296093562,-0.009987830667086374,-0.011800288274155355,-0.010495716910480615,-0.012367034171656183,-0.01246376576091798,-0.007850924165041987,-0.008745916841010812,-0.00667643311281297,-0.006901445252542946,-0.007713656860955831,-0.006178216944989335,-0.006301013513742955,-0.005842951339245045,-0.005846720892179937,-0.004705929049429498,-0.004591131013367238
+52.378303,4.973806,-0.0014518335133377636,-0.005776878505631224,-0.004170012778529941,-0.0021791231833100002,-0.0022611345500992384,-0.0028225350383452087,-0.0035249967151487604,-0.0029055583603693185,6.826818333890376e-05,-0.00452834021207447,-0.00566296147923953,-0.004665991120151703,-0.005010738041471465,-0.00993617488648956,-0.006776400395509035,-0.008417796756298723,-0.004392238829243313,-0.008863414989263933,-0.00010893665411880449,-0.009079783889583897,0.005590659821810673,-0.010449041421757758,-0.00954489776040824,-0.006435314262375629,-0.012058105950089501,-0.003986479072244578,-0.005495450686726327,-0.008995663302791548,-0.009547930502899461,-0.00371565028817163,-0.010115058815371947,-0.009518381826027936,-0.005168660060541422,-0.006170212430834129,-0.007728010499975161,-0.007005438827340259,-0.006296502360291301,-0.007919805029658654,-0.008788369835680515,-0.009776208780791188,-0.006011755743124882,-0.0074166726821686905,-0.007135675581080716,-0.009342692296093563,-0.009587830667086374,-0.009800288274155355,-0.010795716910480615,-0.003867034171656184,-0.01176376576091798,-0.009750924165041986,-0.008045916841010812,-0.00497643311281297,-0.006401445252542945,-0.008013656860955832,-0.006178216944989335,-0.008701013513742953,-0.004142951339245046,-0.004746720892179937,-0.005405929049429498,-0.005891131013367239
+52.378023,4.973788,-0.0010518335133377639,-0.0029768785056312236,-0.001870012778529941,0.0008208768166899998,0.0007388654499007613,0.0006774649616547915,-0.00422499671514876,-0.00040555836036931824,-0.0006317318166610963,-0.005728340212074469,-0.0030629614792395308,-0.000365991120151703,-0.003410738041471465,-0.01013617488648956,-0.005076400395509035,-0.004917796756298724,-0.005792238829243313,-0.007163414989263934,-0.004908936654118805,-0.004979783889583897,-0.005709340178189327,-0.009449041421757757,-0.0067448977604082395,-0.0030353142623756294,-0.0078581059500895,-0.0010864790722445784,-0.002095450686726327,-0.005995663302791548,-0.005347930502899461,0.0010843497118283702,-0.005815058815371946,-0.003418381826027936,-0.0012686600605414213,-0.0020702124308341293,-0.00222801049997516,-0.0052054388273402585,-0.0020965023602913012,-0.0038198050296586548,-0.0024883698356805155,-0.006176208780791189,-0.001111755743124881,-0.0022166726821686903,-0.003435675581080715,-0.008742692296093563,-0.0059878306670863735,-0.006900288274155355,-0.006295716910480614,-0.010267034171656184,-0.00906376576091798,-0.0030509241650419875,-0.0031459168410108117,-0.00467643311281297,-0.0036014452525429458,-0.005713656860955831,-0.003578216944989335,-0.004601013513742955,-0.002442951339245045,-0.001946720892179937,-0.0009059290494294986,0.0007088689866327619
+52.377584,4.97394,-0.0006518335133377637,-0.0022768785056312235,-0.000970012778529941,0.00012087681668999993,0.0004388654499007613,-0.0005225350383452085,-0.0005249967151487601,9.444163963068177e-05,0.0036682681833389037,-0.0016283402120744696,-0.003462961479239531,-0.0016659911201517032,-0.0031107380414714648,-0.005836174886489559,-0.004876400395509036,-0.0035177967562987234,-0.004892238829243312,-0.006563414989263934,-0.006008936654118805,-0.006679783889583897,-0.006209340178189328,-0.007749041421757758,-0.00554489776040824,-0.006035314262375629,-0.009158105950089502,-0.0018864790722445787,-0.004295450686726326,-0.004695663302791547,-0.004147930502899461,-0.0004156502881716296,-0.0037150588153719464,-0.003718381826027936,-0.0026686600605414215,-0.0029702124308341295,-0.0013280104999751604,-0.004105438827340258,-0.0027965023602913013,-0.0026198050296586542,-0.004488369835680515,-0.004576208780791189,-0.0019117557431248809,-0.0026166726821686905,-0.003535675581080715,-0.005742692296093563,-0.006087830667086374,-0.006700288274155355,-0.006395716910480615,-0.008967034171656185,-0.00946376576091798,-0.003850924165041988,-0.004545916841010812,-0.002976433112812969,-0.0031014452525429453,-0.004013656860955831,-0.003578216944989335,-0.0028010135137429546,-0.0027429513392450452,-0.0025467208921799373,-0.0005059290494294985,-0.0009911310133672382
+52.367063,4.972107,-0.0013518335133377638,-0.004576878505631224,-0.003170012778529941,0.0013208768166899998,-0.0022611345500992384,-0.0016225350383452086,-0.00372499671514876,-0.0012055583603693182,-0.001631731816661096,-0.00422834021207447,-0.0012629614792395308,-0.0005659911201517031,-0.0012107380414714652,-0.00503617488648956,-0.002076400395509035,0.005582203243701277,-0.0017922388292433123,0.0016365850107360666,0.0004910633458811955,-0.00027978388958389724,0.0010906598218106728,-0.006449041421757758,-0.0004448977604082395,-0.0009353142623756294,-0.003658105950089501,-0.0003864790722445787,-0.0003954506867263266,-0.001895663302791548,-0.002147930502899461,0.00028434971182837027,-0.004615058815371946,-0.0035183818260279363,-0.0017686600605414213,-0.00407021243083413,-0.0033280104999751604,-0.008105438827340258,-0.002996502360291301,-0.004219805029658654,-0.0028883698356805157,-0.008676208780791188,-0.001611755743124881,0.0004833273178313094,-0.007035675581080715,-0.007242692296093562,-0.0016878306670863733,-0.002700288274155355,-0.0024957169104806143,-0.004867034171656184,-0.00536376576091798,-0.0008509241650419873,-0.0006459168410108114,-0.004476433112812969,-0.005101445252542945,-0.003913656860955831,-0.0016782169449893352,-0.004701013513742955,-0.003142951339245045,-0.004446720892179937,-0.004305929049429498,-0.003991131013367238
+52.366905,4.972004,0.00034816648666223613,-0.0016768785056312237,-0.0016700127785299408,-0.0003791231833100001,-0.0015611345500992386,-0.0005225350383452085,-0.00202499671514876,-0.002405558360369318,0.0023682681833389037,-0.0032283402120744696,-6.29614792395308e-05,-0.0005659911201517031,-0.001910738041471465,-0.0012361748864895595,-0.0003764003955090352,0.008182203243701277,-0.0006922388292433124,-0.00026341498926393353,0.00019106334588119548,2.0216110416102786e-05,0.0006906598218106728,-0.004449041421757757,0.0005551022395917605,-0.0011353142623756296,-0.003158105950089501,0.0003135209277554214,-0.00019545068672632664,0.0017043366972084523,-0.0031479305028994614,0.0007843497118283703,-0.0027150588153719464,-0.0046183818260279366,-0.0024686600605414214,-0.0035702124308341293,-0.0024280104999751606,-0.006105438827340258,-0.001996502360291301,-0.0025198050296586544,-0.0026883698356805156,-0.0058762087807911895,-0.001011755743124881,-0.0006166726821686906,-0.002035675581080715,-0.004842692296093563,-8.783066708637345e-05,-0.002000288274155355,-0.0022957169104806142,-0.004967034171656184,-0.00496376576091798,-0.00015092416504198744,-0.0003459168410108115,-0.0022764331128129695,-0.0034014452525429452,-0.0031136568609558307,-0.0014782169449893351,-0.003201013513742955,-0.003142951339245045,-0.002446720892179937,-0.0032059290494294984,-0.002591131013367238
+52.366764,4.971989,0.0005481664866622362,0.0014231214943687762,0.0011299872214700591,0.00272087681669,0.00033886544990076133,-0.0005225350383452085,-0.0032249967151487596,-0.0003055583603693182,0.005868268183338904,-0.0011283402120744696,-0.0030629614792395308,-0.0011659911201517032,-0.002810738041471465,0.0014638251135104404,-0.0002764003955090352,0.006182203243701277,-0.0020922388292433126,-0.0006634149892639335,-0.00020893665411880454,-0.002779783889583897,0.000990659821810673,-0.0038490414217577573,0.00845510223959176,-0.0018353142623756293,-0.0037581059500895013,-0.0009864790722445786,-0.0012954506867263265,0.001604336697208452,0.0003520694971005389,-0.0016156502881716297,-0.0012150588153719464,0.00038161817397206377,-0.0012686600605414213,-0.0017702124308341294,-0.0029280104999751602,-0.0036054388273402587,-0.0030965023602913012,-0.0010198050296586544,-0.0037883698356805154,-0.005976208780791189,-0.0008117557431248811,-0.0013166726821686905,-0.002735675581080715,-0.004342692296093562,-0.0018878306670863734,-0.0035002882741553554,-0.003995716910480614,-0.002767034171656184,-0.00586376576091798,-0.0005509241650419874,-0.002545916841010812,-0.0005764331128129694,9.85547474570543e-05,-0.001113656860955831,-0.0003782169449893352,-0.0031010135137429545,-0.0012429513392450452,-0.001946720892179937,-0.0026059290494294986,-0.00019113101336723807
+52.366458,4.971764,-0.002351833513337764,-0.0038768785056312234,-0.003470012778529941,-0.0003791231833100001,-0.0015611345500992386,-0.0029225350383452085,-0.00542499671514876,-0.002705558360369318,-0.0012317318166610962,-0.00392834021207447,-0.0020629614792395307,-0.002865991120151703,-0.0026107380414714648,-0.005836174886489559,-0.003376400395509035,0.0036822032437012764,-0.004792238829243313,-0.0033634149892639333,-0.0023089366541188044,-0.003779783889583897,-0.0001093401781893271,-0.003449041421757757,-0.0008448977604082397,-0.0020353142623756293,-0.005358105950089501,-0.0006864790722445786,-0.0032954506867263265,-0.0015956633027915477,-0.004247930502899461,-0.0006156502881716297,-0.005815058815371946,-0.005918381826027936,-0.0031686600605414215,-0.006770212430834129,-0.00552801049997516,-0.00790543882734026,-0.004796502360291301,-0.0057198050296586546,-0.004888369835680515,-0.00817620878079119,-0.0037117557431248813,-0.004216672682168691,-0.0076356755810807145,-0.006842692296093562,-0.0032878306670863734,-0.004700288274155355,-0.0032957169104806143,-0.005167034171656184,-0.00576376576091798,-0.0019509241650419876,-0.002545916841010812,-0.0033764331128129693,-0.004601445252542946,-0.005713656860955831,-0.002978216944989335,-0.0059010135137429545,-0.0043429513392450455,-0.003346720892179937,-0.0049059290494294985,-0.007091131013367238
+52.366337,4.971743,-0.0021518335133377635,-0.0036768785056312233,-0.003570012778529941,-0.0003791231833100001,-0.002761134550099239,-0.0021225350383452086,-0.00332499671514876,-0.001805558360369318,-0.0028317318166610965,-0.00012834021207446954,-0.001962961479239531,-0.001765991120151703,-0.003510738041471465,-0.00503617488648956,-0.001976400395509035,0.0043822032437012765,0.005007761170756688,-0.0028634149892639337,-0.0012089366541188046,-0.003079783889583897,-9.340178189327052e-06,-0.0036490414217577576,-0.0012448977604082394,-3.531426237562952e-05,-0.0044581059500895005,-0.0016864790722445787,-0.0035954506867263264,-9.566330279154789e-05,-0.0036479305028994614,-0.0008156502881716298,-0.0029150588153719465,-0.0065183818260279355,-0.0035686600605414217,-0.00537021243083413,-0.004528010499975161,-0.00900543882734026,-0.0037965023602913013,-0.004919805029658654,-0.0042883698356805154,-0.006976208780791188,-0.004111755743124881,-0.0019166726821686904,-0.006435675581080715,-0.005442692296093563,-0.003487830667086374,-0.0038002882741553553,-0.00019571691048061434,-0.003167034171656184,-0.005963765760917981,-0.002850924165041988,-0.0017459168410108113,-0.0014764331128129696,-0.0026014452525429457,-0.002013656860955831,-0.003278216944989335,-0.005301013513742955,-0.004542951339245045,-0.004246720892179937,-0.004505929049429498,-0.004891131013367239
+52.366278,4.971695,-0.004651833513337764,-0.0022768785056312235,-0.003570012778529941,-0.0003791231833100001,0.00023886544990076134,-0.0012225350383452086,-0.00612499671514876,-0.004605558360369318,0.0016682681833389038,-0.004028340212074469,-0.0020629614792395307,-0.001065991120151703,-0.0036107380414714648,-0.00573617488648956,-0.0009764003955090352,0.0034822032437012767,-0.004092238829243313,-0.0022634149892639334,-0.0004089366541188045,-0.002279783889583897,0.000990659821810673,-0.0052490414217577575,-0.0029448977604082396,-0.0018353142623756293,-0.005058105950089501,-0.0005864790722445784,-0.003495450686726327,-0.0022956633027915478,-0.004747930502899461,-0.0003156502881716298,-0.004515058815371946,-0.004718381826027936,-0.0032686600605414213,-0.005770212430834129,-0.01492801049997516,-0.01010543882734026,-0.003696502360291301,-0.0047198050296586545,-0.005388369835680516,-0.008576208780791189,-0.002511755743124881,-0.0034166726821686904,-0.009935675581080716,-0.009042692296093563,-0.0002878306670863733,-0.0038002882741553553,-0.0021957169104806144,-0.005467034171656184,-0.006563765760917981,-0.0037509241650419876,-0.002245916841010811,-0.005076433112812969,-0.004001445252542945,-0.006613656860955831,-0.0031782169449893352,-0.005701013513742955,-0.005742951339245046,-0.002846720892179937,-0.007705929049429499,-0.005291131013367238
+52.366205,4.971649,-0.0021518335133377635,-0.0023768785056312233,-0.003070012778529941,-0.00247912318331,-0.0013611345500992387,-0.0020225350383452083,-0.0028249967151487603,-0.0032055583603693184,0.00046826818333890394,-0.00262834021207447,-0.003462961479239531,-0.002565991120151703,-0.0026107380414714648,-0.00413617488648956,-0.0054764003955090354,0.0037822032437012766,-0.002892238829243312,-0.0014634149892639335,-0.0021089366541188043,-0.0018797838895838969,-0.000409340178189327,-0.003749041421757757,0.0009551022395917605,-0.0036353142623756296,-0.005658105950089501,-0.0027864790722445785,-0.0032954506867263265,-0.0008956633027915479,-0.002747930502899461,-0.0023156502881716296,-0.0033150588153719462,-0.005918381826027936,-0.003368660060541421,-0.004170212430834129,-0.00462801049997516,-0.006705438827340259,-0.006796502360291301,-0.004619805029658654,-0.004788369835680516,-0.007276208780791188,-0.0038117557431248806,-0.0029166726821686904,-0.007035675581080715,-0.0063426922960935625,-0.002887830667086373,-0.004700288274155355,-0.004495716910480614,-0.0039670341716561835,-0.00766376576091798,-0.004050924165041988,-0.0036459168410108113,-0.0010764331128129694,-0.004901445252542946,-0.003713656860955831,-0.0065782169449893355,-0.006401013513742955,-0.002842951339245045,-0.004846720892179937,-0.004405929049429498,-0.0038911310133672387
+52.366091,4.971586,-0.002351833513337764,-0.0024768785056312236,-0.003470012778529941,-0.0008791231833100003,-0.0042611345500992385,-0.0033225350383452087,-0.0035249967151487604,-0.004305558360369318,-0.004131731816661096,-0.0034283402120744693,-0.0030629614792395308,-0.001065991120151703,-0.0052107380414714655,-0.004536174886489559,-0.004076400395509035,0.0020822032437012765,-0.005892238829243312,-0.0030634149892639333,-0.0043089366541188045,-0.003679783889583897,-0.002009340178189327,-0.003449041421757757,-0.0004448977604082395,-0.0014353142623756295,-0.005058105950089501,-0.0023864790722445783,-0.004695450686726326,-0.003295663302791548,-0.0034479305028994613,-0.0017156502881716296,-0.0035150588153719463,-0.007918381826027936,-0.0029686600605414214,-0.00537021243083413,-0.0060280104999751605,-0.008305438827340259,-0.0064965023602913015,-0.005919805029658654,-0.006788369835680516,-0.009276208780791188,-0.003311755743124881,-0.006216672682168691,-0.0056356755810807145,-0.007142692296093562,-0.004187830667086374,-0.006500288274155355,-0.004995716910480614,-0.005967034171656184,-0.00976376576091798,-0.003850924165041988,-0.003245916841010812,-0.00407643311281297,-0.0045014452525429455,-0.006713656860955831,-0.005878216944989335,-0.006401013513742955,-0.004942951339245045,-0.005046720892179937,-0.004405929049429498,-0.0057911310133672384
+52.365999,4.971587,-0.0030518335133377632,-0.0029768785056312236,-0.005670012778529941,-0.0006791231833100002,-0.0019611345500992385,-0.0034225350383452085,-0.00642499671514876,-0.004805558360369318,-0.0018317318166610965,-0.00452834021207447,-0.002962961479239531,-0.005465991120151703,-0.0039107380414714656,-0.006436174886489559,-0.004876400395509036,0.0018822032437012764,-0.004292238829243312,-0.003963414989263933,-0.0040089366541188045,-0.0035797838895838974,-0.0007093401781893269,-0.006349041421757758,-0.0028448977604082393,-0.0024353142623756295,-0.005258105950089501,-0.0034864790722445786,-0.003795450686726327,-0.004095663302791547,-0.004547930502899461,-0.0022156502881716294,-0.004715058815371946,-0.008218381826027936,-0.005268660060541421,-0.009770212430834129,-0.0032280104999751606,-0.009405438827340257,-0.006396502360291301,-0.006419805029658654,-0.005788369835680516,-0.011576208780791188,-0.0038117557431248806,-0.00501667268216869,-0.0040356755810807155,-0.009342692296093563,-0.0022878306670863734,-0.004000288274155355,-0.006395716910480615,-0.008467034171656184,-0.00886376576091798,-0.0036509241650419873,-0.006145916841010812,-0.00497643311281297,-0.004401445252542945,-0.007313656860955831,-0.0075782169449893355,-0.0069010135137429545,-0.006542951339245045,-0.006846720892179937,-0.007505929049429498,-0.005191131013367239
+52.365769,4.971416,-0.003351833513337763,-0.008376878505631223,-0.002670012778529941,-0.0030791231833100004,-0.005861134550099239,-0.007322535038345209,-0.00412499671514876,-0.003705558360369318,-0.0006317318166610963,-0.0030283402120744696,-0.0011629614792395308,0.003034008879848297,0.00028926195852853483,0.00386382511351044,0.003323599604490965,0.009882203243701277,0.003107761170756687,0.004336585010736066,0.005991063345881195,0.007020216110416103,0.004990659821810673,-0.0020490414217577573,0.00545510223959176,0.0032646857376243707,-0.002458105950089501,-0.0012864790722445785,-0.0003954506867263266,-0.005295663302791548,-0.003847930502899461,-0.0049156502881716295,-0.005115058815371946,-0.009318381826027936,-0.004868660060541422,-0.00697021243083413,-0.01002801049997516,-0.007005438827340259,-0.004996502360291301,-0.005419805029658654,-0.005088369835680516,-0.005576208780791189,-0.005211755743124881,0.00018332731783130945,-0.004235675581080715,-0.004942692296093562,0.003812169332913626,0.0034997117258446448,0.0014042830895193857,-0.001967034171656184,-0.0018637657609179802,0.0009490758349580126,0.0014540831589891885,2.3566887187030693e-05,-0.005901445252542946,-0.0055136568609558305,-0.003578216944989335,-0.007001013513742955,-0.005742951339245046,-0.005746720892179937,-0.008005929049429499,-0.008891131013367238
+52.388543,4.968226,0.0007481664866622362,-0.0008768785056312235,-0.000670012778529941,0.0022208768166899996,0.0012388654499007612,0.0029774649616547914,-0.00142499671514876,0.0026944416396306814,0.003468268183338904,-0.00042834021207446957,0.0015370385207604692,0.003634008879848297,0.0012892619585285349,-0.0019361748864895594,0.0007235996044909648,-0.0003177967562987236,0.0013077611707566874,0.0016365850107360666,0.0010910633458811954,0.0034202161104161027,0.0034906598218106726,-0.0017490414217577574,0.0016551022395917604,0.0030646857376243706,-0.000958105950089501,0.0053135209277554215,0.0029045493132736733,0.0004043366972084521,0.0024520694971005385,0.0022843497118283703,0.0014849411846280536,-0.00041838182602793616,-0.0006686600605414213,2.97875691658705e-05,0.0036719895000248393,0.0007945611726597412,3.497639708699001e-06,-0.0006198050296586544,0.0015116301643194846,0.0011237912192088111,0.001688244256875119,0.0019833273178313095,-0.002135675581080715,-0.0015426922960935627,-0.0036878306670863736,0.001199711725844645,0.00020428308951938567,-0.000567034171656184,-0.0017637657609179801,0.002849075834958013,0.0022540831589891886,0.0015235668871870305,0.0008985547474570543,0.0002863431390441691,0.0007217830550106648,-0.0025010135137429547,-4.295133924504526e-05,-0.001546720892179937,0.0003940709505705015,0.010308868986632762
+52.388474,4.968273,4.816648666223621e-05,-0.0008768785056312235,-0.003270012778529941,-7.912318331000016e-05,-0.0018611345500992385,-0.00032253503834520845,-0.0032249967151487596,-5.558360369318171e-06,-0.005131731816661097,-0.00392834021207447,-0.0011629614792395308,0.000434008879848297,-0.0010107380414714651,-0.005836174886489559,-0.002876400395509035,-0.0032177967562987235,-0.0022922388292433123,-0.0010634149892639335,-0.0022089366541188046,0.0019202161104161027,0.0010906598218106728,-0.004649041421757758,-0.0011448977604082396,0.00016468573762437057,-0.003258105950089501,0.0025135209277554215,-0.0013954506867263267,-0.003295663302791548,-0.0006479305028994611,-0.00021565028817162974,-0.002615058815371946,-0.001618381826027936,-0.0026686600605414215,-0.0014702124308341295,-0.00522801049997516,-0.004005438827340259,-0.001996502360291301,-0.0028198050296586548,-0.0012883698356805154,-0.0035762087807911886,-0.0015117557431248811,-0.0012166726821686905,-0.0063356755810807155,-0.0033426922960935624,-0.005187830667086374,-0.0032002882741553555,0.0004042830895193857,-0.003167034171656184,-0.00436376576091798,-0.0007509241650419875,0.00045408315898918855,-0.0007764331128129695,-0.0014014452525429458,-0.006113656860955831,-0.0021782169449893352,-0.0020010135137429547,-0.002342951339245045,-0.001646720892179937,-0.004305929049429498,-0.0016911310133672379
+52.388382,4.968335,-0.0007518335133377639,-0.006876878505631224,-0.005570012778529941,-0.0030791231833100004,-0.002761134550099239,-0.0011225350383452085,-0.00672499671514876,-0.0036055583603693177,-0.004831731816661097,-0.00782834021207447,-0.0035629614792395308,-0.0033659911201517033,-0.004810738041471465,-0.0072361748864895594,-0.0054764003955090354,-0.007017796756298723,-0.005592238829243312,-0.0035634149892639338,-0.005408936654118805,-0.002979783889583897,-0.0025093401781893267,-0.006649041421757758,-0.003444897760408239,-0.003435314262375629,-0.007158105950089501,1.352092775542147e-05,-0.0031954506867263267,-0.005395663302791547,-0.0017479305028994612,-0.0033156502881716296,-0.005715058815371946,-0.004118381826027936,-0.0069686600605414215,-0.00607021243083413,-0.00732801049997516,-0.005105438827340259,-0.003696502360291301,-0.006119805029658654,-0.005088369835680516,-0.007376208780791189,-0.0017117557431248808,-0.003916672682168691,-0.011135675581080716,-0.006242692296093562,-0.011187830667086373,-0.004500288274155355,-0.0036957169104806144,-0.003167034171656184,-0.00906376576091798,-0.004050924165041988,-0.005445916841010812,-0.0021764331128129692,-0.0034014452525429452,-0.007513656860955831,-0.007678216944989336,-0.006301013513742955,-0.0053429513392450455,-0.005046720892179937,-0.004505929049429498,-0.004991131013367238
+52.388349,4.968408,0.008348166486662235,0.005723121494368776,0.005029987221470059,0.007120876816689999,0.007138865449900761,0.006777464961654792,0.00427500328485124,0.005494441639630682,0.004668268183338904,0.0027716597879255305,0.00523703852076047,0.007134008879848297,0.004189261958528535,0.0009638251135104404,0.002923599604490965,0.0026822032437012764,0.004007761170756688,0.005436585010736066,0.005491063345881195,0.005820216110416103,0.005590659821810673,0.0026509585782422424,0.003955102239591761,0.0053646857376243706,0.0027418940499104993,0.008813520927755421,0.0058045493132736735,0.005904336697208452,0.005052069497100539,0.00748434971182837,0.005084941184628054,0.0063816181739720645,0.0029313399394585785,0.00592978756916587,0.004671989500024839,0.0034945611726597417,0.005003497639708699,0.002780194970341345,0.0046116301643194845,0.0022237912192088114,0.006788244256875119,0.00488332731783131,-0.0036356755810807153,0.0015573077039064372,0.0015121693329136266,0.0040997117258446455,0.0042042830895193855,0.004132965828343816,0.0015362342390820198,0.005549075834958013,0.005654083158989188,0.0026235668871870304,0.005298554747457054,0.002186343139044169,0.003821783055010665,0.0024989864862570454,0.002757048660754955,0.0035532791078200627,0.005094070950570502,0.0064088689866327615
+52.388065,4.96863,-0.007651833513337764,-0.011576878505631223,-0.010370012778529942,-0.00697912318331,-0.008061134550099238,-0.007022535038345209,-0.009824996715148759,-0.00820555836036932,-0.008331731816661097,-0.01172834021207447,-0.008262961479239531,-0.006965991120151703,-0.009010738041471466,-0.01483617488648956,-0.010476400395509036,-0.011017796756298723,-0.010692238829243311,-0.009063414989263933,-0.008608936654118805,-0.007779783889583897,-0.008009340178189328,-0.014049041421757757,-0.00954489776040824,-0.007935314262375629,-0.0116581059500895,-0.0068864790722445775,-0.009795450686726326,-0.011895663302791548,-0.010347930502899462,-0.008715650288171629,-0.012615058815371945,-0.011418381826027935,-0.01216866006054142,-0.01087021243083413,-0.014528010499975161,-0.012205438827340258,-0.0114965023602913,-0.010819805029658656,-0.010988369835680516,-0.012376208780791188,-0.011011755743124881,-0.009916672682168691,-0.016035675581080714,-0.015242692296093562,-0.015287830667086373,-0.008500288274155355,-0.011495716910480614,-0.012967034171656185,-0.014863765760917979,-0.011950924165041987,-0.010945916841010811,-0.012276433112812969,-0.012101445252542945,-0.01451365686095583,-0.012078216944989334,-0.014201013513742955,-0.013742951339245045,-0.012246720892179937,-0.013005929049429498,-0.012591131013367238
+52.388041,4.968669,-0.004051833513337763,-0.005476878505631224,-0.005770012778529941,-0.00317912318331,-0.003461134550099239,-0.0032225350383452084,-0.00632499671514876,-0.003405558360369318,-0.005231731816661096,-0.00622834021207447,-0.00406296147923953,-0.002965991120151703,-0.004510738041471465,-0.00903617488648956,-0.005576400395509036,-0.007417796756298724,-0.005192238829243313,-0.005863414989263934,-0.0063089366541188045,-0.0055797838895838975,-0.0035093401781893267,-0.009949041421757758,-0.0047448977604082395,-0.0028353142623756293,-0.007158105950089501,-0.0008864790722445787,-0.005295450686726326,-0.008095663302791548,-0.006147930502899461,-0.0039156502881716295,-0.007715058815371946,-0.0069183818260279365,-0.008068660060541421,-0.006170212430834129,-0.00922801049997516,-0.00790543882734026,-0.0074965023602913015,-0.004119805029658655,-0.006888369835680515,-0.00847620878079119,-0.005211755743124881,-0.0061166726821686905,-0.011435675581080716,-0.009242692296093563,-0.009787830667086373,-0.005000288274155355,-0.006195716910480614,-0.007667034171656184,-0.01076376576091798,-0.006250924165041987,-0.006345916841010811,-0.00697643311281297,-0.007501445252542946,-0.009213656860955832,-0.006978216944989336,-0.008201013513742954,-0.00044295133924504527,-0.008046720892179938,-0.007405929049429498,-0.008191131013367239
+52.388047,4.968546,-5.1833513337763834e-05,-0.0018768785056312237,-0.002070012778529941,0.0013208768166899998,-0.0013611345500992387,-0.0020225350383452083,-0.00212499671514876,-5.558360369318171e-06,0.0009682681833389037,-0.0022283402120744696,0.0008370385207604693,0.003634008879848297,-0.00041073804147146516,-0.0006361748864895595,0.00022359960449096485,-0.0015177967562987236,0.0014077611707566876,0.0024365850107360663,0.0017910633458811955,0.0016202161104161028,0.002290659821810673,-0.004449041421757757,0.0014551022395917605,0.0021646857376243704,-0.002458105950089501,0.0038135209277554215,0.00010454931327367339,-0.0012956633027915478,-0.0011479305028994611,-0.0006156502881716297,-0.002115058815371946,-0.002718381826027936,-0.002868660060541421,-0.0010702124308341295,-0.00412801049997516,-0.0028054388273402583,-0.001596502360291301,-0.004819805029658654,-0.004788369835680516,-0.003676208780791189,-0.0009117557431248812,8.332731783130944e-05,-0.006835675581080714,-0.003942692296093562,-0.002787830667086374,0.001499711725844645,0.0014042830895193857,0.000332965828343816,-0.00406376576091798,-5.092416504198739e-05,0.0003540831589891885,-0.0006764331128129694,-0.0016014452525429455,-0.003813656860955831,-0.0003782169449893352,-0.003801013513742955,-0.002942951339245045,-0.003646720892179937,-0.004805929049429498,-0.0028911310133672386
+52.38808,4.968288,0.0005481664866622362,-0.0011768785056312236,-0.001470012778529941,0.0012208768166899998,0.00033886544990076133,0.0006774649616547915,-2.4996715148759984e-05,9.444163963068177e-05,0.0012682681833389039,-0.0021283402120744694,-0.0009629614792395309,0.000634008879848297,-0.0011107380414714652,-0.0018361748864895596,-0.002076400395509035,-0.0035177967562987234,-0.0018922388292433126,-0.0007634149892639335,-0.0017089366541188046,0.0004202161104161028,0.0007906598218106729,-0.0027490414217577574,0.0010551022395917605,0.0005646857376243705,-0.001458105950089501,0.0040135209277554216,0.0010045493132736735,0.0012043366972084523,0.002552069497100539,0.0015843497118283702,-1.5058815371946316e-05,0.0005816181739720639,0.0009313399394585786,0.0014297875691658705,-0.00032801049997516045,0.0005945611726597415,0.00020349763970869896,-0.00021980502965865438,0.00021163016431948443,-0.0001762087807911886,0.001188244256875119,0.0007833273178313093,-0.003135675581080715,-0.0012426922960935625,-0.0032878306670863734,-2.882741553550828e-07,0.0004042830895193857,0.0005329658283438161,-0.00356376576091798,0.0005490758349580126,0.0012540831589891886,0.0026235668871870304,0.0013985547474570544,-0.001113656860955831,0.0009217830550106648,-0.00020101351374295459,0.00045704866075495476,0.0009532791078200628,0.0003940709505705015,0.001708868986632762
+52.387901,4.96867,-0.0014518335133377636,-0.004976878505631224,-0.004870012778529941,-0.0026791231833100003,-0.002061134550099239,-0.0024225350383452085,-0.00452499671514876,-0.004605558360369318,-0.002931731816661096,-0.0071283402120744695,-0.00666296147923953,-0.008565991120151703,-0.005510738041471465,-0.01053617488648956,-0.008276400395509035,-0.009317796756298723,-0.011192238829243311,-0.010263414989263933,-0.012108936654118805,-0.012079783889583898,-0.010509340178189329,-0.009949041421757758,-0.008044897760408239,-0.0039353142623756296,-0.007158105950089501,-0.0026864790722445782,-0.006995450686726326,-0.0064956633027915475,-0.005647930502899461,-0.005515650288171629,-0.008215058815371946,-0.004418381826027936,-0.00836866006054142,-0.00817021243083413,-0.01002801049997516,-0.007305438827340259,-0.006196502360291302,-0.008319805029658655,-0.008788369835680515,-0.009176208780791189,-0.006011755743124882,-0.009016672682168691,-0.011735675581080716,-0.010542692296093562,-0.01938783066708637,-0.012700288274155355,-0.013295716910480614,-0.008467034171656184,-0.01236376576091798,-0.009550924165041988,-0.006445916841010812,-0.00637643311281297,-0.004201445252542946,-0.00821365686095583,-0.005878216944989335,-0.007801013513742954,-0.009042951339245044,-0.005746720892179937,-0.007305929049429498,-0.008591131013367238
+52.387825,4.968734,-0.0035518335133377637,-0.006976878505631224,-0.00857001277852994,-0.0030791231833100004,-0.0028611345500992383,-0.0021225350383452086,-0.00552499671514876,-0.004805558360369318,-0.004831731816661097,-0.007028340212074469,-0.005162961479239531,-0.005765991120151703,-0.0065107380414714654,-0.01213617488648956,-0.009076400395509035,-0.009317796756298723,-0.008492238829243312,-0.007463414989263934,-0.009408936654118806,-0.009079783889583897,-0.006109340178189327,-0.009049041421757758,-0.00934489776040824,-0.007635314262375629,-0.007158105950089501,-0.0016864790722445787,-0.005695450686726326,-0.005195663302791548,-0.004747930502899461,-0.00431565028817163,-0.008515058815371946,-0.005418381826027937,-0.00816866006054142,-0.00827021243083413,-0.014228010499975161,-0.009705438827340259,-0.0078965023602913,-0.008519805029658656,-0.008188369835680515,-0.011276208780791188,-0.007011755743124882,-0.009216672682168692,-0.012835675581080716,-0.009642692296093562,-0.014387830667086373,-0.011900288274155355,-0.010895716910480614,-0.011867034171656184,-0.01306376576091798,-0.008950924165041988,-0.008145916841010811,-0.010276433112812969,-0.011101445252542946,-0.01421365686095583,-0.008578216944989335,-0.006401013513742955,-0.011442951339245045,-0.0069467208921799375,-0.009605929049429498,-0.009391131013367238
+52.387624,4.968911,-0.0041518335133377635,-0.006576878505631224,-0.008670012778529941,-0.00447912318331,-0.004461134550099239,-0.005822535038345208,-0.00632499671514876,-0.004205558360369318,-0.005231731816661096,-0.00872834021207447,-0.006462961479239531,-0.006865991120151704,-0.005810738041471465,-0.01143617488648956,-0.008876400395509035,-0.007417796756298724,-0.009392238829243312,-0.009463414989263933,-0.011008936654118805,-0.007879783889583897,-0.008209340178189329,-0.009649041421757758,-0.007244897760408238,-0.008235314262375629,-0.008258105950089502,-0.0028864790722445788,-0.0073954506867263264,-0.007795663302791548,-0.006147930502899461,-0.00561565028817163,-0.008515058815371946,-0.007318381826027936,-0.00836866006054142,-0.00887021243083413,-0.010828010499975161,-0.007305438827340259,-0.008296502360291301,-0.009519805029658655,-0.008588369835680516,-0.008976208780791188,-0.007411755743124881,-0.008716672682168691,-0.012335675581080716,-0.009942692296093562,-0.012487830667086374,-0.012400288274155355,-0.011195716910480614,-0.009167034171656183,-0.01196376576091798,-0.007950924165041987,-0.008645916841010811,-0.007476433112812968,-0.007601445252542945,-0.00911365686095583,-0.009678216944989335,-0.010501013513742954,-0.008542951339245045,-0.008746720892179937,-0.007905929049429498,-0.011891131013367239
+52.387582,4.968927,-0.005251833513337764,-0.006776878505631224,-0.00877001277852994,-0.00517912318331,-0.006161134550099239,-0.0029225350383452085,-0.00912499671514876,-0.005905558360369318,-0.005931731816661097,-0.009528340212074469,-0.007862961479239532,-0.005965991120151703,-0.008010738041471465,-0.01243617488648956,-0.010776400395509035,-0.008717796756298723,-0.009092238829243312,-0.008563414989263933,-0.008608936654118805,-0.006879783889583897,-0.0071093401781893275,-0.010249041421757758,-0.006644897760408238,-0.0065353142623756294,-0.0102581059500895,-0.005486479072244579,-0.007895450686726327,-0.011795663302791548,-0.007647930502899461,-0.00651565028817163,-0.008215058815371946,-0.009218381826027936,-0.01106866006054142,-0.00947021243083413,-0.011628010499975161,-0.010305438827340259,-0.0100965023602913,-0.012919805029658655,-0.010388369835680516,-0.010576208780791189,-0.010711755743124881,-0.009516672682168692,-0.015335675581080715,-0.013542692296093563,-0.015287830667086373,-0.010700288274155355,-0.012695716910480614,-0.010467034171656184,-0.014463765760917981,-0.009650924165041987,-0.010445916841010811,-0.011776433112812968,-0.013101445252542945,-0.01341365686095583,-0.011678216944989335,-0.015301013513742953,-0.014342951339245045,-0.012546720892179937,-0.0181059290494295,-0.012591131013367238
+52.38743,4.969067,0.004848166486662236,0.0030231214943687765,0.001729987221470059,0.00432087681669,0.0037388654499007617,0.0036774649616547915,0.0026750032848512403,0.003294441639630682,0.003968268183338904,0.0028716597879255307,0.00393703852076047,0.004734008879848297,0.002989261958528535,6.38251135104404e-05,0.0012235996044909648,0.0013822032437012764,0.0030077611707566877,0.003336585010736066,0.0031910633458811957,0.0043202161104161025,0.005590659821810673,-0.0007490414217577575,0.00415510223959176,0.0035646857376243706,0.0009418940499104991,0.006613520927755421,0.0028045493132736734,0.003204336697208452,0.003652069497100539,0.00338434971182837,0.0018849411846280535,0.002481618173972064,0.0009313399394585786,0.00032978756916587047,-0.0017280104999751603,0.0016945611726597413,3.497639708699001e-06,-0.00021980502965865438,0.0007116301643194844,0.0009237912192088115,0.0017882442568751189,0.0007833273178313093,-0.0017356755810807151,0.002357307703906438,-0.0014878306670863732,0.0007997117258446448,0.0009042830895193856,0.001532965828343816,-0.00336376576091798,0.0037490758349580126,0.0015540831589891885,0.00012356688718703052,0.0005985547474570543,-0.0003136568609558309,-0.0016782169449893352,-0.0033010135137429546,-0.00014295133924504527,-0.0018467208921799372,0.0006940709505705015,-0.002291131013367238
+52.387394,4.969095,0.0037481664866622364,0.0010231214943687765,0.001329987221470059,0.00152087681669,0.0027388654499007617,0.0017774649616547915,-0.00012499671514876003,0.0029944416396306813,0.005068268183338904,0.0033716597879255303,0.0018370385207604693,0.002834008879848297,0.0017892619585285349,0.0007638251135104403,0.0005235996044909648,0.0005822032437012765,0.0006077611707566875,0.0007365850107360664,0.0006910633458811954,0.0021202161104161028,0.0033906598218106728,-0.0008490414217577574,0.00565510223959176,0.0021646857376243704,-0.00015810595008950096,0.005513520927755422,-9.545068672632659e-05,0.0010043366972084522,0.003652069497100539,0.0013843497118283703,0.0011849411846280536,-0.00021838182602793607,-0.0009686600605414215,-0.0013702124308341294,-0.00222801049997516,-0.00040543882734025874,-0.001396502360291301,-0.0013198050296586543,-0.0023883698356805157,0.0005237912192088113,-0.0003117557431248811,-0.0020166726821686906,-0.002535675581080715,0.002057307703906437,-0.003487830667086374,-0.0009002882741553551,0.0005042830895193856,0.000732965828343816,-0.00436376576091798,0.0003490758349580126,-0.0009459168410108113,-0.0006764331128129694,-0.0006014452525429457,-0.0010136568609558309,-0.001778216944989335,-0.0020010135137429547,-0.0015429513392450453,-0.0035467208921799373,-0.0005059290494294985,-0.0012911310133672381
+52.387375,4.969185,0.0011481664866622363,0.0016231214943687763,-0.0008700127785299409,0.0013208768166899998,0.0027388654499007617,0.0022774649616547917,0.0004750032848512399,0.0018944416396306817,-0.00043173181666109626,-2.8340212074469493e-05,0.002537038520760469,0.0034340088798482968,0.0018892619585285347,-0.0046361748864895596,0.0015235996044909647,0.0007822032437012764,0.002407761170756688,0.002636585010736067,0.0028910633458811954,0.004420216110416103,0.002990659821810673,-0.003449041421757757,0.0007551022395917604,0.0030646857376243706,-0.00015810595008950096,0.006013520927755421,0.0020045493132736735,-0.001695663302791548,-0.0009479305028994612,0.0011843497118283702,-0.0025150588153719463,-0.001918381826027936,-0.0026686600605414215,-0.0034702124308341295,-0.0019280104999751604,-0.0036054388273402587,-0.000496502360291301,-0.002919805029658654,-0.0015883698356805155,-0.0013762087807911887,8.824425687511896e-05,8.332731783130944e-05,-0.006135675581080715,-0.005142692296093563,-0.0023878306670863736,-0.0006002882741553551,0.0013042830895193857,-0.000367034171656184,-0.00226376576091798,4.9075834958012656e-05,-0.0005459168410108114,-0.0027764331128129695,-0.0045014452525429455,-0.001713656860955831,0.00032178305501066477,-0.004601013513742955,-0.003942951339245045,-0.003746720892179937,-0.005305929049429498,-0.0037911310133672384
+52.387328,4.969222,0.003648166486662236,-0.0005768785056312236,0.001329987221470059,0.00422087681669,0.003538865449900761,0.0036774649616547915,0.00117500328485124,0.003294441639630682,0.002468268183338904,0.0002716597879255304,0.003137038520760469,0.004434008879848296,0.002989261958528535,0.0017638251135104403,0.0009235996044909649,0.0030822032437012765,0.002807761170756687,0.003636585010736066,0.0029910633458811956,0.004820216110416103,0.005390659821810673,0.0007509585782422424,0.004655102239591761,0.005164685737624371,0.0008418940499104988,0.006013520927755421,0.0020045493132736735,0.0010043366972084522,0.0017520694971005389,0.00238434971182837,-0.00011505881537194632,0.0001816181739720639,0.00043133993945857857,0.0002297875691658705,-0.0008280104999751603,-5.438827340258556e-06,-0.000296502360291301,-0.0007198050296586544,-8.83698356805156e-05,0.0006237912192088111,0.001688244256875119,0.0019833273178313095,-0.0043356755810807154,-0.0005426922960935625,-0.0011878306670863733,0.0006997117258446448,0.0016042830895193858,0.000832965828343816,-0.0015637657609179803,0.0036490758349580123,0.0010540831589891885,0.0012235668871870306,0.0011985547474570543,-0.0010136568609558309,0.0012217830550106646,-0.002201013513742955,-0.0009429513392450453,-0.0005467208921799372,-0.0017059290494294986,-0.0009911310133672382
+52.387247,4.969234,-0.0037518335133377633,-0.006376878505631224,-0.00797001277852994,-0.0037791231833100005,-0.004661134550099239,-0.0030225350383452083,-0.005924996715148761,-0.004405558360369318,-0.004731731816661096,-0.0071283402120744695,-0.00496296147923953,-0.004965991120151703,-0.006010738041471465,-0.01023617488648956,-0.006876400395509036,-0.007817796756298723,-0.007192238829243313,-0.005263414989263934,-0.006908936654118805,-0.004379783889583897,-0.0025093401781893267,-0.008249041421757758,-0.00304489776040824,-0.004135314262375629,-0.0073581059500895,-0.0030864790722445784,-0.004595450686726326,-0.005995663302791548,-0.008347930502899462,-0.0033156502881716296,-0.006415058815371946,-0.0042183818260279355,-0.004368660060541422,-0.005570212430834129,-0.006528010499975161,-0.006405438827340258,-0.006396502360291301,-0.006919805029658654,-0.005388369835680516,-0.006776208780791189,-0.003211755743124881,-0.0054166726821686904,-0.011335675581080715,-0.007242692296093562,-0.007987830667086374,-0.006500288274155355,-0.005595716910480614,-0.006467034171656184,-0.00866376576091798,-0.004150924165041987,-0.004445916841010812,-0.00517643311281297,-0.004601445252542946,-0.007813656860955831,-0.003278216944989335,-0.0072010135137429545,-0.0053429513392450455,-0.005446720892179937,-0.004805929049429498,-0.006291131013367238
+52.387135,4.969307,0.001248166486662236,-0.00037687850563122356,-0.001170012778529941,0.0011208768166899997,0.0007388654499007613,0.0006774649616547915,-0.00132499671514876,0.0022944416396306817,0.002268268183338904,-0.0018283402120744694,0.0012370385207604692,0.001734008879848297,0.00018926195852853487,-0.0032361748864895594,-0.0008764003955090352,-0.0012177967562987235,-0.0012922388292433125,0.0005365850107360666,-0.0014089366541188047,0.002020216110416103,0.002290659821810673,-0.003449041421757757,0.0028551022395917605,0.0027646857376243707,-0.001658105950089501,0.005513520927755422,0.0020045493132736735,0.0007043366972084521,0.0029520694971005386,0.0018843497118283703,0.0005849411846280537,0.0004816181739720638,0.0007313399394585785,0.00032978756916587047,-0.0015280104999751605,-0.00040543882734025874,0.00020349763970869896,-0.00021980502965865438,0.0007116301643194844,-0.0007762087807911887,0.001988244256875119,0.0010833273178313095,-0.004235675581080715,5.730770390643741e-05,-0.0014878306670863732,-0.00010028827415535513,0.0015042830895193858,3.29658283438161e-05,-0.0012637657609179801,0.0018490758349580124,0.0021540831589891883,0.0013235668871870306,0.0004985547474570544,-0.0009136568609558309,0.0013217830550106648,-0.0003010135137429545,0.0008570486607549547,0.0011532791078200629,0.0015940709505705014,0.0016088689866327619
+52.387088,4.96935,4.816648666223621e-05,-0.0037768785056312235,-0.004970012778529941,0.0006208768166899998,0.0024388654499007613,0.0018774649616547915,-0.00372499671514876,-0.0003055583603693182,-0.002331731816661096,-0.0058283402120744695,-0.002462961479239531,-0.004865991120151703,-0.004110738041471465,-0.010036174886489559,-0.008676400395509036,-0.007917796756298723,-0.008892238829243311,-0.007163414989263934,-0.011608936654118805,-0.007579783889583897,-0.004409340178189327,-0.007749041421757758,-0.00494489776040824,-0.00563531426237563,-0.007258105950089501,0.0008135209277554214,-0.0028954506867263268,-0.003895663302791548,-0.002247930502899461,0.0014843497118283702,-0.004515058815371946,0.0017816181739720638,-0.0014686600605414214,-0.0034702124308341295,-0.0019280104999751604,-0.0035054388273402584,-0.001696502360291301,-0.0026198050296586542,-0.0029883698356805155,-0.006976208780791188,-0.001611755743124881,-0.006516672682168691,-0.010035675581080716,-0.0073426922960935625,-0.011087830667086374,-0.012300288274155354,-0.008495716910480615,-0.007467034171656184,-0.008763765760917981,-0.006050924165041988,-0.004545916841010812,-0.00497643311281297,-0.0039014452525429457,-0.006613656860955831,-0.004678216944989336,-0.007501013513742954,-0.005042951339245046,-0.002146720892179937,-0.0023059290494294987,-0.0034911310133672385
+52.38709,4.969043,0.0009481664866622362,-0.0019768785056312236,-0.003070012778529941,0.0008208768166899998,0.00033886544990076133,0.00047746496165479153,-0.00142499671514876,0.0009944416396306817,0.0005682681833389038,-0.0018283402120744694,-6.29614792395308e-05,0.001834008879848297,-0.00011073804147146515,-0.0005361748864895594,-0.0012764003955090353,-0.0004177967562987235,0.0009077611707566876,0.0010365850107360666,0.00029106334588119547,0.003020216110416103,0.0028906598218106727,-0.0018490414217577575,0.0051551022395917604,0.0020646857376243706,-0.0018581059500895009,0.0036135209277554214,0.0006045493132736734,-0.0002956633027915479,0.0017520694971005389,0.0016843497118283703,0.002984941184628054,0.0001816181739720639,0.0005313399394585786,-0.0014702124308341295,0.0011719895000248395,0.0005945611726597415,-0.000896502360291301,-0.0015198050296586544,-0.00018836983568051554,0.0013237912192088112,0.0008882442568751189,0.0014833273178313094,0.0011643244189192851,0.0014573077039064374,-0.004287830667086373,9.971172584464496e-05,0.0005042830895193856,-0.0013670341716561839,-0.0029637657609179802,0.0017490758349580126,-4.591684101081135e-05,0.0026235668871870304,0.004298554747457054,0.004086343139044169,0.0014217830550106647,-0.00040101351374295457,0.002157048660754955,5.3279107820062804e-05,0.0019940709505705013,0.0007088689866327619
+52.386986,4.969389,0.0008481664866622363,-0.0030768785056312234,0.001329987221470059,0.0016208768166899997,0.002538865449900761,0.0024774649616547914,-0.00252499671514876,0.0014944416396306818,-0.0006317318166610963,-0.00492834021207447,-0.0005629614792395308,-0.004765991120151703,-0.003510738041471465,-0.00883617488648956,-0.007976400395509035,-0.008217796756298723,-0.006192238829243313,-0.007263414989263934,-0.009208936654118805,-0.006479783889583897,-0.005709340178189327,-0.005149041421757757,-0.0029448977604082396,-0.0038353142623756293,-0.006658105950089501,0.00041352092775542144,-0.0029954506867263266,-0.002995663302791548,-0.0032479305028994612,0.00028434971182837027,-0.005315058815371946,-0.0013183818260279361,-0.0035686600605414217,-0.004170212430834129,-0.00532801049997516,-0.004805438827340259,-0.0041965023602913015,-0.003519805029658654,-0.0025883698356805153,-0.006976208780791188,-0.002811755743124881,-0.0035166726821686907,-0.008435675581080715,-0.0033426922960935624,-0.010287830667086374,-0.010400288274155355,-0.006895716910480614,-0.006467034171656184,-0.008763765760917981,-0.006050924165041988,-0.005245916841010812,-0.00547643311281297,-0.003001445252542946,-0.007513656860955831,-0.005878216944989335,-0.004001013513742955,-0.00024295133924504526,-0.003146720892179937,-0.00040592904942949844,-0.003591131013367238
+52.386932,4.969517,0.0011481664866622363,-0.004876878505631224,0.0006299872214700591,0.00352087681669,0.0026388654499007614,0.0036774649616547915,-0.0010249967151487601,0.0024944416396306818,0.002768268183338904,-0.0022283402120744696,0.002237038520760469,0.003634008879848297,0.002189261958528535,-0.0036361748864895595,0.0012235996044909648,-0.0006177967562987236,0.0014077611707566876,0.0009365850107360665,0.0016910633458811952,0.003020216110416103,0.002590659821810673,-0.0039490414217577575,0.00015510223959176034,0.0030646857376243706,-0.0018581059500895009,0.004513520927755421,0.0014045493132736734,-0.003795663302791548,-0.0011479305028994611,0.0026843497118283705,-0.0010150588153719463,0.0009816181739720638,-0.0006686600605414213,-0.0014702124308341295,-0.0024280104999751606,0.00019456117265974132,0.000303497639708699,-0.0010198050296586544,0.0006116301643194844,-0.0009762087807911887,0.0002882442568751189,0.0021833273178313095,-0.005135675581080715,-0.0008426922960935626,-0.0025878306670863733,-0.00010028827415535513,0.0004042830895193857,-0.0020670341716561838,-0.00286376576091798,-5.092416504198739e-05,5.408315898918848e-05,-0.0011764331128129692,-0.0013014452525429456,-0.004113656860955831,-0.0009782169449893351,-0.003401013513742955,-0.002042951339245045,-4.67208921799372e-05,0.0018940709505705013,0.0004088689866327619
+52.386851,4.969537,0.0009481664866622362,-0.0009768785056312236,-0.003970012778529941,-0.0001791231833100002,0.0017388654499007612,0.00047746496165479153,-0.0035249967151487604,-0.0007055583603693182,-0.0024317318166610963,-0.00492834021207447,-0.003862961479239531,-0.004565991120151703,-0.004610738041471466,-0.00953617488648956,-0.008076400395509036,-0.008717796756298723,-0.0066922388292433126,-0.005963414989263934,-0.005808936654118805,-0.005779783889583897,-0.005409340178189327,-0.009949041421757758,-0.00754489776040824,-0.0042353142623756295,-0.009158105950089502,-0.0009864790722445786,-0.0047954506867263266,-0.009395663302791547,-0.0014479305028994613,-0.0017156502881716296,-0.004015058815371946,-0.0006183818260279361,-0.0024686600605414214,-0.00407021243083413,-0.00522801049997516,-0.004005438827340259,-0.004396502360291301,-0.0025198050296586544,-0.005388369835680516,-0.0041762087807911885,-0.005211755743124881,-0.005916672682168691,-0.009135675581080716,-0.004242692296093562,-0.010987830667086375,-0.010100288274155355,-0.006995716910480614,-0.008267034171656184,-0.00996376576091798,-0.006950924165041988,-0.007545916841010811,-0.006776433112812969,-0.004301445252542946,-0.007013656860955831,-0.006478216944989335,-0.0049010135137429545,-0.007842951339245044,-0.005146720892179937,-0.0031059290494294986,-0.004991131013367238
+52.386813,4.969547,-5.1833513337763834e-05,-0.0022768785056312235,-0.003070012778529941,0.00022087681668999976,-0.0006611345500992386,-0.0004225350383452085,-0.00252499671514876,-0.00040555836036931824,-0.00043173181666109626,-0.0037283402120744692,-0.002762961479239531,-0.004365991120151703,-0.003310738041471465,0.003463825113510441,-0.006776400395509035,0.011082203243701277,-0.004092238829243313,-0.004263414989263934,-0.005708936654118805,-0.004679783889583897,-0.004209340178189327,0.007850958578242242,-0.005044897760408239,-0.00463531426237563,-0.008958105950089501,-0.0010864790722445784,-0.0032954506867263265,-0.004995663302791548,-0.00624793050289946,-0.0018156502881716298,-0.005115058815371946,-0.002718381826027936,-0.0046686600605414215,-0.00737021243083413,-0.0034280104999751602,-0.004805438827340259,-0.004296502360291301,-0.0057198050296586546,-0.006788369835680516,-0.004576208780791189,-0.002911755743124881,-0.00461667268216869,-0.009035675581080715,-0.007142692296093562,-0.008487830667086374,-0.007500288274155355,-0.006595716910480614,-0.004467034171656184,-0.00836376576091798,-0.005150924165041988,-0.006445916841010812,-0.0034764331128129696,-0.0025014452525429455,-0.006113656860955831,-0.002878216944989335,-0.003701013513742955,-0.004542951339245045,-0.0005467208921799372,0.0004940709505705014,-0.004391131013367238
+52.386801,4.969592,0.0015481664866622362,-0.0010768785056312236,-0.002270012778529941,0.0013208768166899998,0.0009388654499007613,0.0020774649616547916,-0.0016249967151487602,0.0009944416396306817,6.826818333890376e-05,-0.0038283402120744695,-6.29614792395308e-05,-0.0006659911201517029,-0.0015107380414714651,-0.00773617488648956,-0.003176400395509035,-0.005317796756298723,-0.0011922388292433125,-0.0008634149892639334,-0.0027089366541188046,-0.001979783889583897,-0.0006093401781893271,-0.004049041421757758,-0.003944897760408239,-0.0012353142623756294,-0.002358105950089501,0.0020135209277554215,-0.0013954506867263267,-0.001895663302791548,0.0006520694971005389,0.0011843497118283702,-0.0035150588153719463,-0.001218381826027936,-0.0015686600605414212,-0.0016702124308341294,-0.0038280104999751604,-0.0026054388273402587,-0.0020965023602913012,-0.0023198050296586543,-0.0006883698356805155,-0.004976208780791189,-0.002511755743124881,-0.0008166726821686905,-0.009035675581080715,-0.004842692296093563,-0.006887830667086373,-0.006400288274155355,-0.002595716910480614,-0.005567034171656183,-0.00716376576091798,-0.0018509241650419873,-0.0030459168410108114,2.3566887187030693e-05,0.0002985547474570543,-0.0045136568609558305,-0.001978216944989335,-0.004401013513742955,-0.002142951339245045,-0.0012467208921799371,-0.00040592904942949844,-0.000891131013367238
+52.38675,4.969592,0.0002481664866622363,-0.0010768785056312236,-0.004570012778529941,-0.0016791231833100002,0.0017388654499007612,-0.0006225350383452085,-0.00232499671514876,-0.0009055583603693183,0.0003682681833389037,-0.008628340212074469,-0.007462961479239531,-0.007665991120151702,-0.005810738041471465,-0.008636174886489559,-0.012676400395509036,-0.0042177967562987235,-0.002892238829243312,-0.005063414989263933,-0.009108936654118804,-0.004779783889583897,-0.004909340178189327,0.008050958578242243,-0.00444489776040824,-0.005735314262375629,-0.011458105950089502,-0.0031864790722445787,-0.0070954506867263265,-0.0006956633027915479,-0.007047930502899461,-0.0029156502881716295,-0.009415058815371946,-0.006718381826027936,-0.0056686600605414215,-0.00607021243083413,-0.00692801049997516,-0.006705438827340259,-0.006196502360291302,-0.007319805029658654,-0.005388369835680516,-0.007676208780791189,-0.004911755743124881,-0.006516672682168691,-0.011935675581080716,-0.005142692296093563,-0.011087830667086374,-0.009400288274155354,-0.0056957169104806145,-0.006967034171656184,-0.01136376576091798,-0.006750924165041987,-0.006945916841010811,-0.009676433112812969,-0.009001445252542945,-0.004113656860955831,-0.005178216944989335,-0.005401013513742955,-0.004142951339245046,-0.0039467208921799375,-0.0023059290494294987,-0.004691131013367238
+52.386723,4.969656,0.0006481664866622362,-7.687850563122355e-05,-0.0007700127785299409,0.0007208768166899999,0.0010388654499007613,0.0013774649616547915,-0.00202499671514876,0.0004944416396306817,0.006368268183338904,0.0009716597879255303,0.0008370385207604693,0.000334008879848297,-1.0738041471465142e-05,-0.0031361748864895595,-0.0010764003955090352,-0.0028177967562987233,-0.0006922388292433124,-0.0008634149892639334,-0.0012089366541188046,0.0004202161104161028,0.0008906598218106728,-0.0016490414217577574,0.0027551022395917607,0.00046468573762437055,-0.002058105950089501,0.0036135209277554214,0.0004045493132736734,-0.0007956633027915479,0.0008520694971005388,0.0007843497118283703,-0.0007150588153719464,-0.00021838182602793607,-0.0012686600605414213,-0.0011702124308341293,-0.0027280104999751606,-0.0025054388273402584,-0.0012965023602913009,-0.0028198050296586548,-0.0009883698356805155,-0.002176208780791189,-0.0008117557431248811,-0.0004166726821686905,-0.0056356755810807145,-0.0021426922960935627,-0.0035878306670863733,-0.0018002882741553553,-0.0029957169104806143,-0.002767034171656184,-0.0038637657609179804,-0.00045092416504198735,-0.0014459168410108113,-0.0022764331128129695,0.0008985547474570543,-0.00041365686095583097,-0.0008782169449893352,-0.0028010135137429546,-0.0008429513392450453,-0.0005467208921799372,0.0008940709505705015,-9.113101336723803e-05
+52.386674,4.969668,-0.0002518335133377637,-0.0024768785056312236,-0.005070012778529941,-0.00027912318331000025,-0.0006611345500992386,-0.0009225350383452085,-0.00412499671514876,-0.0014055583603693183,-0.0011317318166610964,-0.00492834021207447,-0.0020629614792395307,-0.002765991120151703,-0.003410738041471465,-0.00703617488648956,-0.004776400395509035,-0.007617796756298723,-0.006792238829243313,-0.0047634149892639335,-0.006408936654118805,-0.004679783889583897,-0.0025093401781893267,-0.006649041421757758,-0.003944897760408239,-0.0027353142623756294,-0.0060581059500895,1.352092775542147e-05,-0.0022954506867263265,-0.003595663302791548,-0.004047930502899461,-0.0023156502881716296,-0.005515058815371946,-0.002718381826027936,-0.004568660060541422,-0.00467021243083413,-0.00782801049997516,-0.005905438827340259,-0.004096502360291301,-0.005119805029658654,-0.004688369835680516,-0.006176208780791189,-0.002411755743124881,-0.00461667268216869,-0.010135675581080715,-0.004242692296093562,-0.008687830667086373,-0.006000288274155355,-0.004195716910480614,-0.006067034171656184,-0.00866376576091798,-0.004650924165041988,-0.005945916841010812,-0.004776433112812969,-0.006001445252542945,-0.006413656860955831,-0.005178216944989335,-0.006301013513742955,-0.004542951339245045,-0.004046720892179937,-0.0035059290494294988,-0.005391131013367238
+52.386556,4.969755,0.00034816648666223613,-0.0019768785056312236,-0.0029700127785299408,-0.00077912318331,0.0004388654499007613,-2.253503834520848e-05,-0.00482499671514876,0.0003944416396306818,0.00026826818333890385,-0.0019283402120744697,-0.0020629614792395307,-0.003265991120151703,-0.003210738041471465,-0.00703617488648956,-0.003476400395509035,-0.0052177967562987235,-0.0037922388292433128,-0.002963414989263933,-0.0024089366541188042,-0.003379783889583897,-0.0022093401781893268,-0.004449041421757757,-0.00014489776040823958,-0.0002353142623756295,-0.003258105950089501,0.0019135209277554215,-0.0016954506867263267,-9.566330279154789e-05,-0.0014479305028994613,0.0010843497118283702,-0.002615058815371946,-0.001918381826027936,-0.003968660060541421,-0.006870212430834129,-0.004528010499975161,-0.0023054388273402587,-0.0035965023602913013,-0.004919805029658654,-0.0038883698356805157,-0.003976208780791189,-0.001611755743124881,-0.0028166726821686906,-0.009935675581080716,-0.005642692296093562,-0.007787830667086373,-0.005400288274155355,-0.003995716910480614,-0.006567034171656183,-0.00846376576091798,-0.002850924165041988,-0.0057459168410108116,-0.004276433112812969,-0.0021014452525429453,-0.005213656860955831,-0.004078216944989336,-0.0035010135137429547,-0.0014429513392450453,-0.002646720892179937,-0.0027059290494294984,-0.0054911310133672385
+52.38647,4.969843,0.002148166486662236,0.0015231214943687765,-0.001570012778529941,0.0008208768166899998,0.0010388654499007613,0.0006774649616547915,0.00027500328485124004,-0.0013055583603693182,-0.001031731816661096,-0.0030283402120744696,-0.0016629614792395308,-0.0031659911201517028,-0.002110738041471465,-0.005836174886489559,-0.003476400395509035,-0.005317796756298723,-0.0036922388292433125,-0.0033634149892639333,-0.004608936654118805,-0.002379783889583897,-0.0025093401781893267,-0.004149041421757757,-0.0025448977604082394,-0.0017353142623756294,-0.005858105950089501,-8.647907224457857e-05,-0.0019954506867263266,-0.0015956633027915477,-0.004247930502899461,-0.0008156502881716298,-0.0033150588153719462,-0.001718381826027936,-0.0024686600605414214,-0.0035702124308341293,-0.0016280104999751605,-0.004005438827340259,-0.002396502360291301,-0.0006198050296586544,-0.0037883698356805154,-0.005276208780791189,-0.002411755743124881,-0.0027166726821686903,-0.009235675581080715,-0.005142692296093563,-0.008287830667086373,-0.006200288274155355,-0.004295716910480614,-0.0013670341716561839,-0.00666376576091798,-0.0025509241650419874,-0.0030459168410108114,-0.0003764331128129695,-0.0010014452525429457,-0.003913656860955831,-0.002778216944989335,-0.0013010135137429546,0.0002570486607549547,-0.0003467208921799372,0.0021940709505705014,-9.113101336723803e-05
+52.386437,4.969874,-0.0015518335133377639,-0.005476878505631224,-0.006070012778529941,-0.00227912318331,-0.00036113455009923866,-0.0028225350383452087,-0.00502499671514876,-0.0016055583603693184,-0.003031731816661096,-0.00832834021207447,-0.003262961479239531,-0.005965991120151703,-0.005310738041471466,-0.006236174886489559,-0.005076400395509035,-0.006917796756298724,-0.006292238829243312,-0.008163414989263934,-0.006008936654118805,-0.003979783889583897,-0.0011093401781893271,-0.006749041421757758,-0.0029448977604082396,-0.003135314262375629,-0.006158105950089501,0.0007135209277554214,-0.0047954506867263266,-0.005095663302791547,-0.00524793050289946,-0.0011156502881716297,-0.006815058815371946,-0.0032183818260279363,-0.004468660060541422,-0.0049702124308341296,-0.006828010499975161,-0.007205438827340259,-0.0051965023602913015,-0.006219805029658654,-0.007088369835680516,-0.006176208780791189,-0.0035117557431248807,-0.00561667268216869,-0.011735675581080716,-0.008942692296093563,-0.011787830667086373,-0.009200288274155356,-0.007795716910480614,-0.006567034171656183,-0.01056376576091798,-0.004050924165041988,-0.0057459168410108116,-0.00607643311281297,-0.004901445252542946,-0.007613656860955831,-0.005378216944989336,-0.008301013513742954,-0.005942951339245045,-0.006046720892179937,-0.004605929049429498,-0.006191131013367239
+52.386317,4.969972,0.0015481664866622362,0.0020231214943687765,-0.003870012778529941,0.00042087681668999985,-0.0006611345500992386,0.0011774649616547916,-0.0010249967151487601,-0.0016055583603693184,0.001368268183338904,-0.0027283402120744696,-0.002262961479239531,-0.001465991120151703,-0.0036107380414714648,-0.0013361748864895596,-0.004576400395509036,-0.0055177967562987235,-0.004192238829243312,-0.003963414989263933,-0.0040089366541188045,-0.0018797838895838969,-0.0024093401781893273,-0.0042490414217577575,-0.0004448977604082395,-0.0014353142623756295,-0.005858105950089501,0.0007135209277554214,-0.0016954506867263267,-0.002795663302791548,0.0001520694971005388,-0.0011156502881716297,-0.0009150588153719463,0.0005816181739720639,-0.002068660060541421,-0.004570212430834129,-0.0036280104999751603,-0.0024054388273402586,-0.002696502360291301,-0.003219805029658654,-0.004888369835680515,-0.004276208780791189,-0.003211755743124881,-0.0029166726821686904,-0.003035675581080715,-0.0034426922960935627,-0.007887830667086374,-0.005400288274155355,-0.0046957169104806145,-0.002167034171656184,-0.006263765760917981,-0.0030509241650419875,-0.0037459168410108115,-0.0037764331128129695,-0.0018014452525429456,-0.005113656860955831,-0.0031782169449893352,-0.003801013513742955,-0.0017429513392450452,-0.001546720892179937,-5.92904942949853e-06,-0.002291131013367238
+52.386183,4.970074,0.0013481664866622362,2.312149436877641e-05,-0.0012700127785299409,0.00022087681668999976,0.0012388654499007612,0.0019774649616547918,-0.00032499671514876,-0.0007055583603693182,0.0012682681833389039,-0.0012283402120744696,-0.0005629614792395308,-0.00026599112015170297,-0.002010738041471465,-0.0025361748864895593,-0.0012764003955090353,-0.0042177967562987235,-0.0010922388292433124,3.6585010736066444e-05,-0.0005089366541188046,-0.0001797838895838972,0.000990659821810673,-0.0036490414217577576,0.0028551022395917605,-3.531426237562952e-05,-0.002658105950089501,0.0028135209277554214,-0.0004954506867263267,-0.0012956633027915478,-0.002147930502899461,-0.0005156502881716299,-0.0022150588153719464,-0.003018381826027936,-0.0014686600605414214,-0.0016702124308341294,-0.00492801049997516,-0.0021054388273402586,-0.0012965023602913009,-0.0013198050296586543,-0.0023883698356805157,-0.0014762087807911888,-0.002011755743124881,-0.0012166726821686905,-0.0043356755810807154,-0.0025426922960935625,-0.003787830667086374,-0.0016002882741553552,-0.0015957169104806144,-0.003067034171656184,-0.00516376576091798,-0.0006509241650419874,-0.0028459168410108118,-0.0017764331128129695,-0.0007014452525429457,-0.002913656860955831,-0.002778216944989335,-0.0025010135137429547,0.0008570486607549547,-0.0017467208921799371,-0.0014059290494294987,-0.0028911310133672386
+52.386171,4.97004,0.0014481664866622362,0.0028231214943687764,0.003729987221470059,0.004720876816689999,0.004838865449900761,0.004577464961654791,0.0009750032848512399,0.002194441639630682,0.004168268183338904,0.0015716597879255306,0.003237038520760469,0.003934008879848297,0.002689261958528535,0.0013638251135104406,0.003623599604490965,-0.00021779675629872354,0.002707761170756688,0.0034365850107360664,0.0020910633458811954,0.003220216110416103,0.004990659821810673,5.0958578242242536e-05,0.005255102239591761,0.0036646857376243704,0.0013418940499104989,0.006113520927755422,0.0017045493132736736,0.002804336697208452,0.0024520694971005385,0.0018843497118283703,0.0007849411846280537,0.0009816181739720638,0.0017313399394585783,2.97875691658705e-05,-0.0024280104999751606,0.0004945611726597412,0.001703497639708699,-0.0001198050296586544,-0.0004883698356805156,-0.0001762087807911886,0.001388244256875119,0.0018833273178313094,-0.003235675581080715,0.0015573077039064372,-0.0008878306670863734,0.0017997117258446449,0.0019042830895193857,0.000732965828343816,-0.0014637657609179802,0.0026490758349580123,-4.591684101081135e-05,0.0036235668871870304,0.003298554747457054,0.00048634313904416895,-0.0009782169449893351,-0.00040101351374295457,0.0007570486607549547,0.0005532791078200628,0.0018940709505705013,0.0025088689866327616
+52.386077,4.970134,-0.0015518335133377639,-0.0033768785056312233,-0.0043700127785299405,-0.00227912318331,-0.0028611345500992383,-0.0021225350383452086,-0.00442499671514876,-0.004005558360369318,-0.002631731816661096,-0.006328340212074469,-0.004562961479239531,-0.003565991120151703,-0.004710738041471465,-0.006236174886489559,-0.005376400395509035,-0.0075177967562987235,-0.005192238829243313,-0.004963414989263934,-0.005208936654118805,-0.0031797838895838973,-0.003309340178189327,-0.008749041421757758,-0.00374489776040824,-0.004735314262375629,-0.0077581059500895005,-0.0019864790722445786,-0.0050954506867263265,-0.006595663302791548,-0.006347930502899461,-0.00541565028817163,-0.008015058815371946,-0.007218381826027936,-0.0069686600605414215,-0.0072702124308341295,-0.008828010499975161,-0.008105438827340258,-0.007096502360291301,-0.008019805029658655,-0.007388369835680516,-0.007676208780791189,-0.007411755743124881,-0.005916672682168691,-0.011435675581080716,-0.009342692296093563,-0.010787830667086374,-0.0078002882741553545,-0.007395716910480615,-0.0072670341716561835,-0.009363765760917981,-0.005250924165041988,-0.006245916841010812,-0.00667643311281297,-0.0065014452525429456,-0.008713656860955831,-0.0075782169449893355,-0.008601013513742954,-0.007142951339245046,-0.0072467208921799375,-0.006805929049429498,-0.007091131013367238
+52.386015,4.970213,-0.0005518335133377638,-0.0018768785056312237,-0.003470012778529941,-0.00077912318331,-0.00036113455009923866,-0.0009225350383452085,-0.0036249967151487598,-0.0013055583603693182,-0.0005317318166610961,-0.00392834021207447,-0.0020629614792395307,-0.002365991120151703,-0.002810738041471465,-0.00443617488648956,-0.003176400395509035,-0.006117796756298723,-0.003492238829243312,-0.0030634149892639333,-0.0036089366541188048,-0.002879783889583897,-0.001909340178189327,-0.004549041421757757,-4.489776040823932e-05,-0.0015353142623756293,-0.004658105950089501,0.0013135209277554214,-0.0014954506867263266,-0.0022956633027915478,-0.0026479305028994614,-0.0003156502881716298,-0.004115058815371946,-0.0035183818260279363,-0.002868660060541421,-0.0038702124308341293,-0.005628010499975161,-0.004505438827340258,-0.003696502360291301,-0.004819805029658654,-0.004488369835680515,-0.004376208780791188,-0.003211755743124881,-0.0032166726821686903,-0.007035675581080715,-0.005442692296093563,-0.006387830667086374,-0.0042002882741553555,-0.004595716910480614,-0.004567034171656184,-0.00716376576091798,-0.0036509241650419873,-0.004145916841010812,-0.0034764331128129696,-0.0031014452525429453,-0.005413656860955831,-0.004178216944989335,-0.0049010135137429545,-0.003442951339245045,-0.003746720892179937,-0.0027059290494294984,-0.003291131013367238
+52.385988,4.970019,-0.00035183351333776375,-0.0028768785056312233,-0.002770012778529941,-0.0016791231833100002,-0.0017611345500992387,-0.0006225350383452085,-0.00562499671514876,-0.00040555836036931824,-0.0011317318166610964,-0.00522834021207447,-0.0030629614792395308,-0.004465991120151703,-0.004710738041471465,-0.00573617488648956,-0.0051764003955090355,-0.007717796756298724,-0.005392238829243313,-0.004263414989263934,-0.005808936654118805,-0.004679783889583897,-0.0028093401781893266,-0.006549041421757757,-0.0032448977604082395,-0.0036353142623756296,-0.004558105950089501,0.0012135209277554216,-0.0015954506867263268,-0.002395663302791548,-0.0031479305028994614,0.0007843497118283703,-0.003615058815371946,-0.002118381826027936,-0.0026686600605414215,-0.0030702124308341293,-0.00502801049997516,-0.004505438827340258,-0.0030965023602913012,-0.004819805029658654,-0.0027883698356805154,-0.003376208780791189,-0.002811755743124881,-0.0026166726821686905,-0.010135675581080715,-0.005442692296093563,-0.009087830667086374,-0.005700288274155355,-0.005895716910480614,-0.005967034171656184,-0.008163765760917981,-0.004650924165041988,-0.004645916841010811,-0.005376433112812969,-0.0035014452525429455,-0.006913656860955831,-0.004478216944989335,-0.005301013513742955,-0.004242951339245045,-0.003246720892179937,-0.0035059290494294988,-0.005691131013367238
+52.38588,4.9703,-0.00015183351333776388,-0.0014768785056312236,-0.002670012778529941,-7.912318331000016e-05,-0.003061134550099239,7.746496165479157e-05,-0.00192499671514876,-0.0016055583603693184,0.002068268183338904,-0.0012283402120744696,-6.29614792395308e-05,0.001234008879848297,-0.0006107380414714651,-0.00433617488648956,0.0001235996044909648,-0.0045177967562987234,-0.0030922388292433127,-0.0006634149892639335,-0.00010893665411880449,-0.0001797838895838972,0.001790659821810673,-0.003149041421757757,0.0016551022395917604,0.0005646857376243705,-0.003458105950089501,0.0038135209277554215,0.0019045493132736732,-0.0005956633027915479,0.0013520694971005387,0.0014843497118283702,-0.0028150588153719462,-0.001118381826027936,-0.0016686600605414215,-0.0006702124308341295,-0.005728010499975161,-0.0010054388273402588,-0.000796502360291301,-0.0024198050296586546,-0.0021883698356805156,-0.0013762087807911887,-0.001611755743124881,-0.0007166726821686905,-0.004135675581080715,-0.0014426922960935626,-0.006587830667086373,-0.0032002882741553555,-0.0027957169104806143,-0.001567034171656184,-0.00586376576091798,-0.0016509241650419872,-0.0013459168410108115,0.0024235668871870307,-0.0011014452525429457,-0.002113656860955831,-0.0001782169449893352,-0.00020101351374295459,0.0013570486607549547,-0.0014467208921799372,0.0024940709505705014,0.001708868986632762
+52.385781,4.97035,0.0004481664866622362,-0.0027768785056312235,-0.0024700127785299408,-0.00027912318331000025,0.0007388654499007613,-0.0002225350383452084,-0.0035249967151487604,-0.0032055583603693184,-0.0011317318166610964,-0.0061283402120744694,-0.003262961479239531,-0.0034659911201517027,-0.007810738041471465,-0.00503617488648956,-0.003976400395509035,0.010182203243701277,-0.009392238829243312,-0.005963414989263934,-0.007208936654118805,-0.004779783889583897,-0.0038093401781893266,0.011050958578242242,-0.0017448977604082399,-0.005735314262375629,-0.007658105950089501,-0.00048647907224457854,-0.003395450686726327,-0.003195663302791548,-0.004347930502899461,-0.0025156502881716293,-0.0034150588153719465,-0.004318381826027937,-0.0011686600605414215,-0.0024702124308341295,-0.0040280104999751605,-0.0039054388273402586,-0.0027965023602913013,-0.003219805029658654,-0.0031883698356805156,-0.0051762087807911885,-0.004011755743124882,-0.0017166726821686905,-0.006835675581080714,-0.004342692296093562,-0.007787830667086373,-0.007200288274155355,-0.004095716910480615,-0.004667034171656184,-0.00646376576091798,-0.0023509241650419874,-0.0027459168410108115,-0.0020764331128129694,-0.0016014452525429455,-0.0036136568609558307,-0.0018782169449893353,-0.0030010135137429547,-0.0016429513392450454,-0.0012467208921799371,-0.0010059290494294985,-0.000891131013367238
+52.385725,4.970421,-0.0014518335133377636,-0.004276878505631224,-0.002870012778529941,0.00022087681668999976,-0.0010611345500992388,0.0024774649616547914,-0.00372499671514876,-0.0017055583603693182,0.0009682681833389037,-0.0037283402120744692,-0.0018629614792395307,0.000834008879848297,-0.003010738041471465,-0.006836174886489559,-0.005376400395509035,-0.004817796756298723,-0.005392238829243313,-0.006163414989263934,-0.005408936654118805,-0.0035797838895838974,9.065982181067278e-05,-0.004049041421757758,-0.0025448977604082394,-0.0008353142623756296,-0.005058105950089501,-0.00028647907224457845,-0.0017954506867263265,-0.004395663302791547,-0.00524793050289946,-0.0006156502881716297,-0.004715058815371946,-0.004818381826027936,-0.005068660060541422,-0.0031702124308341296,-0.00392801049997516,-0.006405438827340258,-0.002496502360291301,-0.0038198050296586548,-0.0039883698356805155,-0.0019762087807911888,-0.0046117557431248814,-0.0005166726821686906,-0.008635675581080715,-0.004842692296093563,-0.004887830667086373,-0.0078002882741553545,-0.0037957169104806143,-0.003067034171656184,-0.0045637657609179805,-0.0022509241650419875,-0.0047459168410108115,-0.0031764331128129697,-0.0034014452525429452,-0.004713656860955831,-0.003878216944989335,-0.006801013513742955,-0.006042951339245046,-0.004846720892179937,-0.0026059290494294986,-0.0031911310133672386
+52.385502,4.970584,-0.00015183351333776388,0.0029231214943687767,0.0008299872214700591,0.0026208768166899998,0.0015388654499007613,0.0010774649616547916,-0.00242499671514876,0.0007944416396306818,0.0005682681833389038,-0.00332834021207447,-0.0009629614792395309,-0.0009659911201517031,-0.0018107380414714653,-0.005536174886489559,-0.003576400395509035,-0.007417796756298724,-0.0029922388292433124,-0.0028634149892639337,-0.0032089366541188046,-0.0004797838895838972,-0.0003093401781893272,-0.0018490414217577575,0.0021551022395917604,-0.0011353142623756296,-0.0025581059500895008,0.0027135209277554216,0.0007045493132736734,-0.0015956633027915477,0.0017520694971005389,0.0017843497118283703,-0.0018150588153719464,-0.00021838182602793607,-6.866006054142139e-05,-0.0010702124308341295,-0.0021280104999751607,-0.0011054388273402586,-0.0022965023602913013,0.0003801949703413456,-0.0021883698356805156,-0.002176208780791189,-0.003211755743124881,-0.0028166726821686906,-0.0043356755810807154,-0.0014426922960935626,-0.006487830667086374,-0.004100288274155355,-0.0013957169104806143,-0.002767034171656184,-0.00536376576091798,-0.0009509241650419876,-0.0019459168410108113,0.0005235668871870306,0.0012985547474570543,-0.001213656860955831,-0.0007782169449893352,0.0013989864862570455,0.0010570486607549548,-0.0002467208921799372,0.0021940709505705014,0.004308868986632762
+52.385514,4.970537,-0.002351833513337764,-0.004676878505631224,-0.006570012778529941,-0.0026791231833100003,-0.0015611345500992386,-0.0024225350383452085,-0.00682499671514876,-0.004005558360369318,-0.003631731816661096,-0.0048283402120744695,-0.00536296147923953,-0.006865991120151704,-0.005810738041471465,-0.00893617488648956,-0.008176400395509036,-0.012517796756298723,-0.007092238829243313,-0.009263414989263932,-0.009108936654118804,-0.005879783889583897,-0.0064093401781893265,-0.0072490414217577575,-0.005144897760408239,-0.006435314262375629,-0.004758105950089501,0.0016135209277554213,-0.0005954506867263265,-0.0064956633027915475,-0.006447930502899461,-0.00241565028817163,-0.007415058815371946,-0.004718381826027936,-0.0046686600605414215,-0.005570212430834129,-0.00782801049997516,-0.008005438827340259,-0.007996502360291301,-0.008019805029658655,-0.0062883698356805155,-0.006176208780791189,-0.001811755743124881,-0.0061166726821686905,-0.010635675581080715,-0.009342692296093563,-0.012087830667086373,-0.009900288274155355,-0.008595716910480614,-0.008967034171656185,-0.013763765760917979,-0.005450924165041988,-0.009745916841010812,-0.00697643311281297,-0.0010014452525429457,-0.004613656860955831,-0.010878216944989335,-0.009801013513742953,-0.009242951339245045,-0.005646720892179937,-0.006805929049429498,-0.009091131013367238
+52.385453,4.970608,-0.0011518335133377637,-0.0028768785056312233,-0.002670012778529941,-0.00107912318331,-0.0008611345500992387,-0.0002225350383452084,-0.00242499671514876,-0.00040555836036931824,0.0009682681833389037,-0.0020283402120744695,-0.0015629614792395307,-0.000765991120151703,-0.0031107380414714648,-0.00413617488648956,-0.003976400395509035,-0.008017796756298724,-0.003892238829243312,-0.004363414989263933,-0.0034089366541188043,-0.0035797838895838974,-0.003309340178189327,-0.0035490414217577574,0.0006551022395917606,-0.0027353142623756294,-0.0063581059500895,0.00021352092775542134,-0.0021954506867263267,-0.0022956633027915478,-0.002147930502899461,-0.0029156502881716295,-0.0024150588153719465,-0.003318381826027936,-0.0025686600605414212,-0.0029702124308341295,-0.00392801049997516,-0.005305438827340259,-0.004396502360291301,-0.004419805029658655,-0.0052883698356805155,-0.0032762087807911887,-0.002611755743124881,-0.0034166726821686904,-0.006535675581080714,-0.004842692296093563,-0.007087830667086374,-0.005000288274155355,-0.0015957169104806144,-0.001267034171656184,-0.00606376576091798,4.9075834958012656e-05,-0.0009459168410108113,0.0007235668871870306,0.0010985547474570542,-0.0019136568609558308,-0.0007782169449893352,-0.0006010135137429545,-0.00044295133924504527,-0.0007467208921799371,-0.0003059290494294985,0.001208868986632762
+52.385423,4.970621,-0.0015518335133377639,-0.004676878505631224,-0.002270012778529941,-0.0026791231833100003,-0.002461134550099239,-0.004022535038345209,-0.00372499671514876,-0.005205558360369318,-0.0005317318166610961,-0.007728340212074469,-0.0054629614792395306,-0.004265991120151703,-0.005910738041471466,-0.00533617488648956,-0.003276400395509035,-0.008917796756298724,0.0012077611707566876,-6.341498926393349e-05,-0.0007089366541188044,-0.00027978388958389724,0.0010906598218106728,-0.004849041421757757,-0.0007448977604082394,0.0017646857376243706,-0.002158105950089501,0.0021135209277554213,0.0017045493132736736,-0.001995663302791548,-0.005547930502899461,-0.00021565028817162974,-0.004115058815371946,-0.0035183818260279363,-0.0030686600605414212,-0.0024702124308341295,-0.00492801049997516,-0.004405438827340258,-0.0030965023602913012,-0.003919805029658654,-0.0022883698356805154,-0.003976208780791189,-0.003211755743124881,-1.667268216869056e-05,-0.007435675581080716,-0.007142692296093562,-0.0032878306670863734,0.001199711725844645,0.0014042830895193857,-0.0017670341716561839,-0.00206376576091798,0.0007490758349580125,-0.0013459168410108115,0.00042356688718703055,-0.00010144525254294568,-0.003913656860955831,-0.0007782169449893352,-0.0019010135137429547,-0.002042951339245045,-0.0017467208921799371,-0.0009059290494294986,-0.0020911310133672383
+52.385204,4.970807,0.002648166486662236,0.0018231214943687764,0.0005299872214700591,0.0008208768166899998,0.0027388654499007617,0.0014774649616547916,-0.0016249967151487602,0.0010944416396306818,-0.00043173181666109626,-0.0017283402120744696,0.0006370385207604692,0.001334008879848297,0.0007892619585285348,-0.0026361748864895595,0.0003235996044909648,-0.003717796756298723,-0.0006922388292433124,-0.0017634149892639334,-0.0015089366541188045,-0.0013797838895838973,-0.0006093401781893271,-0.004049041421757758,-0.00014489776040823958,-0.0008353142623756296,-0.005158105950089501,0.0015135209277554215,-0.0022954506867263265,0.0002043366972084521,-0.002147930502899461,0.0027843497118283703,8.494118462805365e-05,-0.00021838182602793607,-0.0002686600605414215,-0.0006702124308341295,-0.00222801049997516,-0.0023054388273402587,-0.000596502360291301,-0.0015198050296586544,-0.0023883698356805157,-0.0020762087807911886,-0.0015117557431248811,-0.0011166726821686904,-0.005535675581080715,-0.0027426922960935626,-0.005687830667086374,-0.005400288274155355,-0.0026957169104806144,-0.001167034171656184,-0.00506376576091798,-0.0013509241650419873,-0.0026459168410108112,-0.0019764331128129696,-0.0038014452525429454,-0.002713656860955831,-0.0013782169449893353,-0.007101013513742955,-0.0015429513392450453,-0.0005467208921799372,0.0017940709505705015,0.00010886898663276185
+52.385151,4.970829,0.006548166486662237,0.005023121494368776,0.004829987221470059,0.00402087681669,0.0020388654499007616,0.004077464961654792,0.0030750032848512396,0.0033944416396306815,0.0036682681833389037,0.0016716597879255304,0.00393703852076047,0.004434008879848296,0.001989261958528535,0.0002638251135104405,0.002623599604490965,-0.0006177967562987236,0.002707761170756688,0.0025365850107360666,0.0031910633458811957,0.003520216110416103,0.005290659821810673,0.002550958578242242,0.00535510223959176,0.004464685737624371,0.001741894049910499,0.009313520927755422,0.0048045493132736735,0.003604336697208452,0.0046520694971005395,0.00478434971182837,0.0027849411846280537,0.0028816181739720636,0.004131339939458578,0.0035297875691658706,0.0012719895000248395,0.0017945611726597412,0.0022034976397086988,0.0003801949703413456,0.00021163016431948443,0.0029237912192088115,0.004088244256875119,0.0010833273178313095,-0.0012356755810807151,0.0002573077039064375,-0.0014878306670863732,0.000599711725844645,0.0019042830895193857,0.004232965828343816,-0.0026637657609179803,0.0009490758349580126,0.0003540831589891885,0.0011235668871870305,0.0015985547474570544,0.002886343139044169,0.005121783055010665,0.00019898648625704543,-0.0013429513392450452,0.005853279107820063,0.0026940709505705015,0.000808868986632762
+52.385087,4.970863,-0.00035183351333776375,0.0005231214943687765,0.000929987221470059,0.0005208768166899998,-0.00016113455009923868,0.0010774649616547916,-0.0028249967151487603,9.444163963068177e-05,0.0010682681833389038,-0.0014283402120744695,0.0005370385207604691,0.001534008879848297,8.926195852853482e-05,-0.0016361748864895595,0.0003235996044909648,-0.004417796756298723,-0.0005922388292433124,0.0006365850107360664,-0.00010893665411880449,0.0024202161104161027,0.0012906598218106729,-0.0018490414217577575,0.0031551022395917604,0.0027646857376243707,-0.003058105950089501,0.0028135209277554214,0.0012045493132736733,-0.0002956633027915479,-0.00024793050289946116,0.0006843497118283702,-0.0019150588153719463,-0.0015183818260279362,-0.0013686600605414215,-0.0004702124308341295,-0.0027280104999751606,-0.0024054388273402586,-0.000796502360291301,-0.0023198050296586543,-0.0011883698356805156,-0.0013762087807911887,-0.0014117557431248809,0.0014833273178313094,-0.004535675581080715,-0.0032426922960935626,-0.003787830667086374,-0.001300288274155355,-9.571691048061435e-05,0.000732965828343816,-0.0026637657609179803,0.0021490758349580127,5.408315898918848e-05,0.0011235668871870305,0.0006985547474570543,-0.001613656860955831,0.0001217830550106648,-0.0021010135137429545,0.0010570486607549548,0.0009532791078200628,0.0003940709505705015,0.000808868986632762
+52.385047,4.970897,-0.002651833513337764,-0.0017768785056312235,-0.001770012778529941,-0.0011791231833100002,-0.0022611345500992384,-0.0024225350383452085,-0.00482499671514876,-0.0028055583603693183,0.0003682681833389037,-0.004128340212074469,-0.005162961479239531,-0.003565991120151703,-0.005310738041471466,-0.00573617488648956,-0.005376400395509035,-0.008317796756298724,-0.007792238829243313,-0.006863414989263934,-0.006108936654118805,-0.004679783889583897,-0.004309340178189327,-0.004849041421757757,0.00015510223959176034,0.0012646857376243706,-0.0025581059500895008,-0.0007864790722445785,-0.003395450686726327,-0.0022956633027915478,-0.0019479305028994613,-0.00401565028817163,-0.0035150588153719463,-0.005718381826027937,-0.0012686600605414213,-0.00467021243083413,-0.0060280104999751605,-0.0042054388273402585,-0.003396502360291301,-0.0047198050296586545,-0.0052883698356805155,-0.004776208780791189,-0.006211755743124881,-0.005816672682168691,-0.007135675581080716,-0.007242692296093562,-0.007287830667086374,-0.006200288274155355,-0.005795716910480614,-0.005867034171656183,-0.00716376576091798,-0.004450924165041987,-0.0047459168410108115,-0.003576433112812969,-0.005401445252542945,-0.005013656860955831,-0.006178216944989335,-0.005601013513742955,-0.003542951339245045,-0.004646720892179937,-0.004105929049429498,-0.001591131013367238
+52.384965,4.970955,-0.0002518335133377637,-0.0016768785056312237,-0.0007700127785299409,0.0006208768166899998,-0.0012611345500992386,-0.0016225350383452086,-0.00272499671514876,-0.002005558360369318,0.0012682681833389039,-0.0037283402120744692,-0.002662961479239531,-0.0006659911201517029,-0.0031107380414714648,-0.004536174886489559,-0.001976400395509035,-0.004917796756298724,-0.0022922388292433123,-0.0018634149892639334,-0.0016089366541188043,-0.0006797838895838971,-9.340178189327052e-06,-0.004749041421757757,0.0013551022395917604,-0.00013531426237562945,-0.004158105950089501,0.0026135209277554214,-0.0026954506867263267,-0.001895663302791548,-0.001547930502899461,-0.0006156502881716297,-0.0016150588153719463,-0.0025183818260279362,-0.0012686600605414213,-0.0015702124308341295,-0.0040280104999751605,-0.0034054388273402586,-0.002396502360291301,-0.002919805029658654,-0.0023883698356805157,-0.0031762087807911885,-0.002611755743124881,-0.0028166726821686906,-0.007035675581080715,-0.005542692296093562,-0.004687830667086374,-0.0039002882741553547,0.0004042830895193857,-0.001267034171656184,-0.0045637657609179805,0.0007490758349580125,0.00015408315898918852,-0.0013764331128129693,-0.0006014452525429457,-0.003413656860955831,-0.0013782169449893353,-0.003401013513742955,-0.0018429513392450453,-0.001946720892179937,-0.0012059290494294986,-0.0021911310133672377
+52.384932,4.971056,0.001248166486662236,0.0035231214943687765,-7.001277852994092e-05,0.0034208768166899997,0.004238865449900761,0.0032774649616547913,0.0017750032848512399,0.0026944416396306814,0.007868268183338904,0.00037165978792553047,0.0019370385207604691,0.0021340088798482973,0.0009892619585285347,0.0002638251135104405,0.002023599604490965,-0.002017796756298724,0.0008077611707566876,3.6585010736066444e-05,0.0010910633458811954,0.0017202161104161026,0.000490659821810673,-0.0002490414217577574,0.0038551022395917605,0.0017646857376243706,-0.00015810595008950096,0.004613520927755421,0.0022045493132736736,0.0017043366972084523,0.0018520694971005387,0.00378434971182837,0.0003849411846280536,0.001381618173972064,0.0023313399394585786,-0.0010702124308341295,0.0007719895000248395,0.00029456117265974136,0.001603497639708699,-0.0018198050296586543,-0.0006883698356805155,0.0008237912192088112,0.001388244256875119,0.00028332731783130944,-0.002835675581080715,-0.004142692296093563,-0.0022878306670863734,-2.882741553550828e-07,-0.00039571691048061435,3.29658283438161e-05,-0.00226376576091798,0.0013490758349580126,-0.0003459168410108115,0.0008235668871870306,0.0014985547474570542,-0.000713656860955831,0.0008217830550106648,0.0005989864862570454,0.001957048660754955,0.0008532791078200627,0.0014940709505705013,0.0019088689866327618
+52.384791,4.97107,-0.0014518335133377636,-0.0014768785056312236,-0.000570012778529941,-0.0013791231833100003,-0.0015611345500992386,-0.0032225350383452084,-0.00392499671514876,-0.003105558360369318,-0.0011317318166610964,-0.00432834021207447,-0.002462961479239531,0.000634008879848297,-0.004010738041471465,-0.004536174886489559,-0.0011764003955090352,-0.006617796756298724,-0.002892238829243312,-0.0019634149892639335,-0.0010089366541188045,-0.0016797838895838972,-0.0011093401781893271,-0.004949041421757758,0.0035551022395917606,-0.0002353142623756295,-0.004258105950089501,0.0007135209277554214,-0.0015954506867263268,-0.004295663302791548,-0.001347930502899461,-0.0013156502881716298,-0.0029150588153719465,-0.003818381826027936,-0.003368660060541421,-0.0029702124308341295,-0.00442801049997516,-0.004905438827340259,-0.002396502360291301,-0.004919805029658654,-0.004388369835680516,-0.0035762087807911886,-0.00891175574312488,-0.00761667268216869,-0.012735675581080715,-0.012842692296093562,-0.011587830667086374,-0.008500288274155355,-0.007795716910480614,-0.007767034171656184,-0.008163765760917981,-0.0071509241650419865,-0.009545916841010811,-0.007776433112812968,-0.010101445252542945,-0.01031365686095583,-0.010478216944989335,-0.005401013513742955,-0.009242951339245045,-0.010046720892179938,-0.009205929049429499,-0.008691131013367239
+52.38468,4.971258,0.0015481664866622362,0.009623121494368777,2.998722147005907e-05,0.00102087681669,0.0001388654499007613,0.00017746496165479153,-0.0028249967151487603,0.0007944416396306818,0.002768268183338904,-0.00362834021207447,-0.00036296147923953084,0.000334008879848297,-0.0008107380414714651,-0.0027361748864895598,-0.0002764003955090352,-0.005617796756298724,-0.0009922388292433124,-0.0013634149892639337,-0.0014089366541188047,0.0005202161104161028,0.0012906598218106729,-0.005049041421757758,0.0008551022395917604,0.0006646857376243705,-0.003158105950089501,0.0019135209277554215,0.0008045493132736734,-0.001695663302791548,-0.003047930502899461,8.434971182837018e-05,-0.002115058815371946,-0.001918381826027936,-0.0027686600605414213,-0.0022702124308341294,-0.0038280104999751604,-0.004505438827340258,-0.0017965023602913009,-0.0031198050296586547,-0.0026883698356805156,-0.0025762087807911886,-0.001611755743124881,-0.0011166726821686904,-0.004635675581080715,-0.0037426922960935626,-0.005787830667086374,-0.004000288274155355,-0.002895716910480614,-0.003167034171656184,-0.0048637657609179805,-0.0016509241650419872,-0.0027459168410108115,-0.0006764331128129694,-0.0011014452525429457,-0.001613656860955831,-0.003478216944989335,-0.0012010135137429546,-0.003142951339245045,-0.003246720892179937,-0.0012059290494294986,-0.0020911310133672383
+52.384623,4.971185,-0.00035183351333776375,0.00012312149436877645,-0.00037001277852994095,0.00042087681668999985,-0.0005611345500992388,0.0006774649616547915,-0.00272499671514876,-0.00020555836036931826,0.00046826818333890394,-0.0034283402120744693,-0.0006629614792395308,0.001334008879848297,-0.0010107380414714651,-0.0032361748864895594,-0.0003764003955090352,-0.002117796756298723,-9.223882924331238e-05,-6.341498926393349e-05,0.00029106334588119547,0.0012202161104161028,0.00029065982181067287,-0.003149041421757757,0.0024551022395917603,0.0014646857376243705,-0.002758105950089501,0.0012135209277554216,0.00030454931327367343,-0.002395663302791548,-0.0005479305028994612,-0.0008156502881716298,-0.0017150588153719464,-0.0029183818260279364,-0.0017686600605414213,-0.0011702124308341293,-0.0038280104999751604,-0.0033054388273402588,-0.0017965023602913009,-0.0036198050296586542,-0.0026883698356805156,-0.0022762087807911887,-0.002511755743124881,-0.0005166726821686906,-0.005135675581080715,-0.0033426922960935624,-0.002487830667086373,-0.001900288274155355,-0.00039571691048061435,-0.0017670341716561839,-0.00406376576091798,-0.0005509241650419874,-0.0015459168410108116,-0.0003764331128129695,-0.0019014452525429458,-0.004113656860955831,-0.002878216944989335,-0.0036010135137429546,-0.003142951339245045,-0.0025467208921799373,-0.0029059290494294985,-0.001591131013367238
+52.384304,4.971504,-0.012251833513337765,-0.016276878505631222,-0.012770012778529941,-0.01217912318331,-0.010961134550099238,-0.012022535038345208,-0.01512499671514876,-0.012005558360369319,-0.012831731816661097,-0.01652834021207447,-0.013062961479239531,-0.009765991120151703,-0.012410738041471466,-0.01623617488648956,-0.010876400395509035,-0.011817796756298724,-0.012192238829243312,-0.012663414989263932,-0.014008936654118806,-0.011879783889583898,-0.012609340178189328,-0.016549041421757758,-0.01184489776040824,-0.009935314262375629,-0.0150581059500895,-0.009386479072244578,-0.011195450686726326,-0.01589566330279155,-0.01674793050289946,-0.01091565028817163,-0.013615058815371946,-0.016118381826027938,-0.015468660060541421,-0.014970212430834129,-0.01952801049997516,-0.01360543882734026,-0.0140965023602913,-0.015019805029658655,-0.013288369835680516,-0.014376208780791188,-0.01171175574312488,-0.011816672682168692,-0.021435675581080716,-0.012642692296093562,-0.016787830667086372,-0.015800288274155357,-0.012695716910480614,-0.018667034171656185,-0.01946376576091798,-0.014550924165041989,-0.013945916841010812,-0.011476433112812968,-0.014601445252542946,-0.01811365686095583,-0.015578216944989334,-0.017701013513742953,-0.016942951339245043,-0.015146720892179937,-0.016505929049429498,-0.016891131013367238
+52.384228,4.971461,-5.1833513337763834e-05,-0.0034768785056312236,-0.004270012778529941,-0.0013791231833100003,0.0001388654499007613,-0.0019225350383452085,-0.00392499671514876,-0.002305558360369318,-0.002631731816661096,-0.006428340212074469,-0.00436296147923953,-0.007065991120151703,-0.005010738041471465,-0.00993617488648956,-0.007376400395509035,-0.008217796756298723,-0.007392238829243313,-0.0077634149892639335,-0.009008936654118805,-0.007579783889583897,-0.0064093401781893265,-0.008149041421757756,-0.00414489776040824,-0.005035314262375629,-0.0078581059500895,-0.0017864790722445785,-0.0038954506867263264,-0.004295663302791548,-0.004547930502899461,-0.0003156502881716298,-0.0050150588153719455,-0.0032183818260279363,-0.004268660060541421,-0.005470212430834129,-0.00612801049997516,-0.006305438827340259,-0.003896502360291301,-0.005819805029658654,-0.004888369835680515,-0.006676208780791188,-0.004511755743124881,-0.00661667268216869,-0.009635675581080715,-0.009242692296093563,-0.011987830667086374,-0.013300288274155355,-0.0076957169104806145,-0.0072670341716561835,-0.00916376576091798,-0.004550924165041987,-0.006145916841010812,-0.006476433112812969,-0.005001445252542945,-0.00791365686095583,-0.005478216944989335,-0.0062010135137429544,-0.005742951339245046,-0.004546720892179937,-0.0028059290494294987,-0.005591131013367238
+52.384204,4.971564,0.0008481664866622363,-0.00037687850563122356,-0.001070012778529941,0.00102087681669,-0.0007611345500992386,-0.0018225350383452086,-0.0028249967151487603,-0.0013055583603693182,0.0014682681833389037,-0.004128340212074469,-0.0025629614792395308,-0.0005659911201517031,-0.0018107380414714653,-0.0016361748864895595,-0.002176400395509035,-0.0018177967562987235,-0.0014922388292433124,-0.0017634149892639334,-0.0024089366541188042,-0.0007797838895838971,-0.0006093401781893271,-0.0027490414217577574,0.0019551022395917603,-3.531426237562952e-05,-0.0044581059500895005,0.0009135209277554214,-0.0014954506867263266,-0.0015956633027915477,-0.004447930502899461,-0.0012156502881716295,-0.0022150588153719464,-0.0029183818260279364,-0.003368660060541421,-0.0034702124308341295,-0.00432801049997516,-0.005805438827340258,-0.003396502360291301,-0.003519805029658654,-0.004888369835680515,-0.0051762087807911885,-0.002511755743124881,-0.0020166726821686906,-0.007235675581080715,-0.006242692296093562,-0.006987830667086374,-0.005700288274155355,-0.0026957169104806144,-0.002267034171656184,-0.00646376576091798,-0.0016509241650419872,-0.0033459168410108113,-0.0023764331128129693,-0.0015014452525429457,-0.004213656860955831,-0.005878216944989335,-0.004301013513742955,-0.002942951339245045,-0.003146720892179937,-0.0021059290494294986,-0.002291131013367238
+52.384185,4.9715,0.0024481664866622364,-0.0009768785056312236,0.0006299872214700591,0.00272087681669,0.0013388654499007615,0.0030774649616547916,-0.00152499671514876,0.001394441639630682,0.0018682681833389037,-0.0020283402120744695,3.7038520760469205e-05,0.002434008879848297,0.0004892619585285348,-0.004036174886489559,0.0001235996044909648,-0.0008177967562987235,-0.0003922388292433124,-0.00016341498926393348,-0.0004089366541188045,0.0022202161104161026,0.0015906598218106728,-0.0020490414217577573,0.0026551022395917604,0.0021646857376243704,-0.001558105950089501,0.0027135209277554216,0.0015045493132736735,-9.566330279154789e-05,-0.002247930502899461,0.0009843497118283704,-0.0037150588153719464,-0.002318381826027936,-0.0017686600605414213,-0.0010702124308341295,-0.00522801049997516,-0.0028054388273402583,-0.000596502360291301,-0.0016198050296586544,-0.0006883698356805155,-0.0025762087807911886,-0.0009117557431248812,0.0005833273178313095,-0.006535675581080714,-0.004542692296093563,-0.005087830667086374,-0.002600288274155355,-0.0018957169104806143,-0.002267034171656184,-0.00516376576091798,0.0004490758349580125,-0.002245916841010811,-0.0022764331128129695,-0.0022014452525429455,-0.004713656860955831,-0.003278216944989335,-0.0035010135137429547,-0.002342951339245045,-0.002846720892179937,-0.0017059290494294986,-0.0028911310133672386
+52.384188,4.971469,-0.0004518335133377638,-0.00047687850563122355,-0.002570012778529941,0.0007208768166899999,0.0006388654499007614,0.0006774649616547915,-0.0029249967151487597,9.444163963068177e-05,-0.00013173181666109634,-0.00332834021207447,-0.0015629614792395307,-0.002965991120151703,-0.001910738041471465,-0.006536174886489559,-0.003676400395509035,-0.0036177967562987237,-0.006092238829243313,-0.004063414989263933,-0.006708936654118805,-0.004079783889583897,-0.0032093401781893268,-0.0038490414217577573,-4.489776040823932e-05,-0.0013353142623756292,-0.005258105950089501,0.0006135209277554215,-0.0004954506867263267,-0.0014956633027915479,0.0003520694971005389,0.00288434971182837,-0.0025150588153719463,-0.0007183818260279362,-0.0005686600605414215,-0.0014702124308341295,-0.0025280104999751605,-0.0033054388273402588,-0.001496502360291301,-0.0023198050296586543,-0.0011883698356805156,-0.004276208780791189,-0.001311755743124881,-0.0016166726821686904,-0.0037356755810807147,-0.004242692296093562,-0.009087830667086374,-0.008200288274155355,-0.005495716910480614,-0.004367034171656184,-0.0061637657609179795,-0.0017509241650419875,-0.003945916841010812,-0.0025764331128129694,-0.0009014452525429456,-0.0045136568609558305,-0.001978216944989335,-0.0010010135137429545,-0.0007429513392450453,-0.0013467208921799372,-5.92904942949853e-06,-0.001591131013367238
+52.384124,4.971512,0.00014816648666223626,-0.0023768785056312233,-0.002170012778529941,-0.0001791231833100002,0.00033886544990076133,-0.0005225350383452085,-0.00372499671514876,-0.0009055583603693183,-0.0007317318166610962,-0.00422834021207447,-0.002662961479239531,-0.004065991120151703,-0.003210738041471465,-0.006436174886489559,-0.004476400395509035,-0.004317796756298723,-0.005092238829243313,-0.005063414989263933,-0.007108936654118805,-0.005479783889583897,-0.004209340178189327,-0.0029490414217577575,5.510223959176051e-05,-0.002135314262375629,-0.004358105950089501,0.0011135209277554213,-0.0011954506867263267,-0.001395663302791548,-0.0014479305028994613,0.0020843497118283702,-0.003115058815371946,-0.0013183818260279361,-0.0019686600605414214,-0.0012702124308341294,-0.0035280104999751605,-0.0036054388273402587,-0.000996502360291301,-0.0019198050296586543,-0.0010883698356805155,-0.002676208780791189,-0.0009117557431248812,-0.0027166726821686903,-0.005135675581080715,-0.0040426922960935625,-0.007987830667086374,-0.0078002882741553545,-0.003995716910480614,-0.003167034171656184,-0.0061637657609179795,-0.0003509241650419875,-0.0028459168410108118,-0.0023764331128129693,9.85547474570543e-05,-0.003313656860955831,-0.0009782169449893351,-0.0015010135137429545,-0.0003429513392450452,-0.0006467208921799373,0.0007940709505705015,-0.0009911310133672382
+52.384106,4.971574,-0.006851833513337764,-0.009376878505631224,-0.008370012778529941,-0.00427912318331,-0.006961134550099239,-0.006022535038345209,-0.009524996715148759,-0.006305558360369318,-0.005431731816661097,-0.007328340212074469,-0.006262961479239531,-0.005665991120151703,-0.008210738041471466,-0.01103617488648956,-0.007276400395509036,-0.007417796756298724,-0.007692238829243313,-0.007963414989263933,-0.008108936654118805,-0.004779783889583897,-0.006009340178189327,-0.008249041421757758,-0.00614489776040824,-0.00783531426237563,-0.0087581059500895,-0.004386479072244579,-0.006795450686726327,-0.008795663302791547,-0.00884793050289946,-0.00631565028817163,-0.009715058815371946,-0.011018381826027936,-0.00866866006054142,-0.00937021243083413,-0.013128010499975161,-0.011705438827340257,-0.0087965023602913,-0.011619805029658654,-0.009388369835680515,-0.008676208780791188,-0.00961175574312488,-0.00731667268216869,-0.011935675581080716,-0.011542692296093563,-0.011087830667086374,-0.011800288274155355,-0.009195716910480614,-0.010567034171656184,-0.010963765760917982,-0.008950924165041988,-0.009045916841010812,-0.0068764331128129685,-0.008801445252542945,-0.01191365686095583,-0.009578216944989334,-0.009101013513742954,-0.008542951339245045,-0.009746720892179938,-0.009805929049429498,-0.013191131013367238
+52.384014,4.97158,-0.00035183351333776375,-0.0015768785056312234,-0.002670012778529941,-0.00107912318331,-0.00016113455009923868,-0.0011225350383452085,-0.00402499671514876,-0.0019055583603693183,-0.0017317318166610962,-0.0058283402120744695,-0.00406296147923953,-0.004865991120151703,-0.0039107380414714656,-0.00773617488648956,-0.002976400395509035,-0.002717796756298724,-0.005592238829243312,-0.005263414989263934,-0.006908936654118805,-0.004779783889583897,-0.004309340178189327,-0.005049041421757758,-0.002144897760408239,-0.0027353142623756294,-0.005858105950089501,-0.0007864790722445785,-0.0027954506867263265,-0.002995663302791548,-0.004047930502899461,-0.0005156502881716299,-0.005315058815371946,-0.002618381826027936,-0.004068660060541422,-0.0049702124308341296,-0.005428010499975161,-0.0055054388273402585,-0.003696502360291301,-0.005819805029658654,-0.004888369835680515,-0.006076208780791188,-0.004711755743124882,-0.00561667268216869,-0.008435675581080715,-0.008742692296093563,-0.010087830667086373,-0.009500288274155355,-0.006195716910480614,-0.007867034171656184,-0.00956376576091798,-0.004150924165041987,-0.005445916841010812,-0.0052764331128129695,-0.004101445252542945,-0.0065136568609558305,-0.004778216944989335,-0.0059010135137429545,-0.004842951339245045,-0.004246720892179937,-0.0033059290494294987,-0.004691131013367238
+52.38395,4.971625,-0.0006518335133377637,-0.0032768785056312235,-0.002370012778529941,-0.0009791231833100001,-0.0009611345500992387,-2.253503834520848e-05,-0.00402499671514876,-0.0016055583603693184,-0.0018317318166610965,-0.00492834021207447,-0.003262961479239531,-0.0030659911201517034,-0.003710738041471465,-0.006536174886489559,-0.004276400395509036,-0.0019177967562987233,-0.0046922388292433125,-0.0047634149892639335,-0.004808936654118805,-0.003379783889583897,-0.003309340178189327,-0.0052490414217577575,-0.0016448977604082396,-0.002635314262375629,-0.005858105950089501,-0.0011864790722445786,-0.003495450686726327,-0.002595663302791548,-0.0046479305028994606,-0.0010156502881716299,-0.005115058815371946,-0.002718381826027936,-0.0032686600605414213,-0.0039702124308341295,-0.0038280104999751604,-0.005605438827340259,-0.003996502360291301,-0.006519805029658654,-0.0042883698356805154,-0.005576208780791189,-0.004111755743124881,-0.00431667268216869,-0.008935675581080715,-0.008642692296093563,-0.009487830667086373,-0.008400288274155355,-0.006495716910480614,-0.006467034171656184,-0.00806376576091798,-0.0033509241650419874,-0.004845916841010812,-0.00577643311281297,-0.004901445252542946,-0.007413656860955831,-0.005378216944989336,-0.005301013513742955,-0.004742951339245046,-0.004546720892179937,-0.005605929049429498,-0.004991131013367238
+52.38389,4.971719,0.0020481664866622363,-0.00017687850563122357,0.002829987221470059,0.0009208768166899999,-0.0012611345500992386,0.00037746496165479154,-0.0029249967151487597,-5.558360369318171e-06,0.001368268183338904,-0.0029283402120744697,-0.003462961479239531,-0.001765991120151703,-0.002910738041471465,-0.002836174886489559,-0.0007764003955090351,0.0008822032437012764,-0.002892238829243312,-0.0017634149892639334,-0.0011089366541188047,-0.002979783889583897,-0.0031093401781893265,-0.0013490414217577574,0.0020551022395917606,0.00016468573762437057,-0.0054581059500895006,0.0020135209277554215,-0.0015954506867263268,-0.001995663302791548,-0.0029479305028994613,-0.0005156502881716299,-0.0034150588153719465,-0.0018183818260279361,-0.002368660060541421,-0.0011702124308341293,-0.00462801049997516,-0.0033054388273402588,-0.0012965023602913009,-0.0014198050296586546,-0.004088369835680516,-0.0019762087807911888,-0.001011755743124881,-0.0037166726821686903,-0.005235675581080715,-0.004742692296093563,-0.007587830667086374,-0.005900288274155355,-0.0017957169104806142,-0.004567034171656184,-0.00516376576091798,0.00024907583495801253,-0.0024459168410108116,-0.0026764331128129692,-0.0032014452525429456,-0.002813656860955831,-0.002478216944989335,-0.0039010135137429545,-0.002142951339245045,-0.002646720892179937,-0.0020059290494294987,-0.0037911310133672384
+52.383897,4.971653,4.816648666223621e-05,-0.0020768785056312234,-0.0024700127785299408,-7.912318331000016e-05,-0.0012611345500992386,-0.0012225350383452086,-0.00502499671514876,-0.003005558360369318,-0.0014317318166610963,-0.006328340212074469,-0.004862961479239531,-0.005165991120151703,-0.004010738041471465,-0.00833617488648956,-0.005576400395509036,-0.0033177967562987238,-0.006592238829243312,-0.005563414989263934,-0.007408936654118806,-0.0055797838895838975,-0.004309340178189327,-0.006149041421757757,-0.00404489776040824,-0.0033353142623756297,-0.006258105950089501,-0.0020864790722445784,-0.003495450686726327,-0.004995663302791548,-0.004247930502899461,-0.0009156502881716296,-0.006715058815371946,-0.005218381826027936,-0.0046686600605414215,-0.00567021243083413,-0.00672801049997516,-0.006405438827340258,-0.005296502360291301,-0.006319805029658654,-0.0049883698356805155,-0.007076208780791189,-0.004711755743124882,-0.004516672682168691,-0.009735675581080716,-0.009142692296093562,-0.010487830667086374,-0.011000288274155355,-0.007095716910480615,-0.006967034171656184,-0.00956376576091798,-0.004950924165041988,-0.006245916841010812,-0.00667643311281297,-0.0058014452525429454,-0.00791365686095583,-0.006078216944989336,-0.006601013513742955,-0.004942951339245045,-0.005246720892179937,-0.0034059290494294985,-0.006291131013367238
+52.383817,4.971676,-0.006351833513337763,-0.008176878505631225,-0.007370012778529941,-0.00587912318331,-0.006561134550099239,-0.006422535038345208,-0.00782499671514876,-0.006305558360369318,-0.004131731816661096,-0.008928340212074469,-0.008562961479239531,-0.008065991120151703,-0.008310738041471465,-0.01023617488648956,-0.008776400395509035,-0.006717796756298723,-0.010492238829243312,-0.009263414989263932,-0.010608936654118805,-0.008979783889583898,-0.009009340178189327,-0.008249041421757758,-0.00554489776040824,-0.0072353142623756295,-0.009258105950089501,-0.005886479072244578,-0.007195450686726326,-0.008595663302791547,-0.010147930502899461,-0.00661565028817163,-0.010215058815371946,-0.010118381826027936,-0.009468660060541421,-0.009570212430834129,-0.012828010499975161,-0.012005438827340259,-0.0090965023602913,-0.010019805029658655,-0.010288369835680515,-0.009876208780791188,-0.009211755743124881,-0.008916672682168692,-0.012635675581080716,-0.013342692296093563,-0.014287830667086374,-0.012500288274155355,-0.012895716910480614,-0.012067034171656183,-0.014463765760917981,-0.008850924165041987,-0.010845916841010812,-0.01047643311281297,-0.009101445252542946,-0.010713656860955831,-0.008778216944989335,-0.010901013513742954,-0.009242951339245045,-0.010446720892179937,-0.009805929049429498,-0.010491131013367239
+52.383733,4.971723,-0.009051833513337765,-0.011676878505631224,-0.00967001277852994,-0.008179123183309999,-0.009161134550099238,-0.008922535038345208,-0.011824996715148759,-0.01050555836036932,-0.009731731816661097,-0.01402834021207447,-0.01176296147923953,-0.011465991120151703,-0.011510738041471465,-0.014336174886489559,-0.011876400395509036,-0.009417796756298724,-0.012792238829243312,-0.011863414989263932,-0.012708936654118805,-0.010079783889583898,-0.010409340178189327,-0.012549041421757758,-0.008544897760408239,-0.00983531426237563,-0.0131581059500895,-0.008786479072244578,-0.011095450686726327,-0.011895663302791548,-0.01314793050289946,-0.00981565028817163,-0.014315058815371946,-0.013218381826027937,-0.01186866006054142,-0.012370212430834129,-0.015328010499975162,-0.01470543882734026,-0.0124965023602913,-0.014319805029658655,-0.013488369835680516,-0.013376208780791187,-0.01251175574312488,-0.011916672682168691,-0.016235675581080716,-0.015242692296093562,-0.017187830667086373,-0.016800288274155358,-0.014095716910480614,-0.014167034171656184,-0.01716376576091798,-0.011550924165041988,-0.014245916841010812,-0.01417643311281297,-0.013501445252542946,-0.015313656860955831,-0.013678216944989335,-0.014901013513742954,-0.015142951339245045,-0.013646720892179937,-0.013305929049429498,-0.014891131013367238
+52.383662,4.971786,-0.007351833513337764,-0.009376878505631224,-0.007370012778529941,-0.008179123183309999,-0.008361134550099238,-0.009022535038345209,-0.010624996715148759,-0.011005558360369318,-0.0073317318166610974,-0.012428340212074469,-0.01176296147923953,-0.013365991120151702,-0.011410738041471465,-0.012336174886489559,-0.012176400395509036,-0.009717796756298724,-0.009192238829243311,-0.008663414989263932,-0.007808936654118805,-0.005979783889583897,-0.007509340178189327,-0.009949041421757758,-0.00434489776040824,-0.007035314262375629,-0.010958105950089501,-0.0052864790722445786,-0.0073954506867263264,-0.009495663302791547,-0.01084793050289946,-0.00781565028817163,-0.011815058815371945,-0.010218381826027936,-0.009668660060541422,-0.008970212430834129,-0.01322801049997516,-0.01180543882734026,-0.0098965023602913,-0.011519805029658655,-0.011588369835680516,-0.011376208780791187,-0.010711755743124881,-0.01051667268216869,-0.014535675581080716,-0.012442692296093563,-0.012787830667086374,-0.010500288274155355,-0.010695716910480614,-0.010367034171656183,-0.013363765760917981,-0.009050924165041987,-0.011845916841010811,-0.01047643311281297,-0.010801445252542945,-0.01231365686095583,-0.011078216944989335,-0.013701013513742954,-0.010942951339245045,-0.012146720892179937,-0.010605929049429499,-0.013491131013367238
+52.383594,4.97182,-0.0037518335133377633,-0.0050768785056312235,-0.005070012778529941,-0.00397912318331,-0.004461134550099239,-0.005022535038345209,-0.00742499671514876,-0.005005558360369318,-0.0038317318166610965,-0.007628340212074469,-0.00636296147923953,-0.005365991120151703,-0.0065107380414714654,-0.00833617488648956,-0.006276400395509036,-0.004617796756298724,-0.0066922388292433126,-0.006163414989263934,-0.006508936654118805,-0.004979783889583897,-0.005009340178189327,-0.0072490414217577575,-0.0032448977604082395,-0.005035314262375629,-0.0087581059500895,-0.0037864790722445785,-0.005895450686726326,-0.0064956633027915475,-0.008747930502899461,-0.00531565028817163,-0.009315058815371946,-0.008818381826027935,-0.007568660060541421,-0.00787021243083413,-0.01092801049997516,-0.009805438827340258,-0.007996502360291301,-0.010019805029658655,-0.009288369835680516,-0.009776208780791188,-0.00801175574312488,-0.008316672682168692,-0.012235675581080716,-0.010842692296093562,-0.012087830667086373,-0.011100288274155354,-0.009095716910480615,-0.009867034171656184,-0.01226376576091798,-0.006950924165041988,-0.009545916841010811,-0.00927643311281297,-0.009101445252542946,-0.010713656860955831,-0.009178216944989335,-0.010401013513742953,-0.010142951339245044,-0.009846720892179937,-0.008905929049429499,-0.009991131013367238
+52.383593,4.97178,0.0015481664866622362,0.0015231214943687765,-0.0002700127785299409,0.0005208768166899998,0.0020388654499007616,0.0010774649616547916,-0.00082499671514876,-5.558360369318171e-06,0.0014682681833389037,-0.0021283402120744694,-0.0014629614792395307,-0.0013659911201517028,-0.002210738041471465,-0.0036361748864895595,-0.0004764003955090351,0.0008822032437012764,-0.0035922388292433122,-0.0034634149892639335,-0.004208936654118805,-0.001579783889583897,-0.001209340178189327,-0.0026490414217577576,0.0019551022395917603,-0.0032353142623756295,-0.005658105950089501,-0.00048647907224457854,-0.0026954506867263267,-0.003395663302791548,-0.004147930502899461,-0.0006156502881716297,-0.004315058815371946,-0.0046183818260279366,-0.0038686600605414216,-0.0019702124308341295,-0.00662801049997516,-0.004005438827340259,-0.002896502360291301,-0.004519805029658654,-0.0039883698356805155,-0.0037762087807911887,-0.003111755743124881,-0.0037166726821686903,-0.006235675581080714,-0.0060426922960935625,-0.007087830667086374,-0.006400288274155355,-0.004595716910480614,-0.003867034171656184,-0.00736376576091798,4.9075834958012656e-05,-0.004545916841010812,-0.0028764331128129698,-0.002701445252542946,-0.0045136568609558305,-0.0031782169449893352,-0.004701013513742955,-0.004542951339245045,-0.004546720892179937,-0.0027059290494294984,-0.003991131013367238
+52.383561,4.971565,-0.003951833513337764,-0.005876878505631224,-0.0053700127785299406,-0.00517912318331,-0.004361134550099239,-0.0049225350383452085,-0.00772499671514876,-0.005405558360369318,-0.004231731816661095,-0.006728340212074469,-0.00666296147923953,-0.006465991120151703,-0.006810738041471465,-0.00893617488648956,-0.008576400395509035,-0.006117796756298723,-0.007792238829243313,-0.0077634149892639335,-0.0077089366541188056,-0.008079783889583898,-0.006009340178189327,-0.0075490414217577574,-0.002144897760408239,-0.006735314262375629,-0.009158105950089502,-0.0033864790722445783,-0.005195450686726326,-0.007195663302791548,-0.006647930502899461,-0.00471565028817163,-0.009315058815371946,-0.008018381826027937,-0.007568660060541421,-0.0072702124308341295,-0.01002801049997516,-0.00950543882734026,-0.008296502360291301,-0.008819805029658656,-0.009188369835680516,-0.008676208780791188,-0.007111755743124881,-0.00911667268216869,-0.011435675581080716,-0.009742692296093562,-0.011487830667086373,-0.010300288274155354,-0.009695716910480615,-0.010967034171656185,-0.01346376576091798,-0.006750924165041987,-0.011145916841010812,-0.00927643311281297,-0.007601445252542945,-0.011313656860955831,-0.008878216944989335,-0.009601013513742955,-0.011142951339245045,-0.010646720892179938,-0.008305929049429499,-0.009491131013367238
+52.383467,4.971876,0.0005481664866622362,-0.00047687850563122355,0.00012998722147005912,-0.0003791231833100001,-0.0023611345500992387,-0.0004225350383452085,-0.00222499671514876,-0.002005558360369318,-0.000331731816661096,-0.005328340212074469,-0.003262961479239531,-0.00016599112015170292,-0.002010738041471465,-0.004536174886489559,-0.0015764003955090352,-0.0008177967562987235,-0.002892238829243312,-0.002663414989263933,-0.003908936654118805,-0.002379783889583897,-0.0015093401781893273,-0.003749041421757757,-4.489776040823932e-05,-0.0012353142623756294,-0.005158105950089501,0.0005135209277554215,-0.0021954506867263267,-0.003095663302791548,-0.0034479305028994613,8.434971182837018e-05,-0.004015058815371946,-0.003918381826027936,-0.0032686600605414213,-0.0022702124308341294,-0.006228010499975161,-0.0052054388273402585,-0.003396502360291301,-0.005619805029658654,-0.005088369835680516,-0.007676208780791189,-0.0035117557431248807,-0.0024166726821686904,-0.012035675581080716,-0.006942692296093562,-0.0062878306670863734,-0.005900288274155355,-0.0027957169104806143,-0.004867034171656184,-0.00666376576091798,-0.0013509241650419873,-0.0034459168410108116,-0.005376433112812969,-0.005101445252542945,-0.005113656860955831,-0.0036782169449893353,-0.004501013513742954,-0.008342951339245045,-0.004346720892179937,-0.004205929049429498,-0.003291131013367238
+52.383414,4.971913,-0.002051833513337764,-0.004576878505631224,-0.003870012778529941,-0.00317912318331,-0.004161134550099239,-0.004422535038345208,-0.0065249967151487604,-0.005105558360369318,-0.003631731816661096,-0.006428340212074469,-0.00596296147923953,-0.004165991120151703,-0.006410738041471465,-0.00633617488648956,-0.0054764003955090354,-0.005417796756298723,-0.006192238829243313,-0.006163414989263934,-0.005808936654118805,-0.0045797838895838975,-0.004409340178189327,-0.006449041421757758,-0.003144897760408239,-0.00463531426237563,-0.007958105950089502,-0.0033864790722445783,-0.006395450686726326,-0.0064956633027915475,-0.007747930502899461,-0.0033156502881716296,-0.007215058815371946,-0.0069183818260279365,-0.006368660060541422,-0.00607021243083413,-0.00922801049997516,-0.008405438827340258,-0.006896502360291301,-0.008119805029658655,-0.008488369835680515,-0.0074762087807911885,-0.006811755743124881,-0.007516672682168691,-0.010835675581080716,-0.009542692296093563,-0.011487830667086373,-0.010200288274155355,-0.007095716910480615,-0.007667034171656184,-0.011663765760917981,-0.004750924165041987,-0.007745916841010812,-0.0071764331128129685,-0.0065014452525429456,-0.00881365686095583,-0.007478216944989335,-0.009501013513742954,-0.008742951339245044,-0.009046720892179937,-0.008105929049429498,-0.007691131013367238
+52.383406,4.971877,-0.0037518335133377633,-0.003976878505631224,-0.003870012778529941,-0.00397912318331,-0.0052611345500992385,-0.0052225350383452085,-0.00682499671514876,-0.005605558360369318,-0.002631731816661096,-0.00622834021207447,-0.006162961479239531,-0.003265991120151703,-0.0052107380414714655,-0.00563617488648956,-0.004576400395509036,-0.0031177967562987232,-0.004792238829243313,-0.005163414989263934,-0.004508936654118805,-0.003079783889583897,-0.003909340178189327,-0.006749041421757758,-0.0009448977604082395,-0.0023353142623756293,-0.006658105950089501,-0.0011864790722445786,-0.004995450686726326,-0.004995663302791548,-0.005647930502899461,-0.00341565028817163,-0.006415058815371946,-0.007718381826027937,-0.0059686600605414215,-0.005870212430834129,-0.009028010499975161,-0.008305438827340259,-0.006996502360291301,-0.009019805029658655,-0.008588369835680516,-0.0058762087807911895,-0.0066117557431248815,-0.00561667268216869,-0.010635675581080715,-0.008042692296093563,-0.009087830667086374,-0.008100288274155355,-0.0056957169104806145,-0.006767034171656184,-0.00976376576091798,-0.003850924165041988,-0.0057459168410108116,-0.006476433112812969,-0.006601445252542946,-0.007713656860955831,-0.007678216944989336,-0.008001013513742954,-0.008542951339245045,-0.008646720892179938,-0.008105929049429498,-0.007591131013367239
+52.383359,4.971937,-0.002051833513337764,-0.0038768785056312234,-0.002570012778529941,-0.00327912318331,-0.004361134550099239,-0.004022535038345209,-0.00542499671514876,-0.004305558360369318,-0.0017317318166610962,-0.00522834021207447,-0.004562961479239531,-0.002465991120151703,-0.005310738041471466,-0.0059361748864895595,-0.004376400395509035,-0.003717796756298723,-0.004792238829243313,-0.004963414989263934,-0.005208936654118805,-0.003379783889583897,-0.003909340178189327,-0.005549041421757757,-0.0017448977604082399,-0.00433531426237563,-0.007958105950089502,-0.0033864790722445783,-0.005795450686726327,-0.0064956633027915475,-0.006047930502899461,-0.00461565028817163,-0.007115058815371946,-0.007918381826027936,-0.006568660060541422,-0.005570212430834129,-0.00892801049997516,-0.00900543882734026,-0.006596502360291301,-0.008619805029658655,-0.008788369835680515,-0.006676208780791188,-0.007211755743124882,-0.0074166726821686905,-0.011635675581080715,-0.008742692296093563,-0.009987830667086374,-0.009200288274155356,-0.0066957169104806145,-0.008567034171656183,-0.01236376576091798,-0.005850924165041987,-0.00844591684101081,-0.0075764331128129695,-0.007601445252542945,-0.00831365686095583,-0.007878216944989335,-0.008201013513742954,-0.008842951339245045,-0.009546720892179937,-0.0072059290494294985,-0.007991131013367238
+52.383333,4.971975,-0.0031518335133377635,-0.0034768785056312236,-0.003870012778529941,-0.00247912318331,-0.0036611345500992386,-0.0036225350383452086,-0.00762499671514876,-0.004005558360369318,-0.004231731816661095,-0.00622834021207447,-0.005562961479239531,-0.002765991120151703,-0.004810738041471465,-0.006236174886489559,-0.005076400395509035,-0.004317796756298723,-0.0049922388292433124,-0.004563414989263934,-0.0040089366541188045,-0.001979783889583897,-0.0035093401781893267,-0.005749041421757758,-0.0019448977604082395,-0.003135314262375629,-0.0070581059500895,-0.0034864790722445786,-0.004495450686726327,-0.005195663302791548,-0.007447930502899461,-0.0049156502881716295,-0.008315058815371945,-0.007918381826027936,-0.006368660060541422,-0.006570212430834129,-0.009628010499975161,-0.010305438827340259,-0.006996502360291301,-0.009519805029658655,-0.008088369835680516,-0.006876208780791189,-0.007111755743124881,-0.005816672682168691,-0.010035675581080716,-0.010742692296093563,-0.009587830667086374,-0.008200288274155355,-0.0076957169104806145,-0.007767034171656184,-0.01036376576091798,-0.005850924165041987,-0.00844591684101081,-0.008076433112812968,-0.007501445252542946,-0.009813656860955831,-0.008378216944989334,-0.009801013513742953,-0.009142951339245045,-0.009746720892179938,-0.008905929049429499,-0.008791131013367239
+52.38329,4.971956,-0.0006518335133377637,-0.0027768785056312235,-0.002570012778529941,-0.0026791231833100003,-0.0016611345500992388,-0.0022225350383452084,-0.00392499671514876,-0.003005558360369318,-0.0012317318166610962,-0.004028340212074469,-0.00496296147923953,-0.002865991120151703,-0.003810738041471465,-0.004536174886489559,-0.0017764003955090353,-0.0029177967562987236,-0.0033922388292433126,-0.003663414989263933,-0.0036089366541188048,-0.003279783889583897,-0.0028093401781893266,-0.005749041421757758,-0.0014448977604082395,-0.003435314262375629,-0.008258105950089502,-0.002986479072244578,-0.005695450686726326,-0.004995663302791548,-0.006147930502899461,-0.00431565028817163,-0.007415058815371946,-0.008018381826027937,-0.00786866006054142,-0.00697021243083413,-0.008528010499975161,-0.008405438827340258,-0.005396502360291301,-0.007819805029658655,-0.007688369835680516,-0.0041762087807911885,-0.006811755743124881,-0.00631667268216869,-0.012335675581080716,-0.0070426922960935626,-0.008787830667086374,-0.008700288274155355,-0.006595716910480614,-0.008967034171656185,-0.009863765760917981,-0.003850924165041988,-0.007345916841010812,-0.00637643311281297,-0.004301445252542946,-0.00791365686095583,-0.009178216944989335,-0.008601013513742954,-0.010142951339245044,-0.010346720892179938,-0.0072059290494294985,-0.009091131013367238
+52.38328,4.971973,-0.003951833513337764,-0.0040768785056312234,-0.003370012778529941,-0.00297912318331,-0.0042611345500992385,-0.004122535038345208,-0.0062249967151487605,-0.004005558360369318,-0.001031731816661096,-0.004428340212074469,-0.004262961479239531,-0.001765991120151703,-0.004110738041471465,-0.00633617488648956,-0.004376400395509035,-0.0029177967562987236,-0.0026922388292433125,-0.003263414989263934,-0.0016089366541188043,-0.0006797838895838971,-0.0024093401781893273,-0.004449041421757757,0.00015510223959176034,-0.0018353142623756293,-0.005858105950089501,-0.0012864790722445785,-0.0028954506867263268,-0.003695663302791548,-0.005147930502899461,-0.002815650288171629,-0.005415058815371946,-0.007018381826027936,-0.004468660060541422,-0.0036702124308341296,-0.00722801049997516,-0.007405438827340258,-0.0051965023602913015,-0.007619805029658654,-0.006888369835680515,-0.005976208780791189,-0.0046117557431248814,-0.003916672682168691,-0.008435675581080715,-0.007242692296093562,-0.007287830667086374,-0.0055002882741553545,-0.004795716910480614,-0.005367034171656184,-0.007963765760917979,-0.0025509241650419874,-0.004545916841010812,-0.003976433112812969,-0.004901445252542946,-0.005813656860955831,-0.006278216944989336,-0.006701013513742955,-0.006842951339245045,-0.007346720892179937,-0.007005929049429498,-0.006391131013367238
+52.383174,4.972055,-0.0007518335133377639,-0.0034768785056312236,-0.000970012778529941,-0.00197912318331,-0.003161134550099239,-0.0032225350383452084,-0.00482499671514876,-0.002305558360369318,0.00016826818333890402,-0.0029283402120744697,-0.00536296147923953,-0.00026599112015170297,-0.004410738041471465,-0.0049361748864895595,-0.004276400395509036,-0.0036177967562987237,-0.0011922388292433125,-0.0019634149892639335,-0.0032089366541188046,-0.0005797838895838973,-0.0016093401781893271,-0.0033490414217577577,0.0006551022395917606,-0.0010353142623756293,-0.004858105950089501,0.0007135209277554214,-0.0019954506867263266,-0.002895663302791548,-0.004047930502899461,-0.0017156502881716296,-0.004515058815371946,-0.0046183818260279366,-0.0019686600605414214,-0.0024702124308341295,-0.005428010499975161,-0.005705438827340259,-0.0025965023602913012,-0.0057198050296586546,-0.006588369835680515,-0.0051762087807911885,-0.002711755743124881,-0.004216672682168691,-0.008535675581080714,-0.006242692296093562,-0.007287830667086374,-0.005600288274155355,-0.004295716910480614,-0.004567034171656184,-0.00716376576091798,-0.0023509241650419874,-0.005545916841010812,-0.0037764331128129695,-0.005001445252542945,-0.005813656860955831,-0.004078216944989336,-0.0062010135137429544,-0.004742951339245046,-0.005246720892179937,-0.0049059290494294985,-0.004391131013367238
+52.383182,4.971991,-0.0032518335133377638,-0.0034768785056312236,-0.002870012778529941,-0.0026791231833100003,-0.004861134550099239,-0.0059225350383452086,-0.0062249967151487605,-0.005005558360369318,-0.00023173181666109616,-0.0034283402120744693,-0.00466296147923953,-0.000365991120151703,-0.0042107380414714655,-0.0032361748864895594,-0.003776400395509035,-0.003017796756298724,-0.0015922388292433124,-0.0017634149892639334,-0.0014089366541188047,0.0006202161104161028,-0.0007093401781893269,-0.005649041421757758,0.0006551022395917606,-0.0024353142623756295,-0.0060581059500895,-0.0008864790722445787,-0.0028954506867263268,-0.005995663302791548,-0.005547930502899461,-0.0036156502881716296,-0.006215058815371946,-0.007318381826027936,-0.004368660060541422,-0.0052702124308341295,-0.007928010499975161,-0.007805438827340258,-0.005596502360291301,-0.008119805029658655,-0.007688369835680516,-0.004376208780791188,-0.005011755743124882,-0.0038166726821686906,-0.008735675581080715,-0.005442692296093563,-0.006387830667086374,-0.003700288274155355,-0.004495716910480614,-0.004667034171656184,-0.00706376576091798,-0.002850924165041988,-0.0047459168410108115,-0.0034764331128129696,-0.004801445252542945,-0.004713656860955831,-0.005078216944989336,-0.006301013513742955,-0.006842951339245045,-0.007146720892179937,-0.006505929049429498,-0.006991131013367239
+52.383115,4.972075,-0.0027518335133377633,-0.0020768785056312234,-0.0016700127785299408,-0.0026791231833100003,-0.003161134550099239,-0.0049225350383452085,-0.00602499671514876,-0.004905558360369318,-0.0012317318166610962,-0.0035283402120744696,-0.00596296147923953,-0.0016659911201517032,-0.004810738041471465,-0.005136174886489559,-0.004476400395509035,-0.003917796756298724,-0.0032922388292433123,-0.003963414989263933,-0.004208936654118805,-0.0031797838895838973,-0.001709340178189327,-0.0030490414217577574,0.0013551022395917604,-0.0029353142623756295,-0.006658105950089501,-0.0010864790722445784,-0.0040954506867263265,-0.003895663302791548,-0.003347930502899461,-0.0019156502881716296,-0.003915058815371946,-0.006318381826027937,-0.0021686600605414215,-0.0024702124308341295,-0.005628010499975161,-0.0055054388273402585,-0.005296502360291301,-0.006519805029658654,-0.006388369835680516,-0.004376208780791188,-0.004511755743124881,-0.00501667268216869,-0.006835675581080714,-0.005942692296093562,-0.006987830667086374,-0.0042002882741553555,-0.004795716910480614,-0.005667034171656184,-0.00916376576091798,-0.0024509241650419876,-0.0050459168410108115,-0.0026764331128129692,-0.0039014452525429457,-0.005313656860955831,-0.005878216944989335,-0.005501013513742954,-0.0053429513392450455,-0.005346720892179937,-0.0052059290494294985,-0.004991131013367238
+52.382829,4.972218,-0.004751833513337763,-0.006576878505631224,-0.007070012778529941,-0.00517912318331,-0.0062611345500992385,-0.006722535038345209,-0.00872499671514876,-0.006905558360369318,-0.004631731816661096,-0.00942834021207447,-0.008362961479239532,-0.007065991120151703,-0.0075107380414714655,-0.00963617488648956,-0.007676400395509035,-0.007817796756298723,-0.008592238829243311,-0.008163414989263934,-0.007108936654118805,-0.005479783889583897,-0.006309340178189327,-0.007949041421757758,-0.00434489776040824,-0.005835314262375629,-0.010058105950089501,-0.004586479072244579,-0.0060954506867263265,-0.007295663302791548,-0.007847930502899461,-0.00631565028817163,-0.009915058815371946,-0.010318381826027935,-0.007968660060541422,-0.00797021243083413,-0.011328010499975161,-0.011105438827340258,-0.0087965023602913,-0.010219805029658654,-0.009788369835680516,-0.010176208780791188,-0.00891175574312488,-0.008716672682168691,-0.012735675581080715,-0.011042692296093563,-0.013187830667086373,-0.012000288274155354,-0.010395716910480614,-0.011267034171656184,-0.012663765760917982,-0.007250924165041988,-0.009345916841010812,-0.00927643311281297,-0.008901445252542946,-0.01021365686095583,-0.009278216944989334,-0.010101013513742953,-0.009942951339245045,-0.010946720892179938,-0.009705929049429499,-0.009491131013367238
+52.38283,4.972219,-0.0037518335133377633,-0.006976878505631224,-0.006070012778529941,-0.00427912318331,-0.005361134550099239,-0.005722535038345209,-0.00802499671514876,-0.005705558360369318,-0.004031731816661097,-0.00872834021207447,-0.007462961479239531,-0.0060659911201517034,-0.0065107380414714654,-0.00893617488648956,-0.006976400395509035,-0.007217796756298724,-0.008692238829243313,-0.008163414989263934,-0.007508936654118805,-0.005679783889583897,-0.0064093401781893265,-0.008149041421757756,-0.00444489776040824,-0.005735314262375629,-0.0099581059500895,-0.004386479072244579,-0.006595450686726326,-0.007795663302791548,-0.008747930502899461,-0.00561565028817163,-0.010115058815371947,-0.009818381826027936,-0.008068660060541421,-0.008070212430834129,-0.01142801049997516,-0.011005438827340258,-0.0080965023602913,-0.010219805029658654,-0.009688369835680515,-0.010176208780791188,-0.00861175574312488,-0.009016672682168691,-0.012935675581080715,-0.011742692296093562,-0.012187830667086374,-0.011000288274155355,-0.009695716910480615,-0.011267034171656184,-0.012663765760917982,-0.006850924165041987,-0.009145916841010812,-0.008376433112812968,-0.008301445252542946,-0.00941365686095583,-0.008878216944989335,-0.010001013513742954,-0.009242951339245045,-0.010146720892179937,-0.009305929049429498,-0.009091131013367238
+52.382718,4.972268,-0.003351833513337763,-0.005276878505631224,-0.005770012778529941,-0.0033791231833100004,-0.003461134550099239,-0.0039225350383452085,-0.00642499671514876,-0.004705558360369318,-0.003231731816661096,-0.007628340212074469,-0.0067629614792395305,-0.005565991120151703,-0.006910738041471466,-0.00983617488648956,-0.008376400395509036,-0.009617796756298723,-0.009392238829243312,-0.009563414989263932,-0.009108936654118804,-0.007779783889583897,-0.0071093401781893275,-0.008549041421757757,-0.0047448977604082395,-0.0062353142623756295,-0.0098581059500895,-0.004386479072244579,-0.006695450686726326,-0.006295663302791548,-0.007847930502899461,-0.004515650288171629,-0.008815058815371946,-0.008218381826027936,-0.007468660060541422,-0.007170212430834129,-0.00892801049997516,-0.009705438827340259,-0.0081965023602913,-0.009519805029658655,-0.009488369835680516,-0.010476208780791188,-0.00831175574312488,-0.00881667268216869,-0.012935675581080715,-0.010642692296093562,-0.013687830667086374,-0.013000288274155355,-0.010495716910480615,-0.011867034171656184,-0.01286376576091798,-0.0075509241650419875,-0.010245916841010812,-0.00957643311281297,-0.007901445252542945,-0.01031365686095583,-0.009978216944989335,-0.009101013513742954,-0.009342951339245044,-0.009346720892179937,-0.008005929049429499,-0.008591131013367238
+52.382672,4.972303,-0.0016518335133377637,-0.0032768785056312235,-0.004170012778529941,-0.0023791231833100003,-0.0039611345500992386,-0.0042225350383452084,-0.00532499671514876,-0.004405558360369318,-0.0021317318166610964,-0.00622834021207447,-0.00606296147923953,-0.004865991120151703,-0.005710738041471465,-0.008136174886489558,-0.006676400395509035,-0.006717796756298723,-0.007592238829243312,-0.007463414989263934,-0.007108936654118805,-0.005279783889583897,-0.006109340178189327,-0.006949041421757758,-0.003144897760408239,-0.00563531426237563,-0.0093581059500895,-0.003586479072244579,-0.005595450686726326,-0.004895663302791548,-0.006047930502899461,-0.004115650288171629,-0.007715058815371946,-0.007018381826027936,-0.006168660060541422,-0.005870212430834129,-0.00752801049997516,-0.00790543882734026,-0.005796502360291301,-0.0070198050296586545,-0.007188369835680515,-0.0074762087807911885,-0.005711755743124882,-0.00671667268216869,-0.011135675581080716,-0.009242692296093563,-0.011287830667086374,-0.011100288274155354,-0.008695716910480614,-0.010367034171656183,-0.01196376576091798,-0.006950924165041988,-0.008645916841010811,-0.0071764331128129685,-0.007701445252542946,-0.007513656860955831,-0.008078216944989334,-0.007001013513742955,-0.007942951339245045,-0.008346720892179938,-0.007105929049429498,-0.007191131013367238
+52.382697,4.972016,-0.004851833513337764,-0.006476878505631224,-0.006770012778529941,-0.00537912318331,-0.005161134550099239,-0.005322535038345209,-0.00882499671514876,-0.006005558360369318,-0.005131731816661097,-0.009528340212074469,-0.00766296147923953,-0.007065991120151703,-0.009910738041471466,-0.011736174886489559,-0.007676400395509035,-0.011417796756298724,-0.010692238829243311,-0.011063414989263934,-0.009808936654118805,-0.009779783889583898,-0.007609340178189326,-0.011849041421757758,-0.00644489776040824,-0.008235314262375629,-0.0116581059500895,-0.0068864790722445775,-0.007495450686726326,-0.008895663302791547,-0.01114793050289946,-0.0072156502881716295,-0.010615058815371945,-0.009818381826027936,-0.01066866006054142,-0.01027021243083413,-0.01142801049997516,-0.012305438827340257,-0.0106965023602913,-0.011619805029658654,-0.012088369835680516,-0.011876208780791188,-0.011211755743124881,-0.011316672682168691,-0.016135675581080713,-0.015442692296093562,-0.016887830667086372,-0.014500288274155355,-0.010695716910480614,-0.013667034171656184,-0.01626376576091798,-0.010550924165041987,-0.013645916841010812,-0.013176433112812969,-0.011801445252542946,-0.013913656860955831,-0.013078216944989335,-0.013101013513742954,-0.012842951339245045,-0.013246720892179938,-0.012005929049429499,-0.011691131013367238
+52.382585,4.972329,-0.004951833513337764,-0.007476878505631224,-0.008370012778529941,-0.005779123183310001,-0.008261134550099239,-0.0072225350383452085,-0.00872499671514876,-0.00930555836036932,-0.0063317318166610966,-0.01002834021207447,-0.010262961479239531,-0.008765991120151702,-0.009710738041471465,-0.010036174886489559,-0.009876400395509036,-0.008217796756298723,-0.010192238829243312,-0.011963414989263933,-0.010208936654118804,-0.007679783889583898,-0.008309340178189328,-0.010349041421757757,-0.005344897760408239,-0.00893531426237563,-0.012358105950089501,-0.006186479072244578,-0.008595450686726326,-0.009095663302791547,-0.01144793050289946,-0.00821565028817163,-0.010415058815371947,-0.002718381826027936,-0.0011686600605414215,-0.0009702124308341295,-0.005628010499975161,-0.004605438827340259,-0.001896502360291301,-0.003919805029658654,-0.0006883698356805155,-0.0030762087807911886,-0.000511755743124881,-0.0004166726821686905,-0.008935675581080715,-0.0050426922960935625,-0.003487830667086374,-0.002300288274155355,-0.0009957169104806143,-0.005667034171656184,-0.0068637657609179805,0.0008490758349580126,-0.0033459168410108113,-0.004576433112812969,-0.002701445252542946,-0.003413656860955831,-0.003878216944989335,-0.005801013513742955,-0.004042951339245046,-0.0025467208921799373,-0.004105929049429498,-0.004891131013367239
+52.382428,4.972409,-0.0015518335133377639,-0.004976878505631224,-0.004570012778529941,-0.00157912318331,-0.003061134550099239,-0.0026225350383452086,-0.00452499671514876,-0.004105558360369318,-0.0018317318166610965,-0.005628340212074469,-0.00466296147923953,-0.002565991120151703,-0.0052107380414714655,-0.00563617488648956,-0.004076400395509035,-0.0045177967562987234,-0.004792238829243313,-0.004963414989263934,-0.0043089366541188045,-0.004479783889583897,-0.005209340178189327,-0.005749041421757758,-0.0017448977604082399,-0.0038353142623756293,-0.0077581059500895005,-0.003986479072244578,-0.0047954506867263266,-0.003895663302791548,-0.005547930502899461,-0.0036156502881716296,-0.0070150588153719455,0.0012816181739720637,0.004231339939458578,0.004029787569165871,0.0018719895000248394,0.00029456117265974136,0.0020034976397086987,0.003080194970341346,0.0019116301643194843,0.0015237912192088113,0.002188244256875119,0.0015833273178313095,-0.003435675581080715,-0.0011426922960935625,-0.0033878306670863736,-0.0012002882741553552,-0.0008957169104806144,-0.0018670341716561841,-0.00416376576091798,0.0021490758349580127,0.0007540831589891886,0.0003235668871870306,0.0018985547474570544,-0.000813656860955831,0.001021783055010665,0.0018989864862570456,0.0013570486607549547,0.0009532791078200628,0.0003940709505705015,0.0007088689866327619
+52.382378,4.972438,-0.0015518335133377639,-0.0035768785056312234,-0.004770012778529941,-0.00157912318331,-0.0025611345500992384,-0.0019225350383452085,-0.00012499671514876003,-0.0026055583603693186,-0.0019317318166610959,-0.00422834021207447,-0.004562961479239531,-0.003965991120151703,-0.005610738041471466,-0.00673617488648956,-0.005276400395509036,-0.003717796756298723,-0.004292238829243312,-0.0057634149892639335,-0.0040089366541188045,-0.003279783889583897,-0.0038093401781893266,-0.005349041421757758,-0.00304489776040824,-0.004035314262375629,-0.007658105950089501,-0.002586479072244579,-0.0040954506867263265,-0.005095663302791547,-0.004247930502899461,-0.0030156502881716297,-0.006315058815371946,-0.002318381826027936,-0.0010686600605414216,-7.02124308341295e-05,-0.0027280104999751606,-0.0028054388273402583,-0.000896502360291301,-0.004319805029658654,-0.0021883698356805156,-0.0022762087807911887,-0.0014117557431248809,-0.0014166726821686906,-0.005235675581080715,-0.003942692296093562,-0.005087830667086374,-0.003400288274155355,-0.0031957169104806144,-0.0062670341716561835,-0.0068637657609179805,-0.0014509241650419876,-0.0037459168410108115,-0.0024764331128129696,-0.002701445252542946,-0.0031136568609558307,-0.003878216944989335,-0.0036010135137429546,-0.0017429513392450452,-0.003646720892179937,-0.0031059290494294986,-0.002591131013367238
+52.382378,4.972341,-0.0028518335133377636,-0.004176878505631224,-0.006470012778529941,-0.00327912318331,-0.0032611345500992385,-0.003722535038345209,-0.006924996715148761,-0.004605558360369318,-0.005431731816661097,-0.009528340212074469,-0.005562961479239531,-0.002965991120151703,-0.005310738041471466,-0.00953617488648956,-0.005376400395509035,-0.004917796756298724,-0.004792238829243313,-0.007263414989263934,-0.005508936654118805,-0.003479783889583897,-0.006009340178189327,-0.0075490414217577574,-0.0063448977604082385,-0.0052353142623756295,-0.008358105950089501,-0.0024864790722445786,-0.004295450686726326,-0.008595663302791547,-0.00824793050289946,-0.0032156502881716294,-0.009715058815371946,-0.007618381826027936,-0.006268660060541421,-0.00607021243083413,-0.00752801049997516,-0.01020543882734026,-0.006896502360291301,-0.007519805029658654,-0.008188369835680515,-0.007676208780791189,-0.007011755743124882,-0.0071166726821686906,-0.008235675581080714,-0.010942692296093562,-0.009387830667086374,-0.010200288274155355,-0.008095716910480614,-0.010167034171656184,-0.01066376576091798,-0.005450924165041988,-0.007645916841010812,-0.01157643311281297,-0.0028014452525429454,-0.00971365686095583,-0.008278216944989335,-0.008101013513742953,-0.009842951339245044,-0.010046720892179938,-0.007805929049429498,-0.005591131013367238
+52.382297,4.972441,-0.001251833513337764,-0.005476878505631224,-0.004970012778529941,-0.0011791231833100002,-0.0029611345500992385,-0.003722535038345209,-0.0036249967151487598,-0.003105558360369318,-0.0021317318166610964,-0.005928340212074469,-0.00566296147923953,-0.005765991120151703,-0.004410738041471465,-0.005836174886489559,-0.004476400395509035,-0.004917796756298724,-0.006192238829243313,-0.006363414989263933,-0.005908936654118805,-0.004379783889583897,-0.004609340178189327,-0.0075490414217577574,-0.00414489776040824,-0.0052353142623756295,-0.0090581059500895,-0.0014864790722445786,-0.004895450686726326,-0.005095663302791547,-0.004347930502899461,-0.00271565028817163,-0.008015058815371946,-0.006018381826027937,-0.004568660060541422,-0.00567021243083413,-0.007728010499975161,-0.007205438827340259,-0.006696502360291301,-0.007919805029658654,-0.008288369835680515,-0.006876208780791189,-0.0066117557431248815,-0.005516672682168691,-0.010035675581080716,-0.007542692296093562,-0.010387830667086373,-0.008400288274155355,-0.007095716910480615,-0.008367034171656185,-0.011563765760917982,-0.005250924165041988,-0.006545916841010812,-0.006476433112812969,-0.007101445252542946,-0.007213656860955831,-0.006178216944989335,-0.006101013513742955,-0.006342951339245046,-0.008246720892179937,-0.006105929049429498,-0.007091131013367238
+52.382277,4.972488,-0.0022518335133377637,-0.006876878505631224,-0.005870012778529941,-0.00257912318331,-0.004061134550099239,-0.0036225350383452086,-0.00732499671514876,-0.003705558360369318,-0.0034317318166610963,-0.005728340212074469,-0.004862961479239531,-0.002465991120151703,-0.005410738041471465,-0.00663617488648956,-0.005076400395509035,-0.004017796756298723,-0.0036922388292433125,-0.004163414989263934,-0.0035089366541188045,-0.002579783889583897,-0.0005093401781893273,-0.006549041421757757,-0.0025448977604082394,-0.0025353142623756294,-0.0054581059500895006,-0.0021864790722445787,-0.0024954506867263266,-0.005895663302791548,-0.00794793050289946,-0.0018156502881716298,-0.0070150588153719455,-0.007118381826027935,-0.006768660060541422,-0.005770212430834129,-0.009128010499975161,-0.009305438827340258,-0.005396502360291301,-0.007619805029658654,-0.008388369835680516,-0.0071762087807911885,-0.006411755743124882,-0.00881667268216869,-0.012035675581080716,-0.009842692296093563,-0.008187830667086374,-0.007700288274155355,-0.0066957169104806145,-0.009867034171656184,-0.01066376576091798,-0.004550924165041987,-0.009845916841010811,-0.008276433112812969,-0.007601445252542945,-0.01081365686095583,-0.008178216944989335,-0.010201013513742955,-0.009042951339245044,-0.007946720892179937,-0.008605929049429499,-0.009991131013367238
+52.382005,4.972615,-0.0031518335133377635,-0.006876878505631224,-0.006270012778529941,-0.0034791231833099998,-0.0035611345500992393,-0.0007225350383452086,-0.009524996715148759,-0.008605558360369319,-0.006031731816661097,-0.01172834021207447,-0.010362961479239532,-0.008065991120151703,-0.008310738041471465,-0.00933617488648956,-0.008576400395509035,-0.008617796756298724,-0.005292238829243312,-0.0054634149892639336,-0.005708936654118805,-0.002879783889583897,-0.0032093401781893268,-0.004349041421757758,-0.0038448977604082393,-0.00463531426237563,-0.008558105950089502,-0.0033864790722445783,-0.004895450686726326,-0.007795663302791548,-0.008147930502899461,-0.00681565028817163,-0.010215058815371946,-0.009618381826027936,-0.00876866006054142,-0.008970212430834129,-0.01142801049997516,-0.011205438827340257,-0.0090965023602913,-0.010719805029658655,-0.010388369835680516,-0.00907620878079119,-0.00901175574312488,-0.00851667268216869,-0.011135675581080716,-0.009342692296093563,-0.010087830667086373,-0.010200288274155355,-0.008495716910480615,-0.008667034171656185,-0.011063765760917981,-0.004350924165041988,-0.007645916841010812,-0.00727643311281297,-0.007601445252542945,-0.008413656860955831,-0.007478216944989335,-0.009101013513742954,-0.009142951339245045,-0.009046720892179937,-0.007805929049429498,-0.007891131013367239
+52.382017,4.972324,-0.0006518335133377637,-0.006976878505631224,-0.004770012778529941,-0.0040791231833100005,-0.0029611345500992385,-0.004322535038345209,-0.0052249967151487605,-0.003705558360369318,-0.0024317318166610963,-0.005428340212074469,-0.002262961479239531,-0.005365991120151703,-0.0036107380414714648,-0.00573617488648956,-0.0061764003955090355,-0.005017796756298723,-0.0066922388292433126,-0.007863414989263934,-0.010408936654118805,-0.001779783889583897,-0.003309340178189327,-0.003749041421757757,-0.004544897760408239,-0.00433531426237563,-0.0077581059500895005,-0.005086479072244578,-0.005895450686726326,-0.0074956633027915475,-0.007047930502899461,-0.0023156502881716296,-0.007615058815371946,-0.005318381826027936,-0.0031686600605414215,-0.00437021243083413,-0.00642801049997516,-0.00790543882734026,-0.005096502360291301,-0.007919805029658654,-0.009688369835680515,-0.006176208780791189,-0.010111755743124881,-0.0016166726821686904,-0.002235675581080715,-0.008342692296093563,-0.006087830667086374,-0.006700288274155355,-0.009895716910480615,-0.011267034171656184,-0.015563765760917982,-0.009050924165041987,-0.009045916841010812,-0.009176433112812969,-0.004301445252542946,-0.007313656860955831,-0.007278216944989336,-0.008601013513742954,-0.007842951339245044,-0.005646720892179937,-0.005405929049429498,-0.006591131013367238
+52.38193,4.972633,-0.001251833513337764,-0.004476878505631224,-0.004970012778529941,-0.0009791231833100001,-0.002761134550099239,-0.004022535038345209,-0.00482499671514876,-0.003405558360369318,-0.002731731816661096,-0.00522834021207447,-0.005162961479239531,-0.004565991120151703,-0.004410738041471465,-0.0059361748864895595,-0.004776400395509035,-0.006017796756298723,-0.006292238829243312,-0.007863414989263934,-0.006508936654118805,-0.005479783889583897,-0.005309340178189327,-0.005449041421757758,0.010655102239591761,-0.004035314262375629,-0.007658105950089501,-0.0028864790722445788,-0.0032954506867263265,-0.004695663302791547,-0.004347930502899461,-0.00401565028817163,-0.006815058815371946,-0.007218381826027936,-0.003968660060541421,-0.005170212430834129,-0.00752801049997516,-0.006105438827340258,-0.004696502360291301,-0.005419805029658654,-0.005988369835680516,-0.005076208780791189,-0.005111755743124881,-0.003916672682168691,-0.005835675581080715,-0.005642692296093562,-0.008987830667086374,-0.009500288274155355,-0.007495716910480614,-0.006767034171656184,-0.00886376576091798,-0.0027509241650419875,-0.005345916841010811,-0.0038764331128129698,-0.004101445252542945,-0.005313656860955831,-0.005178216944989335,-0.005001013513742955,-0.003942951339245045,-0.004646720892179937,-0.0038059290494294987,-0.0044911310133672385
+52.381849,4.972667,-0.0018518335133377638,-0.008076878505631224,-0.005870012778529941,-0.0027791231833100005,-0.0033611345500992387,-0.0030225350383452083,-0.00552499671514876,-0.003405558360369318,-0.002731731816661096,-0.006028340212074469,-0.00506296147923953,-0.003565991120151703,-0.004410738041471465,-0.00633617488648956,-0.004776400395509035,-0.0062177967562987236,-0.006492238829243313,-0.0057634149892639335,-0.005208936654118805,-0.0031797838895838973,-0.004309340178189327,-0.005549041421757757,-0.002444897760408239,-0.0036353142623756296,-0.007458105950089501,-0.0008864790722445787,-0.0035954506867263264,-0.004995663302791548,-0.006147930502899461,-0.0019156502881716296,-0.0060150588153719455,-0.0049183818260279365,-0.0049686600605414214,-0.004870212430834129,-0.007128010499975161,-0.0075054388273402585,-0.004996502360291301,-0.006819805029658654,-0.007188369835680515,-0.005576208780791189,-0.004811755743124881,-0.00501667268216869,-0.008735675581080715,-0.008942692296093563,-0.009187830667086373,-0.008300288274155356,-0.006595716910480614,-0.006567034171656183,-0.00866376576091798,-0.0022509241650419875,-0.005545916841010812,-0.00407643311281297,-0.005301445252542946,-0.006113656860955831,-0.0055782169449893355,-0.007501013513742954,-0.006142951339245046,-0.006446720892179937,-0.006505929049429498,-0.006891131013367238
+52.381751,4.972741,-0.006351833513337763,-0.010176878505631225,-0.009770012778529942,-0.006579123183310001,-0.00766113455009924,-0.007122535038345208,-0.00942499671514876,-0.007705558360369318,-0.005631731816661097,-0.01022834021207447,-0.009262961479239532,-0.008165991120151702,-0.009010738041471466,-0.01143617488648956,-0.009976400395509035,-0.011417796756298724,-0.010892238829243311,-0.009863414989263932,-0.009208936654118805,-0.007879783889583897,-0.007609340178189326,-0.009749041421757757,-0.006644897760408238,-0.00773531426237563,-0.011458105950089502,-0.005186479072244579,-0.007595450686726327,-0.009495663302791547,-0.00974793050289946,-0.006715650288171629,-0.010815058815371946,-0.010118381826027936,-0.00926866006054142,-0.008970212430834129,-0.011028010499975162,-0.012105438827340258,-0.0091965023602913,-0.012219805029658654,-0.011288369835680516,-0.011776208780791188,-0.01051175574312488,-0.009716672682168692,-0.014635675581080716,-0.013142692296093562,-0.014187830667086374,-0.014000288274155354,-0.011795716910480614,-0.013067034171656184,-0.01416376576091798,-0.008250924165041987,-0.010345916841010811,-0.010276433112812969,-0.010301445252542946,-0.011513656860955832,-0.010078216944989334,-0.011601013513742955,-0.010642951339245045,-0.010646720892179938,-0.010905929049429499,-0.01069113101336724
+52.381742,4.972731,4.816648666223621e-05,-0.0037768785056312235,-0.003070012778529941,-0.0011791231833100002,-0.0015611345500992386,-0.0020225350383452083,-0.00412499671514876,-0.002405558360369318,-0.00023173181666109616,-0.00522834021207447,-0.003662961479239531,-0.0033659911201517033,-0.003710738041471465,-0.005136174886489559,-0.004876400395509036,-0.005917796756298724,-0.006192238829243313,-0.005363414989263933,-0.0036089366541188048,-0.002879783889583897,-0.0025093401781893267,-0.0042490414217577575,-0.0009448977604082395,-0.0016353142623756292,-0.005558105950089501,0.0007135209277554214,-0.0012954506867263265,-0.002795663302791548,-0.003347930502899461,-0.0006156502881716297,-0.003915058815371946,-0.004118381826027936,-0.0024686600605414214,-0.0024702124308341295,-0.00432801049997516,-0.005305438827340259,-0.0025965023602913012,-0.004819805029658654,-0.0052883698356805155,-0.004476208780791189,-0.003911755743124881,-0.0038166726821686906,-0.009135675581080716,-0.006242692296093562,-0.007687830667086374,-0.007400288274155355,-0.006095716910480615,-0.006467034171656184,-0.00826376576091798,-0.0017509241650419875,-0.004545916841010812,-0.0034764331128129696,-0.0034014452525429452,-0.004813656860955831,-0.0042782169449893355,-0.0049010135137429545,-0.0037429513392450453,-0.004546720892179937,-0.0036059290494294986,-0.004091131013367238
+52.381682,4.972752,-0.0015518335133377639,-0.006876878505631224,-0.0053700127785299406,-0.00197912318331,-0.0026611345500992386,-0.0027225350383452084,-0.00482499671514876,-0.003405558360369318,-0.0021317318166610964,-0.004128340212074469,-0.004162961479239531,-0.004465991120151703,-0.0039107380414714656,-0.00413617488648956,-0.003576400395509035,-0.0028177967562987233,-0.004592238829243312,-0.004163414989263934,-0.0034089366541188043,-0.0013797838895838973,-0.0021093401781893274,-0.004849041421757757,-0.0012448977604082394,-0.0030353142623756294,-0.0070581059500895,-0.0006864790722445786,-0.0028954506867263268,-0.004395663302791547,-0.004547930502899461,-0.0033156502881716296,-0.0060150588153719455,-0.006418381826027936,-0.004368660060541422,-0.004470212430834129,-0.006528010499975161,-0.007405438827340258,-0.004796502360291301,-0.006819805029658654,-0.0062883698356805155,-0.005976208780791189,-0.0053117557431248815,-0.00531667268216869,-0.008335675581080716,-0.008042692296093563,-0.007287830667086374,-0.007100288274155355,-0.005495716910480614,-0.0072670341716561835,-0.00976376576091798,-0.0023509241650419874,-0.005645916841010811,-0.005376433112812969,-0.005201445252542946,-0.006713656860955831,-0.005378216944989336,-0.005801013513742955,-0.006742951339245046,-0.005546720892179937,-0.005305929049429498,-0.006391131013367238
+52.381648,4.972782,0.0024481664866622364,-0.0021768785056312237,-0.0024700127785299408,0.0005208768166899998,0.0006388654499007614,0.0006774649616547915,-0.00332499671514876,-0.00020555836036931826,0.002468268183338904,-0.0010283402120744695,-0.0015629614792395307,0.001134008879848297,-0.0005107380414714651,-0.0006361748864895595,-0.0011764003955090352,-0.002717796756298724,-0.0018922388292433126,-0.0016634149892639336,-0.00010893665411880449,0.001020216110416103,0.001390659821810673,-0.0028490414217577573,0.0021551022395917604,0.0007646857376243705,-0.002458105950089501,0.0029135209277554213,0.0013045493132736734,-9.566330279154789e-05,-0.0012479305028994612,0.0016843497118283703,-0.0016150588153719463,-0.0022183818260279363,-0.0006686600605414213,-0.0009702124308341295,-0.0027280104999751606,-0.004005438827340259,-0.000896502360291301,-0.003219805029658654,-0.0031883698356805156,-0.0013762087807911887,-0.002011755743124881,-0.0012166726821686905,-0.0040356755810807155,-0.0032426922960935626,-0.0029878306670863735,-0.0028002882741553553,-0.002395716910480614,-0.002867034171656184,-0.00526376576091798,0.0007490758349580125,-0.0018459168410108115,-0.0008764331128129693,-0.0009014452525429456,-0.0026136568609558307,-0.002378216944989335,-0.002201013513742955,-0.002642951339245045,-0.0017467208921799371,-0.0012059290494294986,-0.001091131013367238
+52.381585,4.972798,0.00014816648666223626,-0.005276878505631224,-0.002870012778529941,-0.0001791231833100002,-0.00016113455009923868,-0.0020225350383452083,-0.00392499671514876,-0.002005558360369318,-0.0005317318166610961,-0.00362834021207447,-0.003162961479239531,-0.001265991120151703,-0.003310738041471465,-0.0049361748864895595,-0.003576400395509035,-0.005917796756298724,-0.004292238829243312,-0.003263414989263934,-0.0032089366541188046,-0.0021797838895838972,-0.001909340178189327,-0.004449041421757757,-0.0011448977604082396,-0.0019353142623756295,-0.005558105950089501,0.00021352092775542134,-0.0014954506867263266,-0.002395663302791548,-0.005147930502899461,-0.0011156502881716297,-0.004015058815371946,-0.003618381826027936,-0.0022686600605414213,-0.0022702124308341294,-0.00432801049997516,-0.005905438827340259,-0.003396502360291301,-0.005519805029658654,-0.004588369835680515,-0.004576208780791189,-0.002411755743124881,-0.0035166726821686907,-0.008535675581080714,-0.0073426922960935625,-0.006987830667086374,-0.0068002882741553545,-0.004995716910480614,-0.0075670341716561835,-0.00836376576091798,-0.0009509241650419876,-0.003945916841010812,-0.002976433112812969,-0.0031014452525429453,-0.0036136568609558307,-0.003378216944989335,-0.004301013513742955,-0.003542951339245045,-0.003646720892179937,-0.0035059290494294988,-0.003691131013367238
+52.381477,4.972817,0.0020481664866622363,0.0009231214943687763,-0.003970012778529941,-0.0001791231833100002,-0.0004611345500992387,-0.0004225350383452085,-0.00412499671514876,-0.0022055583603693184,-0.0007317318166610962,-0.0017283402120744696,-0.003862961479239531,-0.001265991120151703,-0.002110738041471465,-0.0049361748864895595,-0.003676400395509035,-0.006417796756298723,-0.0046922388292433125,-0.004563414989263934,-0.0028089366541188044,-0.003079783889583897,-0.001709340178189327,-0.004349041421757758,-0.0014448977604082395,-0.0014353142623756295,-0.006658105950089501,0.0011135209277554213,-0.0003954506867263266,-0.002595663302791548,-0.003847930502899461,-0.0003156502881716298,-0.0050150588153719455,-0.004418381826027936,-0.0031686600605414215,-0.0026702124308341296,-0.0030280104999751605,-0.005105438827340259,-0.0035965023602913013,-0.007119805029658654,-0.004588369835680515,-0.003676208780791189,-0.004511755743124881,-0.004216672682168691,-0.004135675581080715,-0.0014426922960935626,-0.007287830667086374,-0.006400288274155355,-0.005195716910480614,-0.006367034171656184,-0.00786376576091798,-0.0027509241650419875,-0.0047459168410108115,-0.005376433112812969,-0.004001445252542945,-0.004613656860955831,-0.004078216944989336,-0.004201013513742954,-0.0037429513392450453,-0.004446720892179937,-0.0036059290494294986,-0.0037911310133672384
+52.381422,4.972875,-5.1833513337763834e-05,-0.005476878505631224,-0.004170012778529941,-0.0006791231833100002,-0.0010611345500992388,-0.00032253503834520845,-0.00452499671514876,-0.0019055583603693183,-0.0019317318166610959,-0.00522834021207447,-0.00406296147923953,-0.004165991120151703,-0.004310738041471466,-0.007136174886489559,-0.004976400395509035,-0.008217796756298723,-0.007192238829243313,-0.006163414989263934,-0.007208936654118805,-0.006179783889583897,-0.005609340178189327,-0.006949041421757758,-0.0038448977604082393,-0.004535314262375629,-0.0084581059500895,-0.0017864790722445785,-0.0035954506867263264,-0.005695663302791547,-0.007047930502899461,-0.00151565028817163,-0.0070150588153719455,-0.005018381826027936,-0.005068660060541422,-0.0049702124308341296,-0.006528010499975161,-0.007705438827340259,-0.004796502360291301,-0.007219805029658654,-0.006588369835680515,-0.008076208780791188,-0.005911755743124881,-0.00661667268216869,-0.010535675581080716,-0.010442692296093563,-0.010187830667086374,-0.011500288274155356,-0.008795716910480615,-0.010267034171656184,-0.01076376576091798,-0.005050924165041987,-0.008245916841010812,-0.006276433112812969,-0.004701445252542945,-0.007313656860955831,-0.005778216944989335,-0.006801013513742955,-0.006242951339245045,-0.005646720892179937,-0.005105929049429498,-0.004791131013367238
+52.381317,4.972947,0.0011481664866622363,-0.005576878505631224,-0.0036700127785299413,-0.00027912318331000025,-0.0007611345500992386,-0.0011225350383452085,-0.0029249967151487597,-0.0010055583603693183,-0.0005317318166610961,-0.0027283402120744696,-0.004162961479239531,-0.0018659911201517028,-0.005310738041471466,-0.0046361748864895596,-0.004576400395509036,-0.006117796756298723,-0.006192238829243313,-0.005963414989263934,-0.0063089366541188045,-0.005979783889583897,-0.002709340178189327,-0.003749041421757757,-0.0010448977604082393,-0.0022353142623756294,-0.006558105950089501,-8.647907224457857e-05,-0.0022954506867263265,-0.002895663302791548,-0.0036479305028994614,-0.0010156502881716299,-0.0038150588153719463,-0.002418381826027936,-0.0017686600605414213,-0.0024702124308341295,-0.00502801049997516,-0.005905438827340259,-0.003696502360291301,-0.004219805029658654,-0.0042883698356805154,-0.004376208780791188,-0.003611755743124881,-0.004916672682168691,-0.008135675581080715,-0.007642692296093562,-0.007987830667086374,-0.009000288274155355,-0.005995716910480614,-0.008367034171656185,-0.007963765760917979,-0.0034509241650419876,-0.0050459168410108115,-0.005676433112812969,-0.0034014452525429452,-0.004613656860955831,-0.004778216944989335,-0.005501013513742954,-0.003542951339245045,-0.0049467208921799375,-0.0029059290494294985,-0.004591131013367238
+52.381319,4.972879,-5.1833513337763834e-05,-0.006676878505631224,-0.005870012778529941,-0.00327912318331,-0.003161134550099239,-0.0023225350383452087,-0.004924996715148761,-0.004005558360369318,-0.002731731816661096,-0.00492834021207447,-0.00496296147923953,-0.004365991120151703,-0.005310738041471466,-0.00703617488648956,-0.005576400395509036,-0.007417796756298724,-0.004192238829243312,-0.004363414989263933,-0.0030089366541188045,-0.002479783889583897,-0.0021093401781893274,-0.004949041421757758,-0.0014448977604082395,-0.0029353142623756295,-0.006258105950089501,-0.00048647907224457854,-0.0019954506867263266,-0.005795663302791547,-0.004147930502899461,-0.0019156502881716296,-0.006115058815371946,-0.0062183818260279355,-0.004468660060541422,-0.0052702124308341295,-0.00612801049997516,-0.007005438827340259,-0.006296502360291301,-0.007419805029658654,-0.006988369835680516,-0.007576208780791188,-0.004711755743124882,-0.0061166726821686905,-0.009035675581080715,-0.008942692296093563,-0.009187830667086373,-0.008300288274155356,-0.006895716910480614,-0.008267034171656184,-0.010463765760917981,-0.004550924165041987,-0.004645916841010811,-0.0022764331128129695,-0.0032014452525429456,-0.005613656860955831,-0.005478216944989335,-0.005201013513742954,-0.005242951339245045,-0.005046720892179937,-0.0033059290494294987,-0.004091131013367238
+52.381301,4.972669,-0.0022518335133377637,-0.008876878505631224,-0.005970012778529941,-0.0036791231833100003,-0.0033611345500992387,-0.0035225350383452083,-0.00632499671514876,-0.004705558360369318,-0.002931731816661096,-0.007728340212074469,-0.008062961479239532,-0.006165991120151703,-0.007010738041471465,-0.00703617488648956,-0.005376400395509035,-0.008217796756298723,-0.006092238829243313,-0.004263414989263934,-0.007108936654118805,-0.002579783889583897,-0.002009340178189327,-0.006949041421757758,-0.0038448977604082393,0.0003646857376243705,-0.008658105950089501,-0.0014864790722445786,-0.0035954506867263264,-0.005295663302791548,-0.007347930502899461,-0.003115650288171629,-0.007515058815371946,-0.006718381826027936,-0.006068660060541422,-0.005770212430834129,-0.00862801049997516,-0.010005438827340257,-0.0074965023602913015,-0.009719805029658656,-0.008588369835680516,-0.011176208780791189,-0.0063117557431248816,-0.0064166726821686905,-0.011235675581080715,-0.008542692296093562,-0.01988783066708637,-0.011000288274155355,-0.009095716910480615,-0.011267034171656184,-0.011463765760917979,-0.008050924165041986,-0.009645916841010812,-0.007676433112812969,-0.007501445252542946,-0.01031365686095583,-0.008078216944989334,-0.009401013513742954,-0.009442951339245045,-0.008646720892179938,-0.007705929049429499,-0.008991131013367239
+52.381243,4.972973,-0.0002518335133377637,-0.0018768785056312237,-0.0024700127785299408,-0.0009791231833100001,-0.00036113455009923866,-0.0008225350383452084,-0.0038249967151487603,-0.002005558360369318,0.0017682681833389039,-0.00432834021207447,-0.0035629614792395308,-0.002965991120151703,-0.004010738041471465,-0.006136174886489559,-0.004976400395509035,-0.0065177967562987235,-0.006092238829243313,-0.005263414989263934,-0.007108936654118805,-0.005279783889583897,-0.0038093401781893266,-0.005849041421757757,-0.00304489776040824,-0.0039353142623756296,-0.0070581059500895,-0.0012864790722445785,-0.0023954506867263268,-0.004595663302791548,-0.004347930502899461,-0.0009156502881716296,-0.0050150588153719455,-0.004518381826027936,-0.0038686600605414216,-0.0036702124308341296,-0.0038280104999751604,-0.006305438827340259,-0.004396502360291301,-0.006619805029658654,-0.005588369835680515,-0.006676208780791188,-0.004511755743124881,-0.004516672682168691,-0.009535675581080715,-0.007742692296093563,-0.009187830667086373,-0.009100288274155354,-0.0066957169104806145,-0.009367034171656184,-0.00976376576091798,-0.003950924165041987,-0.006645916841010811,-0.008276433112812969,-0.004001445252542945,-0.006813656860955831,-0.005378216944989336,-0.005301013513742955,-0.004142951339245046,-0.005246720892179937,-0.0037059290494294984,-0.003691131013367238
+52.381201,4.972985,-0.0002518335133377637,-0.005376878505631224,-0.005270012778529941,-0.00127912318331,-0.0008611345500992387,-0.0014225350383452085,-0.00512499671514876,-0.002705558360369318,-0.0024317318166610963,-0.0061283402120744694,-0.00536296147923953,-0.005065991120151703,-0.005010738041471465,-0.00903617488648956,-0.006376400395509035,-0.008717796756298723,-0.008092238829243313,-0.006863414989263934,-0.0077089366541188056,-0.006379783889583897,-0.004709340178189327,-0.006049041421757758,-0.00434489776040824,-0.004735314262375629,-0.0078581059500895,-0.0010864790722445784,-0.0032954506867263265,-0.004295663302791548,-0.006847930502899461,-0.0017156502881716296,-0.006115058815371946,-0.003918381826027936,-0.003668660060541421,-0.0036702124308341296,-0.00442801049997516,-0.0075054388273402585,-0.004896502360291301,-0.006619805029658654,-0.005988369835680516,-0.006776208780791189,-0.004211755743124881,-0.0061166726821686905,-0.010135675581080715,-0.008242692296093562,-0.010287830667086374,-0.011100288274155354,-0.007295716910480614,-0.010367034171656183,-0.01006376576091798,-0.004650924165041988,-0.006245916841010812,-0.00637643311281297,-0.005301445252542946,-0.007113656860955831,-0.005678216944989336,-0.006001013513742955,-0.0056429513392450455,-0.0049467208921799375,-0.004005929049429498,-0.0054911310133672385
+52.381173,4.973018,-0.004651833513337764,-0.012076878505631224,-0.007370012778529941,-0.0036791231833100003,-0.004561134550099239,-0.003722535038345209,-0.00792499671514876,-0.004005558360369318,-0.0037317318166610962,-0.009828340212074469,-0.00696296147923953,-0.006265991120151703,-0.006310738041471466,-0.01023617488648956,-0.0071764003955090356,-0.009317796756298723,-0.007692238829243313,-0.007663414989263934,-0.008508936654118804,-0.007479783889583897,-0.007009340178189326,-0.008549041421757757,-0.00584489776040824,-0.005735314262375629,-0.009458105950089502,-0.0024864790722445786,-0.004395450686726326,-0.006595663302791548,-0.00824793050289946,-0.0036156502881716296,-0.008915058815371945,-0.005418381826027937,-0.006368660060541422,-0.005870212430834129,-0.00942801049997516,-0.010505438827340258,-0.005396502360291301,-0.010419805029658655,-0.007888369835680515,-0.007976208780791189,-0.006711755743124882,-0.005916672682168691,-0.011035675581080715,-0.010842692296093562,-0.008987830667086374,-0.011000288274155355,-0.008295716910480614,-0.010667034171656183,-0.00966376576091798,-0.0055509241650419875,-0.008145916841010811,-0.0075764331128129695,-0.0065014452525429456,-0.00851365686095583,-0.0075782169449893355,-0.006801013513742955,-0.007742951339245046,-0.007446720892179937,-0.006705929049429498,-0.006991131013367239
+52.381136,4.972965,4.816648666223621e-05,-0.0021768785056312237,-0.003070012778529941,-0.00047912318331000013,-0.0017611345500992387,-0.0004225350383452085,-0.0038249967151487603,-0.0012055583603693182,-0.0009317318166610963,-0.004728340212074469,-0.002762961479239531,-0.002265991120151703,-0.003210738041471465,-0.00563617488648956,-0.003776400395509035,-0.0035177967562987234,-0.003992238829243312,-0.0016634149892639336,-0.0026089366541188043,-0.002479783889583897,-0.0016093401781893271,-0.0014490414217577575,-0.0004448977604082395,-0.0014353142623756295,-0.004858105950089501,0.0008135209277554214,-0.0015954506867263268,-0.0008956633027915479,-0.002247930502899461,0.00028434971182837027,-0.004315058815371946,-0.003718381826027936,-0.0017686600605414213,-0.0011702124308341293,-0.00522801049997516,-0.004305438827340259,-0.002996502360291301,-0.004919805029658654,-0.004488369835680515,-0.004576208780791189,-0.002411755743124881,-0.0035166726821686907,-0.005735675581080716,-0.0060426922960935625,-0.007087830667086374,-0.007200288274155355,-0.005195716910480614,-0.006667034171656184,-0.00756376576091798,-0.0020509241650419874,-0.004145916841010812,-0.0022764331128129695,-0.0029014452525429456,-0.004213656860955831,-0.004078216944989336,-0.004401013513742955,-0.0043429513392450455,-0.004346720892179937,-0.0026059290494294986,-0.004291131013367238
+52.381072,4.973043,-0.0028518335133377636,-0.007176878505631224,-0.006970012778529941,-0.00327912318331,-0.003761134550099239,-0.0034225350383452085,-0.006924996715148761,-0.0039055583603693177,-0.0037317318166610962,-0.0068283402120744695,-0.004562961479239531,-0.004165991120151703,-0.004910738041471466,-0.00793617488648956,-0.0051764003955090355,-0.007117796756298723,-0.006292238829243312,-0.005563414989263934,-0.005208936654118805,-0.004379783889583897,-0.005409340178189327,-0.0038490414217577573,-0.0029448977604082396,-0.003435314262375629,-0.0077581059500895005,-0.0007864790722445785,-0.003495450686726327,-0.004895663302791548,-0.006047930502899461,-0.005815650288171629,-0.006715058815371946,-0.005918381826027936,-0.0025686600605414212,-0.0042702124308341294,-0.00472801049997516,-0.007605438827340259,-0.005696502360291301,-0.007119805029658654,-0.007088369835680516,-0.008676208780791188,-0.005011755743124882,-0.00631667268216869,-0.009135675581080716,-0.007642692296093562,-0.008887830667086373,-0.010500288274155355,-0.007095716910480615,-0.008767034171656184,-0.00956376576091798,-0.002950924165041987,-0.006445916841010812,-0.0055764331128129695,-0.005101445252542945,-0.007413656860955831,-0.005778216944989335,-0.007101013513742955,-0.004942951339245045,-0.006346720892179937,-0.005605929049429498,-0.006091131013367238
+52.381014,4.973053,-0.003351833513337763,-0.008376878505631223,-0.007170012778529941,-0.00387912318331,-0.004161134550099239,-0.0049225350383452085,-0.00792499671514876,-0.005105558360369318,-0.005531731816661096,-0.008628340212074469,-0.00696296147923953,-0.006865991120151704,-0.007610738041471466,-0.010036174886489559,-0.007276400395509036,-0.009517796756298724,-0.008992238829243313,-0.008163414989263934,-0.008108936654118805,-0.006279783889583897,-0.005709340178189327,-0.0072490414217577575,-0.005644897760408239,-0.0065353142623756294,-0.010058105950089501,-0.0036864790722445783,-0.005195450686726326,-0.006895663302791548,-0.00854793050289946,-0.0036156502881716296,-0.008115058815371947,-0.007118381826027935,-0.006268660060541421,-0.00697021243083413,-0.00782801049997516,-0.01020543882734026,-0.007596502360291301,-0.009219805029658655,-0.008788369835680515,-0.009376208780791189,-0.00791175574312488,-0.007916672682168691,-0.011335675581080715,-0.011542692296093563,-0.010987830667086375,-0.012400288274155355,-0.009595716910480613,-0.012467034171656184,-0.011463765760917979,-0.0071509241650419865,-0.008945916841010811,-0.00787643311281297,-0.007701445252542946,-0.009213656860955832,-0.008578216944989335,-0.010501013513742954,-0.008442951339245044,-0.007846720892179937,-0.009005929049429498,-0.009391131013367238
+52.380981,4.973068,-0.002351833513337764,-0.006576878505631224,-0.006070012778529941,-0.00227912318331,-0.002461134550099239,-0.0028225350383452087,-0.005924996715148761,-0.003105558360369318,-0.003231731816661096,-0.007028340212074469,-0.004262961479239531,-0.005065991120151703,-0.005010738041471465,-0.00843617488648956,-0.004676400395509035,-0.008317796756298724,-0.006792238829243313,-0.005363414989263933,-0.004608936654118805,-0.0038797838895838974,-0.002609340178189327,-0.006049041421757758,-0.0035448977604082394,-0.0038353142623756293,-0.008658105950089501,-0.0020864790722445784,-0.0032954506867263265,-0.005895663302791548,-0.006747930502899461,-0.0022156502881716294,-0.006915058815371946,-0.005518381826027936,-0.005068660060541422,-0.004770212430834129,-0.0063280104999751605,-0.009305438827340258,-0.006296502360291301,-0.007719805029658655,-0.007688369835680516,-0.007776208780791188,-0.005011755743124882,-0.0064166726821686905,-0.010035675581080716,-0.009942692296093562,-0.009687830667086374,-0.010700288274155355,-0.007895716910480615,-0.010667034171656183,-0.00946376576091798,-0.004250924165041987,-0.006845916841010812,-0.00637643311281297,-0.007401445252542946,-0.00791365686095583,-0.006778216944989335,-0.008401013513742953,-0.0076429513392450455,-0.006746720892179937,-0.007305929049429498,-0.007591131013367239
+52.380966,4.973013,-0.0024518335133377634,-0.006576878505631224,-0.007870012778529941,-0.0030791231833100004,-0.004461134550099239,-0.0029225350383452085,-0.00552499671514876,-0.004105558360369318,-0.002631731816661096,-0.006028340212074469,-0.00596296147923953,-0.004265991120151703,-0.005810738041471465,-0.006136174886489559,-0.006676400395509035,-0.0033177967562987238,-0.007092238829243313,-0.007163414989263934,-0.006508936654118805,-0.004679783889583897,-0.004309340178189327,-0.005149041421757757,-0.0019448977604082395,-0.0038353142623756293,-0.0078581059500895,-0.0007864790722445785,-0.0031954506867263267,-0.003495663302791548,-0.004047930502899461,-0.0026156502881716295,-0.0038150588153719463,-0.0035183818260279363,-0.0024686600605414214,-0.0042702124308341294,-0.006228010499975161,-0.006305438827340259,-0.0064965023602913015,-0.0036198050296586542,-0.006888369835680515,-0.005276208780791189,-0.0038117557431248806,-0.006216672682168691,-0.006635675581080715,-0.0073426922960935625,-0.010787830667086374,-0.010300288274155354,-0.0076957169104806145,-0.008767034171656184,-0.00966376576091798,-0.0014509241650419876,-0.007145916841010812,-0.004776433112812969,-0.004801445252542945,-0.006613656860955831,-0.009378216944989335,-0.005401013513742955,-0.004542951339245045,-0.005446720892179937,-0.0036059290494294986,-0.004691131013367238
+52.380946,4.973066,-0.0015518335133377639,-0.006876878505631224,-0.005870012778529941,-0.0021791231833100002,-0.0026611345500992386,-0.0030225350383452083,-0.0065249967151487604,-0.0039055583603693177,-0.003031731816661096,-0.007628340212074469,-0.004862961479239531,-0.004165991120151703,-0.004710738041471465,-0.006836174886489559,-0.004676400395509035,-0.007017796756298723,-0.0059922388292433125,-0.005663414989263934,-0.005208936654118805,-0.003079783889583897,-0.0041093401781893265,-0.0062490414217577575,-0.003944897760408239,-0.004535314262375629,-0.007458105950089501,-0.0010864790722445784,-0.0022954506867263265,-0.006195663302791548,-0.007647930502899461,-0.00341565028817163,-0.007115058815371946,-0.006318381826027937,-0.005468660060541422,-0.00437021243083413,-0.007928010499975161,-0.00950543882734026,-0.006596502360291301,-0.008419805029658655,-0.007388369835680516,-0.008076208780791188,-0.0063117557431248816,-0.00631667268216869,-0.009135675581080716,-0.010442692296093563,-0.009787830667086373,-0.011100288274155354,-0.006595716910480614,-0.010567034171656184,-0.00996376576091798,-0.004850924165041988,-0.007445916841010812,-0.00637643311281297,-0.007001445252542945,-0.00831365686095583,-0.006878216944989335,-0.007501013513742954,-0.007942951339245045,-0.007546720892179937,-0.0072059290494294985,-0.007691131013367238
+52.380936,4.97308,-0.002051833513337764,-0.006776878505631224,-0.004870012778529941,-0.00227912318331,-0.0033611345500992387,-0.0036225350383452086,-0.00632499671514876,-0.004405558360369318,-0.0031317318166610964,-0.0068283402120744695,-0.005162961479239531,-0.004065991120151703,-0.005510738041471465,-0.006136174886489559,-0.005376400395509035,-0.006817796756298723,-0.005092238829243313,-0.004863414989263934,-0.0053089366541188045,-0.003079783889583897,-0.0031093401781893265,-0.005349041421757758,-0.0033448977604082397,-0.003435314262375629,-0.006958105950089501,-0.0010864790722445784,-0.0023954506867263268,-0.005295663302791548,-0.007747930502899461,-0.002815650288171629,-0.006815058815371946,-0.0062183818260279355,-0.005768660060541422,-0.004470212430834129,-0.007628010499975161,-0.009705438827340259,-0.0064965023602913015,-0.007819805029658655,-0.007188369835680515,-0.007376208780791189,-0.006111755743124881,-0.006516672682168691,-0.009735675581080716,-0.009942692296093562,-0.009187830667086373,-0.010400288274155355,-0.006595716910480614,-0.010467034171656184,-0.00996376576091798,-0.004850924165041988,-0.006945916841010811,-0.00667643311281297,-0.006301445252542946,-0.008413656860955831,-0.006678216944989336,-0.008001013513742954,-0.007742951339245046,-0.007546720892179937,-0.007305929049429498,-0.007591131013367239
+52.380884,4.973087,-0.0015518335133377639,-0.006576878505631224,-0.005470012778529941,-0.00317912318331,-0.0035611345500992393,-0.004022535038345209,-0.0052249967151487605,-0.004105558360369318,-0.003031731816661096,-0.006428340212074469,-0.005862961479239531,-0.0037659911201517026,-0.005410738041471465,-0.007536174886489559,-0.004976400395509035,-0.005917796756298724,-0.005192238829243313,-0.005063414989263933,-0.004808936654118805,-0.0035797838895838974,-0.0034093401781893273,-0.005949041421757758,-0.0029448977604082396,-0.003435314262375629,-0.007158105950089501,-0.0012864790722445785,-0.0027954506867263265,-0.005195663302791548,-0.005447930502899461,-0.00341565028817163,-0.006915058815371946,-0.006718381826027936,-0.005568660060541422,-0.00507021243083413,-0.006228010499975161,-0.008905438827340259,-0.007096502360291301,-0.008019805029658655,-0.008588369835680516,-0.0071762087807911885,-0.0056117557431248815,-0.0051166726821686905,-0.007935675581080714,-0.009642692296093562,-0.009987830667086374,-0.009900288274155355,-0.006895716910480614,-0.011167034171656183,-0.010463765760917981,-0.004750924165041987,-0.0067459168410108124,-0.00697643311281297,-0.007601445252542945,-0.00881365686095583,-0.006978216944989336,-0.010001013513742954,-0.0076429513392450455,-0.007346720892179937,-0.007405929049429498,-0.006691131013367239
+52.380816,4.973113,-0.0030518335133377632,-0.007676878505631224,-0.007370012778529941,-0.00487912318331,-0.004661134550099239,-0.004522535038345208,-0.00762499671514876,-0.005405558360369318,-0.0037317318166610962,-0.00802834021207447,-0.006862961479239531,-0.005265991120151703,-0.006010738041471465,-0.00703617488648956,-0.005576400395509036,-0.008817796756298723,-0.008192238829243312,-0.007263414989263934,-0.005208936654118805,-0.004079783889583897,-0.0041093401781893265,-0.005649041421757758,-0.003944897760408239,-0.00533531426237563,-0.0096581059500895,-0.0026864790722445782,-0.004495450686726327,-0.006695663302791547,-0.007347930502899461,-0.004115650288171629,-0.007815058815371947,-0.008718381826027936,-0.005768660060541422,-0.006470212430834129,-0.009028010499975161,-0.009205438827340259,-0.0092965023602913,-0.009819805029658655,-0.009688369835680515,-0.00907620878079119,-0.007511755743124882,-0.007816672682168692,-0.010035675581080716,-0.009942692296093562,-0.010987830667086375,-0.011100288274155354,-0.009395716910480615,-0.012667034171656183,-0.01186376576091798,-0.006750924165041987,-0.007945916841010812,-0.007476433112812968,-0.0065014452525429456,-0.00971365686095583,-0.008878216944989335,-0.009301013513742953,-0.009442951339245045,-0.008846720892179936,-0.008905929049429499,-0.009991131013367238
+52.380795,4.973144,-0.003651833513337764,-0.006976878505631224,-0.006970012778529941,-0.0033791231833100004,-0.004161134550099239,-0.0029225350383452085,-0.00702499671514876,-0.004405558360369318,-0.002631731816661096,-0.006428340212074469,-0.005562961479239531,-0.0037659911201517026,-0.004610738041471466,-0.00773617488648956,-0.004776400395509035,-0.0062177967562987236,-0.005192238829243313,-0.004263414989263934,-0.0033089366541188044,-0.001979783889583897,-0.0022093401781893268,-0.0052490414217577575,-0.002444897760408239,-0.002635314262375629,-0.007258105950089501,-0.0011864790722445786,-0.002095450686726327,-0.005395663302791547,-0.0059479305028994605,-0.003115650288171629,-0.006815058815371946,-0.006418381826027936,-0.005368660060541422,-0.00537021243083413,-0.00752801049997516,-0.008805438827340258,-0.006396502360291301,-0.007919805029658654,-0.007388369835680516,-0.0074762087807911885,-0.006211755743124881,-0.005516672682168691,-0.008635675581080715,-0.009442692296093562,-0.008987830667086374,-0.008700288274155355,-0.007295716910480614,-0.009767034171656183,-0.00976376576091798,-0.004450924165041987,-0.006245916841010812,-0.00607643311281297,-0.006901445252542946,-0.007513656860955831,-0.007378216944989336,-0.007701013513742955,-0.008042951339245045,-0.007946720892179937,-0.006805929049429498,-0.008191131013367239
+52.380767,4.973123,-0.0011518335133377637,-0.004176878505631224,-0.003570012778529941,-0.0033791231833100004,-0.0013611345500992387,-0.0022225350383452084,-0.0036249967151487598,-0.0022055583603693184,-3.173181666109607e-05,-0.0028283402120744695,-0.004262961479239531,-0.002265991120151703,-0.004310738041471466,-0.00433617488648956,-0.0051764003955090355,-0.0065177967562987235,-0.005592238829243312,-0.004963414989263934,-0.004208936654118805,-0.002379783889583897,-0.003309340178189327,-0.005849041421757757,-0.0026448977604082396,-0.0033353142623756297,-0.008058105950089501,-0.0016864790722445787,-0.0031954506867263267,-0.0054956633027915475,-0.006747930502899461,-0.003115650288171629,-0.006815058815371946,-0.007418381826027937,-0.0056686600605414215,-0.00607021243083413,-0.00722801049997516,-0.008705438827340258,-0.007196502360291302,-0.008119805029658655,-0.008888369835680516,-0.0074762087807911885,-0.006811755743124881,-0.00701667268216869,-0.009035675581080715,-0.009542692296093563,-0.008387830667086373,-0.010200288274155355,-0.008595716910480614,-0.010067034171656183,-0.01066376576091798,-0.004750924165041987,-0.007245916841010811,-0.006276433112812969,-0.007001445252542945,-0.008913656860955832,-0.007678216944989336,-0.008601013513742954,-0.008342951339245045,-0.008546720892179937,-0.007505929049429498,-0.008391131013367237
+52.380724,4.973158,-0.006951833513337763,-0.009776878505631224,-0.00887001277852994,-0.00487912318331,-0.006561134550099239,-0.0062225350383452085,-0.00972499671514876,-0.004805558360369318,-0.006231731816661097,-0.010928340212074469,-0.007862961479239532,-0.005165991120151703,-0.008410738041471466,-0.01013617488648956,-0.0071764003955090356,-0.009317796756298723,-0.008292238829243312,-0.007063414989263933,-0.004408936654118805,-0.0055797838895838975,-0.003609340178189327,-0.009949041421757758,-0.005044897760408239,-0.004835314262375629,-0.010058105950089501,-0.0030864790722445784,-0.005195450686726326,-0.006295663302791548,-0.00974793050289946,-0.00541565028817163,-0.010415058815371947,-0.009218381826027936,-0.007968660060541422,-0.00767021243083413,-0.011028010499975162,-0.012105438827340258,-0.0084965023602913,-0.012419805029658655,-0.010488369835680515,-0.011776208780791188,-0.008111755743124881,-0.00851667268216869,-0.011535675581080715,-0.012742692296093563,-0.011187830667086373,-0.010800288274155355,-0.009695716910480615,-0.011467034171656183,-0.01246376576091798,-0.007350924165041987,-0.009245916841010811,-0.01017643311281297,-0.007601445252542945,-0.01141365686095583,-0.009878216944989335,-0.011301013513742953,-0.013242951339245045,-0.010846720892179936,-0.010405929049429498,-0.012291131013367238
+52.380691,4.973141,-0.004051833513337763,-0.008476878505631225,-0.007770012778529942,-0.00397912318331,-0.005061134550099239,-0.005022535038345209,-0.0072249967151487605,-0.005105558360369318,-0.004131731816661096,-0.00812834021207447,-0.007262961479239531,-0.004565991120151703,-0.006010738041471465,-0.00763617488648956,-0.005976400395509035,-0.008117796756298723,-0.008292238829243312,-0.0067634149892639335,-0.006508936654118805,-0.0038797838895838974,-0.004909340178189327,-0.007349041421757758,-0.00434489776040824,-0.00463531426237563,-0.0098581059500895,-0.002986479072244578,-0.004695450686726326,-0.0067956633027915474,-0.008447930502899461,-0.00541565028817163,-0.008215058815371946,-0.008318381826027937,-0.007168660060541422,-0.006870212430834129,-0.00922801049997516,-0.010305438827340259,-0.0080965023602913,-0.009419805029658656,-0.009488369835680516,-0.008976208780791188,-0.00801175574312488,-0.0074166726821686905,-0.010435675581080715,-0.010542692296093562,-0.010787830667086374,-0.010500288274155355,-0.009195716910480614,-0.010467034171656184,-0.01116376576091798,-0.005950924165041987,-0.007745916841010812,-0.00787643311281297,-0.0078014452525429455,-0.009613656860955831,-0.008678216944989334,-0.010501013513742954,-0.010142951339245044,-0.009746720892179938,-0.009605929049429498,-0.009591131013367239
+52.380684,4.973168,-0.0035518335133377637,-0.007576878505631224,-0.006470012778529941,-0.00387912318331,-0.004661134550099239,-0.0052225350383452085,-0.00702499671514876,-0.005205558360369318,-0.0035317318166610966,-0.007628340212074469,-0.006562961479239531,-0.004065991120151703,-0.006110738041471465,-0.00703617488648956,-0.005376400395509035,-0.008517796756298723,-0.007592238829243312,-0.005663414989263934,-0.0053089366541188045,-0.004079783889583897,-0.004209340178189327,-0.007049041421757758,-0.0038448977604082393,-0.0042353142623756295,-0.009458105950089502,-0.0027864790722445785,-0.004395450686726326,-0.0064956633027915475,-0.008147930502899461,-0.005115650288171629,-0.008015058815371946,-0.008318381826027937,-0.006568660060541422,-0.006770212430834129,-0.008828010499975161,-0.010505438827340258,-0.007996502360291301,-0.009419805029658656,-0.009188369835680516,-0.00847620878079119,-0.007511755743124882,-0.0074166726821686905,-0.010435675581080715,-0.011042692296093563,-0.009887830667086374,-0.010100288274155355,-0.008295716910480614,-0.010867034171656183,-0.010863765760917979,-0.005750924165041988,-0.007845916841010811,-0.007476433112812968,-0.007701445252542946,-0.009613656860955831,-0.008478216944989335,-0.010301013513742954,-0.009742951339245045,-0.010146720892179937,-0.009205929049429499,-0.009691131013367238
+52.380611,4.973201,-0.0013518335133377638,-0.007476878505631224,-0.005670012778529941,-0.00467912318331,-0.005961134550099239,-0.0024225350383452085,-0.00682499671514876,-0.004905558360369318,-0.0039317318166610955,-0.00722834021207447,-0.010162961479239532,-0.006565991120151703,-0.008810738041471465,-0.00783617488648956,-0.010276400395509035,-0.008617796756298724,-0.008692238829243313,-0.005963414989263934,-0.007208936654118805,-0.0038797838895838974,-0.0031093401781893265,-0.006949041421757758,-0.00434489776040824,-0.00563531426237563,-0.0087581059500895,-0.003886479072244579,-0.004195450686726326,-0.008595663302791547,-0.00944793050289946,-0.00561565028817163,-0.007415058815371946,-0.007718381826027937,-0.006268660060541421,-0.00467021243083413,-0.00862801049997516,-0.009905438827340258,-0.008596502360291301,-0.010319805029658655,-0.012288369835680515,-0.008576208780791189,-0.007511755743124882,-0.01081667268216869,-0.011635675581080715,-0.011642692296093562,-0.011687830667086374,-0.011400288274155354,-0.006795716910480614,-0.010967034171656185,-0.01226376576091798,-0.007750924165041986,-0.008345916841010811,-0.007476433112812968,-0.007601445252542945,-0.01081365686095583,-0.010178216944989335,-0.011101013513742954,-0.010942951339245045,-0.010246720892179937,-0.009105929049429497,-0.010091131013367238
+52.380513,4.973223,-0.004751833513337763,-0.009376878505631224,-0.007870012778529941,-0.00447912318331,-0.006061134550099239,-0.0062225350383452085,-0.00782499671514876,-0.006905558360369318,-0.004231731816661095,-0.00872834021207447,-0.00886296147923953,-0.005565991120151703,-0.010810738041471465,-0.00873617488648956,-0.008376400395509036,-0.012417796756298723,-0.009992238829243312,-0.010163414989263932,-0.007408936654118806,-0.008979783889583898,-0.0071093401781893275,-0.008749041421757758,-0.005944897760408239,-0.007635314262375629,-0.0108581059500895,-0.004686479072244579,-0.007495450686726326,-0.008495663302791548,-0.00934793050289946,-0.007615650288171629,-0.008315058815371945,-0.010718381826027936,-0.007468660060541422,-0.005870212430834129,-0.010528010499975161,-0.010905438827340259,-0.008596502360291301,-0.010319805029658655,-0.012088369835680516,-0.010876208780791189,-0.00901175574312488,-0.008616672682168692,-0.012235675581080716,-0.012342692296093562,-0.010787830667086374,-0.011700288274155354,-0.009795716910480614,-0.013567034171656184,-0.01356376576091798,-0.008450924165041987,-0.008045916841010812,-0.007776433112812968,-0.010001445252542946,-0.010913656860955832,-0.012178216944989335,-0.011201013513742954,-0.010542951339245045,-0.011246720892179938,-0.009905929049429498,-0.009791131013367238
+52.380452,4.973312,-0.0035518335133377637,-0.009876878505631223,-0.007370012778529941,-0.0027791231833100005,-0.0036611345500992386,-0.004022535038345209,-0.00712499671514876,-0.005405558360369318,-0.002931731816661096,-0.01002834021207447,-0.008162961479239532,-0.005865991120151703,-0.006610738041471466,-0.00933617488648956,-0.007276400395509036,-0.010117796756298723,-0.007592238829243312,-0.008563414989263933,-0.005708936654118805,-0.006279783889583897,-0.007909340178189327,-0.010249041421757758,-0.008344897760408239,-0.00743531426237563,-0.0107581059500895,-0.004186479072244578,-0.005595450686726326,-0.009295663302791548,-0.009547930502899461,-0.00601565028817163,-0.009715058815371946,-0.007318381826027936,-0.007168660060541422,-0.00667021243083413,-0.007128010499975161,-0.010605438827340257,-0.0081965023602913,-0.008719805029658655,-0.009688369835680515,-0.009776208780791188,-0.007011755743124882,-0.008616672682168692,-0.016035675581080714,-0.012142692296093563,-0.013587830667086374,-0.011400288274155354,-0.009495716910480614,-0.012967034171656185,-0.012563765760917979,-0.0071509241650419865,-0.008845916841010812,-0.006576433112812969,-0.008201445252542945,-0.01111365686095583,-0.008578216944989335,-0.011301013513742953,-0.013142951339245045,-0.009046720892179937,-0.010005929049429499,-0.007291131013367239
+52.380344,4.973396,0.0020481664866622363,-0.004276878505631224,-0.001770012778529941,0.00012087681668999993,0.0005388654499007613,0.0008774649616547915,-0.00272499671514876,-0.0007055583603693182,0.0012682681833389039,-0.0017283402120744696,-0.0007629614792395308,0.000634008879848297,-0.0008107380414714651,-0.00473617488648956,-0.0003764003955090352,-0.0032177967562987235,-0.0018922388292433126,3.6585010736066444e-05,0.0009910633458811956,0.0006202161104161028,9.065982181067278e-05,-0.0038490414217577573,0.0005551022395917605,0.0009646857376243705,-0.004658105950089501,0.0029135209277554213,0.0014045493132736734,-0.004995663302791548,-0.003047930502899461,0.0003843497118283703,-0.003915058815371946,-0.001618381826027936,-0.0017686600605414213,-0.0016702124308341294,-0.00432801049997516,-0.0052054388273402585,-0.0027965023602913013,-0.004419805029658655,-0.0036883698356805156,-0.0038762087807911886,-0.002911755743124881,-0.0019166726821686904,-0.008335675581080716,-0.006142692296093562,-0.004887830667086373,-0.004800288274155355,-0.002895716910480614,-0.006867034171656183,-0.00636376576091798,-0.0012509241650419875,-0.0019459168410108113,-0.0019764331128129696,-0.0017014452525429458,-0.003413656860955831,-0.0031782169449893352,-0.0035010135137429547,-0.004442951339245046,-0.004646720892179937,-0.006105929049429498,-0.004791131013367238
+52.380333,4.9734,-0.007851833513337764,-0.011576878505631223,-0.010470012778529941,-0.00857912318331,-0.008061134550099238,-0.007622535038345209,-0.01032499671514876,-0.008405558360369318,-0.007731731816661097,-0.01222834021207447,-0.009962961479239531,-0.008265991120151701,-0.009510738041471465,-0.014036174886489559,-0.009076400395509035,-0.011917796756298723,-0.011592238829243312,-0.009763414989263933,-0.009008936654118805,-0.007879783889583897,-0.008509340178189329,-0.012449041421757758,-0.00784489776040824,-0.00863531426237563,-0.013458105950089502,-0.006086479072244579,-0.007595450686726327,-0.012595663302791547,-0.013247930502899461,-0.00921565028817163,-0.012915058815371945,-0.012118381826027936,-0.01036866006054142,-0.00997021243083413,-0.014528010499975161,-0.014605438827340257,-0.011996502360291301,-0.013219805029658655,-0.013088369835680515,-0.012676208780791188,-0.012111755743124881,-0.010416672682168691,-0.017235675581080714,-0.014342692296093562,-0.014387830667086373,-0.014100288274155355,-0.012395716910480614,-0.016267034171656185,-0.01586376576091798,-0.010450924165041987,-0.011345916841010812,-0.00987643311281297,-0.011701445252542946,-0.014113656860955831,-0.011778216944989334,-0.014101013513742953,-0.013742951339245045,-0.014246720892179937,-0.014005929049429499,-0.015291131013367239
+52.380314,4.973399,-0.009151833513337765,-0.014376878505631224,-0.012770012778529941,-0.00977912318331,-0.010961134550099238,-0.010022535038345208,-0.012924996715148759,-0.01020555836036932,-0.010331731816661097,-0.01452834021207447,-0.01176296147923953,-0.009065991120151703,-0.011010738041471466,-0.01383617488648956,-0.010776400395509035,-0.013917796756298723,-0.013392238829243312,-0.012163414989263932,-0.011408936654118806,-0.009879783889583897,-0.009909340178189327,-0.014749041421757758,-0.009244897760408238,-0.010535314262375629,-0.0147581059500895,-0.008486479072244578,-0.010295450686726326,-0.014795663302791548,-0.01454793050289946,-0.01031565028817163,-0.014515058815371946,-0.015618381826027936,-0.012868660060541421,-0.012370212430834129,-0.01612801049997516,-0.01580543882734026,-0.0138965023602913,-0.015219805029658655,-0.015188369835680516,-0.015076208780791188,-0.014411755743124881,-0.01251667268216869,-0.018135675581080715,-0.016742692296093563,-0.01598783066708637,-0.016300288274155354,-0.014495716910480615,-0.017367034171656182,-0.01716376576091798,-0.011950924165041987,-0.013945916841010812,-0.011976433112812969,-0.015901445252542945,-0.017713656860955832,-0.013178216944989335,-0.017501013513742954,-0.016542951339245045,-0.015446720892179936,-0.016605929049429497,-0.016291131013367238
+52.38026,4.973057,-0.0038518335133377636,-0.009876878505631223,-0.006970012778529941,-0.00497912318331,-0.005361134550099239,-0.005422535038345208,-0.008624996715148759,-0.006205558360369318,-0.005331731816661097,-0.00932834021207447,-0.007862961479239532,-0.007465991120151704,-0.008810738041471465,-0.011236174886489559,-0.008176400395509036,-0.011617796756298723,-0.009992238829243312,-0.009163414989263933,-0.008108936654118805,-0.007879783889583897,-0.006909340178189327,-0.010249041421757758,-0.0063448977604082385,-0.006735314262375629,-0.0113581059500895,-0.004886479072244579,-0.005495450686726327,-0.007995663302791547,-0.00934793050289946,-0.005215650288171629,-0.010315058815371946,-0.009118381826027935,-0.0069686600605414215,-0.00857021243083413,-0.010728010499975162,-0.011105438827340258,-0.0096965023602913,-0.010319805029658655,-0.010988369835680516,-0.011576208780791188,-0.00961175574312488,-0.013016672682168691,-0.012835675581080716,-0.013942692296093562,-0.013387830667086374,-0.014400288274155355,-0.012495716910480615,-0.013967034171656184,-0.01476376576091798,-0.009050924165041987,-0.010345916841010811,-0.009476433112812968,-0.010501445252542945,-0.012413656860955831,-0.010978216944989334,-0.013001013513742953,-0.011242951339245045,-0.011346720892179937,-0.011405929049429497,-0.011191131013367238
+52.379942,4.973145,0.002648166486662236,-0.0037768785056312235,-0.0007700127785299409,0.0017208768166899998,0.0024388654499007613,0.0008774649616547915,-0.00022499671514876007,0.0012944416396306817,0.0026682681833389036,-0.0014283402120744695,-0.0010629614792395307,-0.000365991120151703,-0.0008107380414714651,-0.0025361748864895593,-0.0008764003955090352,-0.004717796756298723,-0.0020922388292433126,-0.0023634149892639332,-0.0012089366541188046,-7.978388958389715e-05,9.065982181067278e-05,-0.0007490414217577575,0.0008551022395917604,0.0003646857376243705,-0.003458105950089501,0.003513520927755421,0.0019045493132736732,-0.0006956633027915479,-0.0006479305028994611,0.0026843497118283705,0.0008849411846280537,-0.0007183818260279362,0.0010313399394585787,2.97875691658705e-05,-0.0012280104999751605,-0.0021054388273402586,0.000103497639708699,-0.0006198050296586544,-0.0012883698356805154,-7.620878079118878e-05,0.001688244256875119,0.0003833273178313095,-0.0012356755810807151,-0.0023426922960935624,-0.002887830667086373,-0.003300288274155355,-0.0008957169104806144,-0.0033670341716561837,-0.00336376576091798,0.0012490758349580126,-4.591684101081135e-05,0.0015235668871870305,0.0015985547474570544,0.000686343139044169,2.1783055010664797e-05,-0.0005010135137429547,0.0014570486607549547,0.0015532791078200628,0.0010940709505705014,0.0005088689866327619
+52.345817,4.957527,-0.0041518335133377635,0.005223121494368776,0.0011299872214700591,0.00102087681669,0.0014388654499007613,0.0018774649616547915,-0.00392499671514876,-0.0011055583603693181,-0.002331731816661096,-0.007328340212074469,-0.002462961479239531,3.400887984829695e-05,-0.0015107380414714651,-0.0059361748864895595,-0.002976400395509035,-0.0006177967562987236,-0.0008922388292433124,-0.0025634149892639338,-0.00020893665411880454,0.0003202161104161028,0.0006906598218106728,-0.0017490414217577574,0.0019551022395917603,-0.0017353142623756294,-0.003058105950089501,0.0016135209277554213,0.0006045493132736734,-0.002395663302791548,-0.001347930502899461,-0.0012156502881716295,-0.004215058815371946,-0.0005183818260279361,-0.0010686600605414216,-0.0027702124308341294,0.0016719895000248397,-0.0008054388273402586,-0.0037965023602913013,-0.004119805029658655,-0.0011883698356805156,-0.0003762087807911887,-0.001011755743124881,-0.0021166726821686905,0.001764324418919285,-0.0024426922960935626,0.0005121693329136266,-0.003400288274155355,-0.0022957169104806142,0.002732965828343816,-0.00506376576091798,-5.092416504198739e-05,-0.00024591684101081144,-0.00407643311281297,0.0013985547474570544,-0.005713656860955831,-0.0001782169449893352,0.0006989864862570454,-0.0027429513392450452,-0.0007467208921799371,-0.0018059290494294986,-0.0024911310133672385
+52.345712,4.95775,0.0008481664866622363,0.0015231214943687765,0.001629987221470059,0.0026208768166899998,0.0024388654499007613,0.0012774649616547915,-0.0016249967151487602,0.0022944416396306817,0.0023682681833389037,0.0002716597879255304,-0.0004629614792395308,0.001034008879848297,0.0006892619585285348,-0.0008361748864895595,0.0005235996044909648,0.0010822032437012765,0.0008077611707566876,-0.0006634149892639335,0.0005910633458811955,0.003920216110416102,0.002290659821810673,0.0002509585782422426,-0.00014489776040823958,0.00016468573762437057,-0.001458105950089501,0.0030135209277554215,0.0024045493132736732,4.336697208452112e-06,-0.0019479305028994613,-0.0014156502881716296,-0.0022150588153719464,-0.0015183818260279362,-0.0003686600605414214,-0.0013702124308341294,-0.0010280104999751604,-0.0014054388273402585,-0.000896502360291301,0.0003801949703413456,0.0003116301643194845,-0.0011762087807911888,-0.0007117557431248811,-0.0008166726821686905,0.0010643244189192849,-0.0006426922960935626,0.0019121693329136266,-0.0009002882741553551,-0.00019571691048061434,-0.002267034171656184,-0.00206376576091798,0.0008490758349580126,0.0008540831589891886,0.0006235668871870306,0.0004985547474570544,-0.001213656860955831,-0.0007782169449893352,9.898648625704542e-05,-0.0012429513392450452,-0.002146720892179937,-0.0007059290494294985,0.0005088689866327619
+52.345588,4.957669,0.0005481664866622362,0.0016231214943687763,0.005229987221470059,0.0014208768166899999,0.0008388654499007612,-0.0007225350383452086,-0.00082499671514876,0.0004944416396306817,0.0023682681833389037,-0.0016283402120744696,-0.003862961479239531,-0.00046599112015170306,-0.002910738041471465,0.00016382511351044045,-0.0012764003955090353,-0.0026177967562987237,-0.0012922388292433125,-0.0033634149892639333,-0.0022089366541188046,-0.0005797838895838973,0.0008906598218106728,-0.0014490414217577575,5.510223959176051e-05,-0.0029353142623756295,-0.003158105950089501,-8.647907224457857e-05,-0.0010954506867263264,-0.0002956633027915479,-0.00524793050289946,-0.0032156502881716294,-0.002615058815371946,-0.002618381826027936,-0.0013686600605414215,-0.0015702124308341295,0.00017198950002483956,-0.0035054388273402584,-0.002496502360291301,-0.0007198050296586544,-0.0034883698356805155,-0.0015762087807911886,-1.1755743124881087e-05,-0.0018166726821686905,0.002864324418919285,-0.0022426922960935626,-0.00038783066708637337,-0.004900288274155355,-0.0009957169104806143,-0.001967034171656184,-0.00416376576091798,-5.092416504198739e-05,-0.0005459168410108114,0.0013235668871870306,-0.0019014452525429458,-0.001713656860955831,-0.0004782169449893352,-0.0013010135137429546,-0.003942951339245045,-0.001046720892179937,-0.0008059290494294985,-0.001591131013367238
+52.345607,4.957327,-0.007751833513337763,-0.005776878505631224,-0.001770012778529941,-0.00227912318331,-0.0039611345500992386,-0.0014225350383452085,-0.006924996715148761,-0.0038055583603693183,0.0007682681833389039,-0.00992834021207447,-0.0044629614792395305,-0.003665991120151703,-0.004710738041471465,-0.00733617488648956,-0.003576400395509035,-0.002717796756298724,-0.0035922388292433122,-0.0030634149892639333,-0.0032089366541188046,-0.0005797838895838973,-0.0021093401781893274,-0.007049041421757758,-0.008644897760408238,-0.00433531426237563,-0.0057581059500895005,0.0014135209277554215,-0.004495450686726327,-0.007795663302791548,-0.00824793050289946,-0.0023156502881716296,-0.006115058815371946,-0.006118381826027936,-0.006668660060541422,-0.00667021243083413,-0.005928010499975161,-0.00950543882734026,-0.004996502360291301,-0.006719805029658655,-0.0032883698356805154,-0.005676208780791189,-0.004111755743124881,-0.004816672682168691,-0.008035675581080716,-0.007742692296093563,-0.0020878306670863737,-0.006200288274155355,-0.003395716910480614,-0.012367034171656183,-0.00756376576091798,-0.004650924165041988,-0.004245916841010812,-0.007776433112812968,-0.0058014452525429454,-0.008913656860955832,-0.005878216944989335,-0.0036010135137429546,-0.006042951339245046,-0.007146720892179937,-0.009005929049429498,-0.010391131013367238
+52.345559,4.957546,0.0037481664866622364,0.00042312149436877643,0.002229987221470059,0.00102087681669,0.0029388654499007613,0.0027774649616547913,-0.00182499671514876,0.0005944416396306818,0.004368268183338904,-2.8340212074469493e-05,0.0003370385207604692,0.0016340088798482968,8.926195852853482e-05,-0.0009361748864895595,-0.0005764003955090352,0.0018822032437012764,0.002107761170756688,0.0007365850107360664,0.0034910633458811956,0.004120216110416103,0.002290659821810673,0.00035095857824224246,0.0025551022395917606,0.00046468573762437055,-0.001058105950089501,0.004113520927755422,0.0017045493132736736,-0.00019566330279154786,-0.0019479305028994613,0.0007843497118283703,-0.0024150588153719465,0.0001816181739720639,-0.0002686600605414215,0.0006297875691658704,0.0020719895000248395,-0.0015054388273402586,-0.0012965023602913009,0.0017801949703413454,0.0008116301643194845,2.3791219208811262e-05,0.001088244256875119,-0.0008166726821686905,-0.00013567558108071504,0.0014573077039064374,0.0017121693329136267,0.0006997117258446448,0.0011042830895193858,0.00043296582834381606,-0.0018637657609179802,0.0016490758349580125,0.0003540831589891885,0.0022235668871870306,0.0016985547474570543,-0.003413656860955831,-0.002278216944989335,0.0009989864862570454,0.0007570486607549547,-0.0020467208921799373,-0.00040592904942949844,0.0022088689866327617
+52.345538,4.957246,0.0011481664866622363,-0.0033768785056312233,0.001529987221470059,0.0012208768166899998,0.0010388654499007613,-0.0002225350383452084,-0.00302499671514876,-0.00040555836036931824,6.826818333890376e-05,-0.0025283402120744695,-0.0011629614792395308,0.001534008879848297,-0.0016107380414714652,-0.0018361748864895596,0.0001235996044909648,0.0021822032437012764,-0.0004922388292433125,0.004636585010736066,-0.0010089366541188045,-0.0004797838895838972,0.001390659821810673,-0.0028490414217577573,-0.0014448977604082395,-0.00033531426237562955,-0.002458105950089501,0.0040135209277554216,0.0013045493132736734,-0.004095663302791547,-0.006347930502899461,-0.0004156502881716296,-0.004615058815371946,-0.0029183818260279364,-0.0027686600605414213,-0.0007702124308341296,-0.0025280104999751605,-0.0039054388273402586,0.0007034976397086991,-0.0025198050296586544,-0.0002883698356805155,-0.0016762087807911886,0.001388244256875119,0.00018332731783130945,-0.003435675581080715,-0.0029426922960935627,0.00041216933291362656,-0.005300288274155355,-0.0019957169104806143,-0.002767034171656184,-0.00256376576091798,0.0013490758349580126,0.0012540831589891886,-0.0022764331128129695,-0.0015014452525429457,-0.003013656860955831,-0.001278216944989335,-0.003401013513742955,-0.0015429513392450453,-0.003146720892179937,-0.0033059290494294987,-0.004791131013367238
+52.345338,4.957453,-0.0015518335133377639,-0.0050768785056312235,0.002629987221470059,0.0014208768166899999,3.88654499007613e-05,-0.00012253503834520847,-0.00372499671514876,-0.0009055583603693183,0.0007682681833389039,-0.0038283402120744695,-0.002862961479239531,0.001034008879848297,-0.0008107380414714651,-0.0026361748864895595,0.0006235996044909648,0.0014822032437012765,-0.0003922388292433124,-0.0005634149892639335,0.0011910633458811954,0.0014202161104161027,0.0015906598218106728,-0.0035490414217577574,-0.0023448977604082397,-0.0017353142623756294,-0.002058105950089501,0.004713520927755422,-0.0015954506867263268,-0.002795663302791548,-0.007147930502899461,-0.0005156502881716299,-0.0060150588153719455,-0.003018381826027936,-0.004068660060541422,-0.0020702124308341293,-0.00732801049997516,-0.006405438827340258,-0.0025965023602913012,-0.0005198050296586544,-0.0011883698356805156,-0.0025762087807911886,-0.001311755743124881,-0.0028166726821686906,0.0052643244189192855,-0.0030426922960935625,0.0006121693329136267,-0.0018002882741553553,0.00010428308951938566,-0.004467034171656184,-0.00306376576091798,0.0005490758349580126,-0.0005459168410108114,-0.0027764331128129695,-0.0031014452525429453,-0.005613656860955831,-0.003078216944989335,-0.0039010135137429545,-0.006442951339245046,-0.006146720892179937,-0.0035059290494294988,-0.005191131013367239
+52.345362,4.957096,0.00014816648666223626,0.0029231214943687767,0.002429987221470059,0.0016208768166899997,0.0014388654499007613,0.0011774649616547916,-0.00072499671514876,0.0018944416396306817,0.003068268183338904,-0.0012283402120744696,0.0010370385207604691,0.003834008879848297,0.0006892619585285348,-0.0002361748864895595,0.0006235996044909648,0.0006822032437012764,0.0006077611707566875,0.0025365850107360666,0.0015910633458811954,0.0043202161104161025,0.0011906598218106728,-0.005149041421757757,0.00015510223959176034,0.0028646857376243705,-0.0004581059500895009,0.0053135209277554215,0.0008045493132736734,-0.001395663302791548,-0.0017479305028994612,0.0016843497118283703,-0.0016150588153719463,-0.003018381826027936,-0.0006686600605414213,-7.02124308341295e-05,0.0016719895000248397,-0.0006054388273402586,0.000403497639708699,0.00048019497034134566,0.0003116301643194845,0.003023791219208811,0.0006882442568751189,0.0027833273178313094,0.0045643244189192845,-0.0027426922960935626,0.003112169332913627,-0.0005002882741553551,0.0007042830895193856,0.00013296582834381593,-0.00256376576091798,0.0015490758349580125,5.408315898918848e-05,0.0013235668871870306,0.001998554747457054,-0.003513656860955831,-0.0011782169449893352,0.0006989864862570454,-4.295133924504526e-05,-0.0017467208921799371,-0.0016059290494294986,0.0019088689866327618
+52.345338,4.957023,0.0004481664866622362,-0.0008768785056312235,0.003029987221470059,0.0005208768166899998,-0.00016113455009923868,-0.0005225350383452085,-0.00412499671514876,-0.00040555836036931824,0.0021682681833389036,-0.0031283402120744694,-0.0013629614792395306,0.001734008879848297,-0.002410738041471465,-0.0030361748864895597,-0.001976400395509035,-0.0004177967562987235,-0.0009922388292433124,-0.0015634149892639335,-8.936654118804556e-06,0.00022021611041610282,-0.0018093401781893272,-0.0024490414217577575,-0.0035448977604082394,-0.0014353142623756295,-0.002958105950089501,0.0013135209277554214,-0.0004954506867263267,-0.001995663302791548,-0.003947930502899461,-0.0003156502881716298,-0.004115058815371946,-0.003818381826027936,-0.002068660060541421,-0.0015702124308341295,-0.00812801049997516,-0.003005438827340259,-0.001896502360291301,-0.003219805029658654,-0.0008883698356805155,-0.0031762087807911885,-0.000511755743124881,-0.00011667268216869052,-0.0008356755810807151,-0.0011426922960935625,-0.0012878306670863736,-0.002300288274155355,-0.0016957169104806142,-0.000467034171656184,-0.00276376576091798,0.0005490758349580126,-0.0027459168410108115,-0.00027643311281296944,-0.0036014452525429458,-0.005013656860955831,-0.0005782169449893352,-0.0010010135137429545,-0.0027429513392450452,-0.003146720892179937,-0.0001059290494294985,-0.003991131013367238
+52.345213,4.956924,-0.0004518335133377638,-0.0008768785056312235,0.0020299872214700593,0.00042087681668999985,0.0001388654499007613,-0.0014225350383452085,-0.0028249967151487603,-0.0009055583603693183,0.006368268183338904,-0.0024283402120744693,0.0003370385207604692,0.000734008879848297,-0.0010107380414714651,-0.004036174886489559,0.00042359960449096475,0.00018220324370127647,0.0010077611707566875,-0.0022634149892639334,-0.0007089366541188044,-0.0009797838895838971,-0.0011093401781893271,-0.003749041421757757,-0.00584489776040824,-0.0014353142623756295,-0.002158105950089501,0.0030135209277554215,0.00030454931327367343,-0.0008956633027915479,-0.005747930502899461,-0.00151565028817163,-0.0022150588153719464,-0.004018381826027937,-0.004568660060541422,-0.0033702124308341293,-0.0040280104999751605,-0.005605438827340259,-0.001196502360291301,-0.0020198050296586544,-0.0005883698356805155,-0.0023762087807911885,-0.000611755743124881,0.00028332731783130944,-0.0060356755810807156,-0.003842692296093563,0.0007121693329136266,-0.001900288274155355,-0.0014957169104806143,-0.004067034171656184,-0.0038637657609179804,-0.0012509241650419875,-0.0003459168410108115,-0.0014764331128129696,9.85547474570543e-05,-0.004813656860955831,-0.004878216944989335,-0.0009010135137429544,-0.004142951339245046,-0.004546720892179937,-0.0010059290494294985,-0.002391131013367238
+52.345141,4.957197,0.001248166486662236,-0.0013768785056312237,0.003029987221470059,0.0017208768166899998,-0.0014611345500992387,-0.0005225350383452085,-0.0035249967151487604,-0.00020555836036931826,-0.00013173181666109634,-0.0035283402120744696,0.00013703852076046917,0.006834008879848297,-0.003710738041471465,-0.0011361748864895595,0.0005235996044909648,-0.0004177967562987235,0.002707761170756688,-0.00016341498926393348,-8.936654118804556e-06,0.0011202161104161027,0.001990659821810673,-0.0014490414217577575,0.00035510223959176043,0.0009646857376243705,-5.8105950089500915e-05,0.003213520927755421,0.0024045493132736732,-0.002995663302791548,-0.005847930502899461,-0.0005156502881716299,-0.0030150588153719463,-0.0046183818260279366,-0.0031686600605414215,-0.0030702124308341293,-0.0038280104999751604,-0.004105438827340258,-0.001096502360291301,-0.0004198050296586544,0.00021163016431948443,-0.0015762087807911886,0.0008882442568751189,0.0012833273178313096,-0.003335675581080715,-0.0031426922960935627,0.0008121693329136265,-0.0012002882741553552,0.0020042830895193858,-0.002567034171656184,-0.0015637657609179803,0.0031490758349580128,0.0029540831589891887,-0.0014764331128129696,-0.00030144525254294577,-0.002113656860955831,-0.001978216944989335,-0.002701013513742955,-0.005142951339245046,-0.0030467208921799373,-0.0024059290494294985,-0.0034911310133672385
+52.345126,4.957257,0.00014816648666223626,0.009923121494368777,0.004029987221470059,0.0012208768166899998,0.003538865449900761,0.0010774649616547916,-0.00042499671514876,0.001394441639630682,0.005368268183338904,0.0017716597879255302,-0.0007629614792395308,0.003134008879848297,-0.0007107380414714652,-0.0002361748864895595,-0.0005764003955090352,-0.0003177967562987236,0.0010077611707566875,3.6585010736066444e-05,0.0007910633458811955,0.002020216110416103,0.002490659821810673,0.0020509585782422426,0.0025551022395917606,-0.0012353142623756294,-0.0028581059500895007,0.003513520927755421,0.0014045493132736734,0.0010043366972084522,-0.002047930502899461,8.434971182837018e-05,-0.006715058815371946,0.0001816181739720639,0.0005313399394585786,0.00032978756916587047,0.0014719895000248396,-5.438827340258556e-06,-0.000596502360291301,0.0009801949703413457,1.1630164319484447e-05,-7.620878079118878e-05,0.0015882442568751188,-0.0004166726821686905,0.0021643244189192847,0.0017573077039064373,0.0035121693329136262,-2.882741553550828e-07,-9.571691048061435e-05,0.0020329658283438157,-0.0021637657609179803,0.0011490758349580125,0.0008540831589891886,-0.00027643311281296944,-0.0005014452525429456,0.001186343139044169,0.0021217830550106648,0.002098986486257045,-0.0007429513392450453,0.001753279107820063,0.0012940709505705015,0.0004088689866327619
+52.345039,4.957099,0.0038481664866622358,0.0036231214943687764,0.007429987221470059,0.0026208768166899998,0.004438865449900761,0.0022774649616547917,0.0034750032848512398,0.0027944416396306817,0.005168268183338903,-0.00022834021207446958,-0.0012629614792395308,0.002534008879848297,-0.0006107380414714651,0.00426382511351044,0.0016235996044909648,0.00028220324370127647,0.0006077611707566875,-0.0004634149892639335,0.0016910633458811952,0.0021202161104161028,0.000990659821810673,0.0017509585782422424,0.00405510223959176,-0.0009353142623756294,-0.002058105950089501,0.004613520927755421,0.0011045493132736733,0.0007043366972084521,-0.00024793050289946116,0.0015843497118283702,-1.5058815371946316e-05,0.0004816181739720638,0.0014313399394585784,0.0022297875691658707,-0.0020280104999751605,0.0017945611726597412,0.001403497639708699,0.0031801949703413454,-8.83698356805156e-05,0.0010237912192088113,0.001188244256875119,0.0004833273178313094,0.0005643244189192848,0.0004573077039064374,0.0026121693329136265,-0.00020028827415535507,0.0013042830895193857,-0.00026703417165618393,-0.0019637657609179802,0.0023490758349580124,0.0030540831589891885,0.0023235668871870304,0.004398554747457054,0.001086343139044169,0.0002217830550106648,0.0022989864862570453,0.0023570486607549547,0.001653279107820063,0.0029940709505705014,0.0019088689866327618
+52.344975,4.956998,0.0006481664866622362,-0.0036768785056312233,0.0020299872214700593,0.00152087681669,-0.0019611345500992385,0.00037746496165479154,-0.00432499671514876,0.00019444163963068176,0.0005682681833389038,-0.00522834021207447,0.0014370385207604693,0.0029340088798482968,0.0012892619585285349,0.0017638251135104403,0.0016235996044909648,0.0013822032437012764,0.002407761170756688,0.0019365850107360665,0.0019910633458811956,0.004220216110416103,0.0012906598218106729,-0.0028490414217577573,-0.0011448977604082396,-0.0018353142623756293,-0.001058105950089501,0.0043135209277554215,0.002704549313273673,-0.0022956633027915478,-0.004347930502899461,0.006384349711828371,-0.006215058815371946,-0.004318381826027937,-0.003368660060541421,-0.0049702124308341296,-0.00802801049997516,-0.005905438827340259,-0.001996502360291301,-0.0015198050296586544,0.0009116301643194845,-0.004376208780791188,-0.00011175574312488113,0.0018833273178313094,-0.0040356755810807155,0.002457307703906437,0.0016121693329136265,-0.0003002882741553551,-0.0004957169104806144,-0.009367034171656184,-0.0015637657609179803,0.0015490758349580125,0.0018540831589891884,-0.00547643311281297,-0.0016014452525429455,-0.000513656860955831,-0.0013782169449893353,-0.004801013513742955,-0.002842951339245045,-0.0012467208921799371,-0.0026059290494294986,-0.004791131013367238
+52.344954,4.956699,0.002348166486662236,-0.00017687850563122357,0.005129987221470059,0.00302087681669,0.0024388654499007613,0.0016774649616547914,-0.00212499671514876,0.0022944416396306817,0.005068268183338904,0.0005716597879255303,0.0013370385207604693,0.003634008879848297,0.0004892619585285348,-0.0004361748864895596,0.002523599604490965,0.00018220324370127647,0.003407761170756687,0.0011365850107360664,0.0019910633458811956,0.0022202161104161026,0.0008906598218106728,0.0002509585782422426,0.0033551022395917605,0.0012646857376243706,-0.000958105950089501,0.004713520927755422,0.0019045493132736732,0.0018043366972084521,0.00025206949710053885,0.0020843497118283702,0.0001849411846280537,0.0004816181739720638,0.00043133993945857857,0.0023297875691658705,-0.0012280104999751605,-0.0013054388273402587,-0.0012965023602913009,-0.00021980502965865438,1.1630164319484447e-05,0.0007237912192088114,0.00038824425687511893,0.0013833273178313094,-0.00033567558108071513,0.0008573077039064376,0.003112169332913627,0.0010997117258446448,0.0012042830895193856,-0.001267034171656184,-0.0024637657609179802,0.0013490758349580126,0.0024540831589891883,0.0012235668871870306,0.0013985547474570544,-1.3656860955830953e-05,-0.0001782169449893352,0.0007989864862570455,-0.0016429513392450454,0.0002532791078200628,-5.92904942949853e-06,-0.00019113101336723807
+52.344909,4.95696,0.0022481664866622363,0.0017231214943687766,-0.001870012778529941,0.00022087681668999976,-0.002061134550099239,0.0017774649616547915,-0.00152499671514876,0.003894441639630682,0.0014682681833389037,-0.0018283402120744694,-0.0020629614792395307,0.0009340088798482969,-0.0010107380414714651,-0.0002361748864895595,0.0018235996044909648,0.0023822032437012764,0.0009077611707566876,-0.00016341498926393348,0.0009910633458811956,0.0022202161104161026,0.002090659821810673,-0.0011490414217577574,-0.0011448977604082396,0.0006646857376243705,-0.0018581059500895009,0.005713520927755421,0.0010045493132736735,-0.0010956633027915477,-0.006847930502899461,0.0019843497118283704,-0.0034150588153719465,-0.002618381826027936,-0.0022686600605414213,-0.0030702124308341293,-0.008428010499975162,-0.002705438827340259,-0.0012965023602913009,8.019497034134559e-05,-0.0004883698356805156,-0.0015762087807911886,0.003188244256875119,0.0015833273178313095,-0.0012356755810807151,-0.0015426922960935627,0.0019121693329136266,0.0008997117258446449,0.0075042830895193854,-0.001167034171656184,-0.0029637657609179802,0.0030490758349580125,0.0020540831589891885,-0.004576433112812969,0.0014985547474570542,-0.000813656860955831,-0.0008782169449893352,-0.0007010135137429545,-0.0010429513392450453,-0.0008467208921799372,-0.0001059290494294985,0.0016088689866327619
+52.344833,4.95655,-0.00015183351333776388,-0.0050768785056312235,-0.0004700127785299409,-0.0001791231833100002,-0.002461134550099239,-0.0034225350383452085,-0.0026249967151487598,-0.0013055583603693182,-0.0011317318166610964,-0.00452834021207447,-0.0015629614792395307,0.000734008879848297,-0.002110738041471465,-0.0024361748864895594,-0.0002764003955090352,-0.0014177967562987235,-0.0007922388292433125,-0.0008634149892639334,-0.0013089366541188044,0.0008202161104161028,0.00029065982181067287,-0.0030490414217577574,-0.003144897760408239,-0.003435314262375629,-0.002358105950089501,0.0017135209277554214,-0.00019545068672632664,-0.003895663302791548,-0.007647930502899461,-0.0006156502881716297,-0.004815058815371946,-0.0069183818260279365,-0.0049686600605414214,-0.0033702124308341293,-0.01202801049997516,-0.0036054388273402587,-0.002396502360291301,-0.0011198050296586544,-0.0014883698356805155,-0.002676208780791189,-0.003211755743124881,-0.0015166726821686904,0.00036432441891928475,-0.0034426922960935627,-0.0010878306670863735,-0.0025002882741553554,-0.002895716910480614,-0.008267034171656184,-0.0045637657609179805,-0.0010509241650419874,-0.0007459168410108115,-0.00817643311281297,-0.0018014452525429456,-0.007713656860955831,-0.002978216944989335,-0.0049010135137429545,-0.004742951339245046,-0.004646720892179937,-0.004405929049429498,-0.011191131013367238
+52.344779,4.95689,-0.0015518335133377639,0.0034231214943687767,0.0008299872214700591,0.00512087681669,-0.0011611345500992386,0.0020774649616547916,-0.00192499671514876,-0.0013055583603693182,0.001968268183338904,-0.005328340212074469,0.00023703852076046921,0.001834008879848297,-0.0011107380414714652,-0.0008361748864895595,-0.0004764003955090351,0.00038220324370127646,0.0015077611707566875,0.0013365850107360665,0.0015910633458811954,0.003320216110416103,0.0014906598218106728,-0.0010490414217577575,-0.0025448977604082394,0.00046468573762437055,-0.001058105950089501,0.0033135209277554215,0.0009045493132736734,-0.0008956633027915479,0.0019520694971005385,0.0013843497118283703,-0.003115058815371946,-0.0013183818260279361,-0.002868660060541421,-0.0022702124308341294,0.0007719895000248395,-0.0025054388273402584,-0.002396502360291301,-0.0020198050296586544,1.1630164319484447e-05,-0.0010762087807911886,-0.0014117557431248809,0.0010833273178313095,0.004864324418919284,-0.0024426922960935626,0.0011121693329136267,0.002199711725844645,-0.0012957169104806142,-0.005367034171656184,-0.0029637657609179802,0.0011490758349580125,0.0009540831589891886,0.00042356688718703055,-0.0014014452525429458,0.0002863431390441691,-0.0011782169449893352,-0.0025010135137429547,-0.0011429513392450454,0.0007532791078200627,-0.0019059290494294985,-0.003591131013367238
+52.344736,4.956827,-0.0005518335133377638,0.006423121494368776,0.00022998722147005908,-7.912318331000016e-05,0.0010388654499007613,0.0015774649616547914,-0.00602499671514876,-0.0013055583603693182,0.0042682681833389035,-0.0008283402120744696,0.0011370385207604692,0.004034008879848297,0.0018892619585285347,-0.0012361748864895595,0.0012235996044909648,0.00018220324370127647,0.002807761170756687,0.002336585010736066,0.0011910633458811954,0.004120216110416103,0.003590659821810673,-0.0008490414217577574,0.0020551022395917606,0.0037646857376243707,-0.000658105950089501,0.0028135209277554214,0.0020045493132736735,0.00010433669720845212,-0.01084793050289946,-0.00211565028817163,-0.0018150588153719464,-0.0013183818260279361,-0.0013686600605414215,-0.0010702124308341295,-0.0019280104999751604,0.006794561172659741,-0.001896502360291301,0.00028019497034134557,0.0013116301643194845,0.0005237912192088113,-0.000511755743124881,0.0008833273178313094,-0.0002356755810807151,-0.0016426922960935625,0.0030121693329136267,0.0015997117258446448,0.00010428308951938566,-0.001667034171656184,0.00043623423908202,0.0012490758349580126,0.0008540831589891886,0.00012356688718703052,0.0014985547474570542,-0.003513656860955831,-0.0016782169449893352,-0.0009010135137429544,-0.0016429513392450454,-0.0025467208921799373,-0.00040592904942949844,-0.001091131013367238
+52.344751,4.956534,-0.0009518335133377636,-0.0037768785056312235,-0.0007700127785299409,-0.00127912318331,-0.0006611345500992386,-0.0012225350383452086,-0.00482499671514876,-0.0005055583603693183,-0.001331731816661096,-0.006428340212074469,-0.0010629614792395307,0.000334008879848297,-0.002910738041471465,-0.0030361748864895597,-0.0007764003955090351,-0.002717796756298724,0.0004077611707566876,-0.0009634149892639335,-0.0013089366541188044,0.0013202161104161028,0.00019065982181067282,-0.0033490414217577577,-0.005344897760408239,-0.0016353142623756292,-0.002058105950089501,0.0017135209277554214,-0.0003954506867263266,-0.002695663302791548,-0.007447930502899461,0.0003843497118283703,-0.004015058815371946,-0.0035183818260279363,-0.0046686600605414215,-0.005570212430834129,-0.007128010499975161,-0.0055054388273402585,-0.001696502360291301,-0.003219805029658654,-0.0014883698356805155,-0.002976208780791189,-0.0003117557431248811,-0.0017166726821686905,-0.007535675581080715,-0.0017426922960935625,0.00011216933291362653,-0.001400288274155355,-0.0004957169104806144,-0.005367034171656184,-0.00326376576091798,-0.0003509241650419875,-0.0007459168410108115,-0.003276433112812969,-0.0031014452525429453,-0.007713656860955831,-0.003078216944989335,-0.0021010135137429545,-0.005742951339245046,-0.004846720892179937,-0.006405929049429498,-0.004391131013367238
+52.344694,4.956511,-0.0028518335133377636,-0.005976878505631224,-0.0008700127785299409,-0.0021791231833100002,-0.004861134550099239,-0.005622535038345209,-0.00392499671514876,-0.004705558360369318,-0.001331731816661096,-0.005428340212074469,-0.0067629614792395305,-0.002165991120151703,-0.005010738041471465,-0.0015361748864895595,-0.005776400395509035,-0.006317796756298723,-0.003892238829243312,-0.004963414989263934,-0.0028089366541188044,-0.0016797838895838972,-0.003609340178189327,-0.004549041421757757,-0.00304489776040824,-0.007035314262375629,-0.005158105950089501,-0.0020864790722445784,-0.004695450686726326,-0.005995663302791548,-0.008647930502899462,-0.006115650288171629,-0.006315058815371946,-0.006318381826027937,-0.0056686600605414215,-0.00437021243083413,-0.00702801049997516,-0.006805438827340258,-0.006396502360291301,-0.004619805029658654,-0.005188369835680515,-0.004976208780791189,-0.0034117557431248813,-0.004516672682168691,-0.005035675581080715,-0.006642692296093562,-0.004087830667086374,-0.004600288274155355,-0.006195716910480614,-0.008267034171656184,-0.007963765760917979,-0.004950924165041988,-0.005545916841010812,-0.006176433112812969,-0.005301445252542946,-0.01021365686095583,-0.007178216944989335,-0.007801013513742954,-0.007342951339245046,-0.0072467208921799375,-0.007905929049429498,-0.006591131013367238
+52.344648,4.956776,0.0009481664866622362,0.004423121494368776,2.998722147005907e-05,0.0017208768166899998,0.00033886544990076133,-0.0017225350383452084,-0.0038249967151487603,-0.00040555836036931824,0.0017682681833389039,-0.0037283402120744692,-0.0020629614792395307,0.0016340088798482968,-0.0005107380414714651,-0.0026361748864895595,0.0006235996044909648,-0.0014177967562987235,-0.0005922388292433124,-0.0011634149892639336,-0.0004089366541188045,0.0006202161104161028,0.001890659821810673,-0.0012490414217577574,-0.00014489776040823958,-0.0016353142623756292,-0.0004581059500895009,0.0038135209277554215,-0.00019545068672632664,0.0003043366972084521,-0.006047930502899461,-0.0019156502881716296,-0.0025150588153719463,-0.0032183818260279363,-0.0035686600605414217,-0.0011702124308341293,-0.005428010499975161,-0.004105438827340258,-0.0017965023602913009,-0.0012198050296586545,-0.0036883698356805156,-0.0022762087807911887,-0.002511755743124881,-0.0009166726821686906,-0.0007356755810807151,-0.0030426922960935625,0.0006121693329136267,-0.001700288274155355,0.0007042830895193856,-0.0013670341716561839,-0.00366376576091798,-0.0018509241650419873,0.00025408315898918857,-0.0001764331128129694,-0.0045014452525429455,-0.002213656860955831,-0.001978216944989335,-0.0030010135137429547,-0.0006429513392450453,-0.004146720892179937,-0.0019059290494294985,0.000808868986632762
+52.344631,4.95644,-0.012751833513337765,-0.014976878505631223,-0.00967001277852994,-0.00917912318331,-0.011161134550099238,-0.01152253503834521,-0.01132499671514876,-0.01080555836036932,-0.006131731816661096,-0.01142834021207447,-0.01086296147923953,-0.007065991120151703,-0.011510738041471465,-0.00673617488648956,-0.013076400395509035,-0.012717796756298723,-0.011292238829243312,-0.014863414989263933,-0.006708936654118805,-0.011379783889583899,-0.011709340178189328,-0.011349041421757758,-0.00984489776040824,-0.01273531426237563,-0.0169581059500895,-0.010086479072244579,-0.013895450686726327,-0.013895663302791548,-0.013847930502899461,-0.014115650288171631,-0.015515058815371945,-0.015418381826027935,-0.01516866006054142,-0.01347021243083413,-0.01382801049997516,-0.015205438827340257,-0.0167965023602913,-0.018819805029658656,-0.015188369835680516,-0.011576208780791188,-0.01341175574312488,-0.014316672682168692,-0.014135675581080715,-0.015142692296093562,-0.012287830667086374,-0.014400288274155355,-0.015095716910480615,-0.015267034171656185,-0.01776376576091798,-0.014050924165041986,-0.013145916841010812,-0.01307643311281297,-0.014001445252542946,-0.01621365686095583,-0.015578216944989334,-0.014401013513742953,-0.016042951339245045,-0.015446720892179936,-0.018205929049429498,-0.017191131013367236
+52.344606,4.956317,-0.002951833513337764,-0.006176878505631224,-0.002270012778529941,2.0876816689999883e-05,0.0005388654499007613,-0.0026225350383452086,-0.00342499671514876,0.00019444163963068176,-0.0014317318166610963,-0.004028340212074469,3.7038520760469205e-05,0.0022340088798482967,-0.0018107380414714653,-0.0015361748864895595,0.0001235996044909648,0.0015822032437012765,0.0006077611707566875,-0.0005634149892639335,-0.0007089366541188044,0.003220216110416103,-0.000409340178189327,-0.0032490414217577574,-0.00274489776040824,0.0015646857376243706,-0.001158105950089501,0.0031135209277554214,0.005004549313273674,-0.005795663302791547,-0.006847930502899461,0.0008843497118283702,-0.003115058815371946,-0.003818381826027936,-0.0037686600605414213,-0.0036702124308341296,-0.008528010499975161,-0.005005438827340258,-0.0032965023602913013,-0.0027198050296586545,-0.0012883698356805154,-0.0032762087807911887,-0.00041175574312488116,0.0020833273178313093,-0.0037356755810807147,-0.0040426922960935625,0.0016121693329136265,-0.0007002882741553552,-0.0010957169104806143,-0.006567034171656183,-0.00306376576091798,0.004249075834958012,0.00025408315898918857,-0.0017764331128129695,-0.004701445252542945,-0.007313656860955831,-0.003478216944989335,-0.0049010135137429545,-0.004142951339245046,-0.004746720892179937,-0.0059059290494294986,-0.007691131013367238
+52.344499,4.956538,-0.00015183351333776388,-0.0018768785056312237,-0.002170012778529941,0.0005208768166899998,-0.00016113455009923868,0.0005774649616547916,-0.0028249967151487603,0.0018944416396306817,0.0009682681833389037,-0.0048283402120744695,0.0007370385207604692,0.003334008879848297,0.0012892619585285349,-0.0037361748864895594,0.0005235996044909648,0.0005822032437012765,0.0019077611707566877,-0.0004634149892639335,0.00039106334588119546,0.002520216110416103,0.000990659821810673,-0.0019490414217577575,-0.0011448977604082396,-0.0008353142623756296,-0.0037581059500895013,0.003913520927755421,0.0017045493132736736,-0.0014956633027915479,-0.0069479305028994605,0.00048434971182837036,-0.005915058815371946,-0.005318381826027936,-0.0049686600605414214,-0.0035702124308341293,-0.005128010499975161,-0.007405438827340258,-0.004296502360291301,-0.004519805029658654,-0.0002883698356805155,-0.004576208780791189,-0.00011175574312488113,0.0007833273178313093,0.0011643244189192851,-0.004642692296093562,0.0027121693329136267,-0.001400288274155355,-0.00039571691048061435,-0.006067034171656184,-0.0017637657609179801,0.0021490758349580127,0.0011540831589891885,-0.0022764331128129695,-0.0032014452525429456,-0.004613656860955831,-0.0013782169449893353,-0.004701013513742955,-0.005042951339245046,-0.004246720892179937,-0.005805929049429498,0.004008868986632762
+52.344499,4.956232,-0.005251833513337764,-0.006876878505631224,-0.001570012778529941,-0.00227912318331,-0.0029611345500992385,-0.00012253503834520847,-0.00482499671514876,-0.0025055583603693183,-0.001031731816661096,-0.005628340212074469,-0.0025629614792395308,-0.000365991120151703,-0.003010738041471465,-0.004236174886489559,-0.0007764003955090351,-0.0025177967562987234,-0.0015922388292433124,-0.0008634149892639334,-0.0017089366541188046,-0.0005797838895838973,-0.0015093401781893273,-0.0010490414217577575,-0.0035448977604082394,-0.002135314262375629,-0.004258105950089501,0.0015135209277554215,-0.0008954506867263266,-0.002995663302791548,-0.007147930502899461,-0.002815650288171629,-0.0019150588153719463,-0.005218381826027936,-0.0049686600605414214,-0.0037702124308341294,-0.01012801049997516,-0.006805438827340258,-0.004696502360291301,-0.004119805029658655,-0.0029883698356805155,-0.005476208780791188,-0.003211755743124881,-0.0005166726821686906,-0.004135675581080715,-0.005942692296093562,-0.0013878306670863734,-0.0025002882741553554,-0.0022957169104806142,-0.007167034171656184,-0.00576376576091798,0.0006490758349580126,-0.0009459168410108113,-0.004576433112812969,-0.002701445252542946,-0.005013656860955831,-0.003278216944989335,-0.006101013513742955,-0.0037429513392450453,-0.006046720892179937,-0.0037059290494294984,-0.0057911310133672384
+52.344399,4.956558,-0.0028518335133377636,0.004223121494368776,0.00022998722147005908,-7.912318331000016e-05,-0.002161134550099239,-0.0018225350383452086,-0.00672499671514876,-0.005305558360369318,0.002268268183338904,-0.00622834021207447,-0.002262961479239531,-0.000765991120151703,-0.0017107380414714652,-0.0033361748864895596,-0.002676400395509035,-0.0025177967562987234,0.0004077611707566876,-0.011563414989263932,-0.0023089366541188044,0.0006202161104161028,-0.002309340178189327,-0.0019490414217577575,-0.0025448977604082394,-0.0015353142623756293,-0.003158105950089501,0.00041352092775542144,-0.0007954506867263266,-0.003195663302791548,-0.00994793050289946,-0.0018156502881716298,-0.006415058815371946,-0.003918381826027936,-0.004168660060541422,-0.0007702124308341296,-0.00582801049997516,-0.008405438827340258,-0.003196502360291301,-0.004419805029658655,-0.0032883698356805154,-0.002976208780791189,-0.0034117557431248813,-0.0022166726821686903,-0.004135675581080715,-0.004942692296093562,-0.0007878306670863733,-2.882741553550828e-07,-0.0026957169104806144,-0.006567034171656183,-0.0038637657609179804,-0.0025509241650419874,-0.002245916841010811,-0.0023764331128129693,-0.0014014452525429458,-0.004813656860955831,-0.002778216944989335,-0.005101013513742955,-0.004142951339245046,-0.0049467208921799375,-0.0038059290494294987,-0.009691131013367238
+52.344338,4.956065,-0.0014518335133377636,-0.005676878505631224,-0.000670012778529941,-7.912318331000016e-05,-0.0008611345500992387,-0.00032253503834520845,-0.004924996715148761,0.00019444163963068176,-0.0019317318166610959,-0.005428340212074469,-0.0008629614792395309,0.002434008879848297,0.0005892619585285349,-0.004036174886489559,2.359960449096484e-05,-0.002017796756298724,0.002407761170756688,-0.0003634149892639335,-0.0020089366541188045,0.0008202161104161028,-0.00020934017818932714,-0.0042490414217577575,-0.003144897760408239,-0.0015353142623756293,-0.002458105950089501,0.0034135209277554217,0.0013045493132736734,-0.004695663302791547,-0.006547930502899461,0.0003843497118283703,-0.0009150588153719463,-0.006418381826027936,-0.005268660060541421,-0.0029702124308341295,-0.0036280104999751603,-0.006005438827340259,-0.0025965023602913012,-0.0030198050296586544,-0.0013883698356805156,-0.0035762087807911886,-1.1755743124881087e-05,0.0006833273178313095,-0.002535675581080715,-0.005842692296093562,-0.0001878306670863735,-0.00040028827415535516,-0.0011957169104806142,-0.006567034171656183,-0.0026637657609179803,0.0010490758349580125,-0.0001459168410108114,-0.0036764331128129693,-0.0032014452525429456,-0.007613656860955831,-0.002878216944989335,-0.0033010135137429546,-0.003342951339245045,-0.0030467208921799373,-0.0059059290494294986,0.001208868986632762
+52.344207,4.956267,0.002148166486662236,0.0009231214943687763,0.00012998722147005912,0.0016208768166899997,-0.00036113455009923866,-0.0009225350383452085,-0.00232499671514876,-0.0009055583603693183,0.00026826818333890385,-0.010628340212074469,-0.002762961479239531,0.000334008879848297,-0.0018107380414714653,-0.0035361748864895593,-0.0008764003955090352,-0.0025177967562987234,0.00020776117075668754,-0.0034634149892639335,-0.0030089366541188045,-0.001979783889583897,9.065982181067278e-05,-0.0007490414217577575,-0.0007448977604082394,0.0015646857376243706,-0.004058105950089501,0.0022135209277554216,-0.002095450686726327,-0.002995663302791548,0.002052069497100539,0.0003843497118283703,-0.0018150588153719464,-0.002618381826027936,-0.003968660060541421,-0.0024702124308341295,-0.0029280104999751602,-0.005405438827340259,-0.003696502360291301,-0.004219805029658654,-0.0028883698356805157,-0.0032762087807911887,-0.0009117557431248812,-0.0026166726821686905,-0.0040356755810807155,-0.0025426922960935625,-0.0009878306670863734,-0.005000288274155355,-0.004195716910480614,-0.003067034171656184,-0.005963765760917981,-0.0012509241650419875,-0.0019459168410108113,-0.0024764331128129696,-0.0015014452525429457,-0.012713656860955831,-0.0026782169449893352,0.002398986486257045,-0.0012429513392450452,-0.0007467208921799371,-0.0021059290494294986,-0.0020911310133672383
+52.344225,4.955928,0.0002481664866622363,2.312149436877641e-05,0.00012998722147005912,-0.00027912318331000025,0.0013388654499007615,-0.0005225350383452085,0.00147500328485124,-0.0016055583603693184,-0.0005317318166610961,-0.006028340212074469,-0.0006629614792395308,0.001434008879848297,-0.003710738041471465,0.0020638251135104407,-0.002876400395509035,-0.0033177967562987238,-0.0007922388292433125,-0.0016634149892639336,-0.0031089366541188043,-0.0009797838895838971,-0.002009340178189327,-0.0008490414217577574,0.0051551022395917604,-0.002135314262375629,-0.0044581059500895005,1.352092775542147e-05,-0.0021954506867263267,-0.003395663302791548,-0.005647930502899461,0.0029843497118283704,-0.006915058815371946,-0.004318381826027937,-0.006068660060541422,-0.0009702124308341295,-0.0063280104999751605,-0.005105438827340259,-0.0064965023602913015,-0.0025198050296586544,-0.005188369835680515,-0.0028762087807911885,-0.004111755743124881,-0.003916672682168691,-0.007735675581080716,-0.0030426922960935625,-0.0014878306670863732,-0.0016002882741553552,-0.004195716910480614,-0.003767034171656184,-0.005963765760917981,-0.0012509241650419875,-0.0038459168410108118,-0.0025764331128129694,-0.0038014452525429454,-0.001813656860955831,-0.002978216944989335,-0.003201013513742955,-0.009842951339245044,-0.002746720892179937,-0.004805929049429498,-0.003691131013367238
+52.344137,4.956179,-0.0019518335133377636,-0.0037768785056312235,-0.003470012778529941,-0.0021791231833100002,-0.004761134550099239,-0.0022225350383452084,-0.00332499671514876,-0.0029055583603693185,0.0003682681833389037,-0.005328340212074469,-0.0025629614792395308,-0.000765991120151703,-0.0031107380414714648,-0.0049361748864895595,-0.002776400395509035,-0.00021779675629872354,-0.0008922388292433124,-0.004263414989263934,-0.0023089366541188044,-0.002279783889583897,-0.003009340178189327,-0.0032490414217577574,-0.0028448977604082393,-0.005535314262375629,-0.004158105950089501,1.352092775542147e-05,-0.0028954506867263268,-0.004895663302791548,-0.0069479305028994605,-0.0011156502881716297,-0.004715058815371946,-0.005318381826027936,-0.005468660060541422,-0.004870212430834129,-0.004828010499975161,-0.007405438827340258,-0.0054965023602913015,-0.005119805029658654,-0.004888369835680515,-0.004376208780791188,-0.004711755743124882,-0.0026166726821686905,-0.003935675581080715,-0.004842692296093563,-0.0015878306670863735,-0.003300288274155355,-0.003995716910480614,-0.006667034171656184,-0.0061637657609179795,-0.0015509241650419874,-0.002945916841010812,-0.0031764331128129697,-0.002701445252542946,-0.006813656860955831,-0.004078216944989336,-0.0023010135137429546,-0.003942951339245045,-0.005846720892179937,-0.005505929049429498,-0.004391131013367238
+52.344061,4.955813,-0.0019518335133377636,-0.006776878505631224,-0.002370012778529941,0.0003208768166899998,3.88654499007613e-05,-0.0010225350383452085,-0.0026249967151487598,-0.002105558360369318,0.009268268183338904,-0.0030283402120744696,-0.0013629614792395306,0.001034008879848297,-0.0010107380414714651,-0.0033361748864895596,0.0011235996044909647,-0.002117796756298723,0.00010776117075668749,-0.0014634149892639335,-0.0003089366541188046,-0.0011797838895838972,-0.0013093401781893272,-0.004949041421757758,-0.0032448977604082395,-0.0009353142623756294,-0.0035581059500895008,-8.647907224457857e-05,0.00020454931327367338,-0.006695663302791547,0.0015520694971005388,-0.0023156502881716296,-0.006615058815371946,-0.005218381826027936,-0.0049686600605414214,-0.00437021243083413,0.0016719895000248397,-0.006805438827340258,-0.0022965023602913013,-0.0014198050296586546,-0.0012883698356805154,-0.0037762087807911887,-0.002211755743124881,-0.0019166726821686904,-0.003535675581080715,-0.0030426922960935625,-0.0014878306670863732,-0.001900288274155355,-0.0027957169104806143,-0.0017670341716561839,-0.00476376576091798,-0.0020509241650419874,-0.0008459168410108115,-0.0009764331128129695,-0.0078014452525429455,-0.006313656860955831,-0.001778216944989335,-0.0013010135137429546,-0.006842951339245045,-0.0039467208921799375,-0.005405929049429498,-0.010491131013367239
+52.344013,4.955798,-0.00015183351333776388,-0.0028768785056312233,-0.000570012778529941,0.00152087681669,0.0009388654499007613,-0.0007225350383452086,-0.00172499671514876,-0.0011055583603693181,-0.006531731816661097,-0.00492834021207447,-0.0014629614792395307,0.000134008879848297,-0.0006107380414714651,-0.005236174886489559,-0.0007764003955090351,-0.0009177967562987235,0.0008077611707566876,-0.0013634149892639337,-0.0005089366541188046,0.0008202161104161028,0.00019065982181067282,-0.0017490414217577574,-0.006644897760408238,-0.0010353142623756293,-0.002058105950089501,0.0023135209277554214,-0.0008954506867263266,-0.0041956633027915476,-0.001347930502899461,-0.0013156502881716298,-0.0008150588153719463,-0.0032183818260279363,-0.0029686600605414214,-0.0016702124308341294,-0.0040280104999751605,-0.006905438827340259,-0.002696502360291301,-0.0016198050296586544,-0.0013883698356805156,-0.0032762087807911887,-0.0017117557431248808,-0.0030166726821686906,-0.002635675581080715,-0.007842692296093563,-0.0017878306670863736,-0.002600288274155355,-0.0024957169104806143,-0.001267034171656184,-0.0045637657609179805,-0.0011509241650419872,-0.0005459168410108114,-0.0033764331128129693,-0.0008014452525429458,-0.002713656860955831,-0.0021782169449893352,-0.0036010135137429546,-0.007142951339245046,-0.002246720892179937,-0.0018059290494294986,0.0007088689866327619
+52.343733,4.955788,-0.0004518335133377638,-0.0018768785056312237,-0.0008700127785299409,0.0008208768166899998,-0.0008611345500992387,-0.0002225350383452084,-0.00272499671514876,-0.0019055583603693183,0.0010682681833389038,-0.00392834021207447,-0.002962961479239531,-0.0005659911201517031,-0.0031107380414714648,-0.0036361748864895595,-0.002676400395509035,-0.0032177967562987235,-0.0020922388292433126,-0.002663414989263933,-0.0028089366541188044,-0.001579783889583897,-0.002609340178189327,-0.0024490414217577575,-0.0014448977604082395,-0.004035314262375629,-0.004358105950089501,0.0003135209277554214,-0.0017954506867263265,-0.003995663302791548,-0.005747930502899461,-0.00211565028817163,-0.003915058815371946,-0.003618381826027936,-0.0037686600605414213,-0.0035702124308341293,-0.005928010499975161,-0.005705438827340259,-0.003696502360291301,-0.004119805029658655,-0.0032883698356805154,-0.0041762087807911885,-0.003211755743124881,-0.0030166726821686906,-0.0036356755810807153,-0.004242692296093562,-0.0022878306670863734,-0.003400288274155355,-0.003395716910480614,-0.003467034171656184,-0.005963765760917981,-0.0022509241650419875,-0.0021459168410108117,-0.0025764331128129694,-0.002701445252542946,-0.005713656860955831,-0.003778216944989335,-0.0030010135137429547,-0.003842951339245045,-0.004546720892179937,-0.004405929049429498,-0.004091131013367238
+52.343295,4.955451,-0.0007518335133377639,-0.005276878505631224,-0.0024700127785299408,2.0876816689999883e-05,-0.0013611345500992387,-0.0019225350383452085,-0.00462499671514876,-0.0035055583603693184,-0.0017317318166610962,-0.00362834021207447,-0.003262961479239531,0.0021340088798482973,-0.004710738041471465,-0.004836174886489559,-0.003276400395509035,-0.004017796756298723,-0.002892238829243312,-0.002963414989263933,-0.0030089366541188045,-0.0021797838895838972,-0.0031093401781893265,-0.0042490414217577575,-0.0026448977604082396,-0.004735314262375629,-0.004058105950089501,0.0033135209277554215,-0.002595450686726327,-0.006095663302791547,-0.007047930502899461,-0.0020156502881716297,-0.0038150588153719463,-0.008218381826027936,-0.0029686600605414214,-0.00597021243083413,-0.006228010499975161,-0.006905438827340259,-0.006396502360291301,-0.0030198050296586544,-0.0009883698356805155,-0.005376208780791189,-0.002111755743124881,-0.0021166726821686905,-0.004835675581080715,-0.004942692296093562,-0.0006878306670863735,-0.004700288274155355,0.0006042830895193856,-0.003767034171656184,-0.00236376576091798,-0.0013509241650419873,-0.0024459168410108116,-0.0034764331128129696,-0.005001445252542945,-0.006013656860955831,-0.0010782169449893354,-0.0039010135137429545,-0.0066429513392450455,-0.004346720892179937,-0.004705929049429498,-0.008891131013367238
+52.343205,4.955279,-0.001751833513337764,0.0037231214943687766,-0.0024700127785299408,0.0007208768166899999,-0.0022611345500992384,-0.0014225350383452085,-0.00372499671514876,-0.0007055583603693182,-0.000831731816661096,-0.004428340212074469,-0.003462961479239531,-0.002965991120151703,-0.002410738041471465,-0.0035361748864895593,-0.0003764003955090352,-0.0019177967562987233,-0.0025922388292433122,-0.0035634149892639338,-0.004208936654118805,-0.0014797838895838971,-0.0011093401781893271,-0.0026490414217577576,-0.0007448977604082394,-0.0017353142623756294,-0.004658105950089501,-0.00018647907224457862,-0.0012954506867263265,-0.004595663302791548,-0.005847930502899461,-0.0026156502881716295,-0.004315058815371946,-0.005518381826027936,-0.0038686600605414216,-0.00407021243083413,-0.0040280104999751605,-0.006805438827340258,-0.003896502360291301,-0.003919805029658654,-0.0017883698356805156,-0.004576208780791189,-0.002311755743124881,-0.0029166726821686904,-0.005735675581080716,-0.005142692296093563,-0.0035878306670863733,-0.003300288274155355,-0.0034957169104806144,-0.004367034171656184,-0.00736376576091798,-0.0030509241650419875,-0.002245916841010811,-0.0019764331128129696,-0.0038014452525429454,-0.005013656860955831,-0.002378216944989335,-0.0039010135137429545,-0.0056429513392450455,-0.005246720892179937,-0.0052059290494294985,-0.005391131013367238
+52.343238,4.955014,-0.0037518335133377633,-0.009676878505631224,-0.0024700127785299408,-0.00047912318331000013,-0.0011611345500992386,-0.0028225350383452087,-0.00392499671514876,-0.0014055583603693183,-0.003031731816661096,-0.006928340212074469,-0.003262961479239531,0.000434008879848297,-0.0015107380414714651,-0.00413617488648956,-0.003876400395509035,-0.0032177967562987235,-0.0016922388292433125,-0.002963414989263933,-0.004508936654118805,-0.0026797838895838972,-0.002709340178189327,-0.003749041421757757,-0.0032448977604082395,-0.0030353142623756294,-0.004358105950089501,0.00011352092775542152,-0.0018954506867263268,-0.005895663302791548,-0.01284793050289946,-0.0006156502881716297,-0.007515058815371946,-0.0065183818260279355,-0.006668660060541422,-0.0025702124308341293,-0.01012801049997516,-0.007205438827340259,-0.004896502360291301,-0.006919805029658654,-0.005388369835680516,-0.004676208780791188,-0.002811755743124881,-0.00441667268216869,-0.005035675581080715,-0.007542692296093562,-0.005787830667086374,-0.0036002882741553548,-0.006095716910480615,-0.005667034171656184,-0.0048637657609179805,-0.0009509241650419876,-0.0024459168410108116,-0.003276433112812969,-0.006301445252542946,-0.008113656860955831,-0.006078216944989336,-0.004801013513742955,-0.008342951339245045,-0.005346720892179937,-0.007805929049429498,-0.007291131013367239
+52.342985,4.955101,-0.007051833513337764,0.0006231214943687764,-0.006370012778529941,-0.0005791231833100002,-0.004361134550099239,-0.0024225350383452085,-0.009224996715148759,-0.003705558360369318,-0.0011317318166610964,-0.005128340212074469,-0.004162961479239531,-0.001565991120151703,-0.007610738041471466,-0.00503617488648956,-0.003276400395509035,-0.0029177967562987236,-0.004892238829243312,-0.006363414989263933,-0.005508936654118805,-0.003479783889583897,-0.0034093401781893273,-0.0038490414217577573,-0.00304489776040824,-0.0075353142623756295,-0.003458105950089501,-8.647907224457857e-05,-0.007195450686726326,-0.006895663302791548,-0.00624793050289946,-0.0008156502881716298,-0.0050150588153719455,-0.0065183818260279355,-0.004868660060541422,-0.005170212430834129,-0.0040280104999751605,-0.006805438827340258,-0.003496502360291301,-0.005319805029658654,-0.0035883698356805153,-0.006176208780791189,-0.0038117557431248806,-0.0041166726821686905,-0.005735675581080716,-0.0063426922960935625,-0.004187830667086374,-0.009500288274155355,-0.003895716910480614,-0.007667034171656184,-0.009863765760917981,-0.005150924165041988,-0.003545916841010812,-0.0052764331128129695,-0.004801445252542945,-0.0045136568609558305,-0.0075782169449893355,-0.004301013513742955,-0.005442951339245046,-0.003646720892179937,-0.007405929049429498,-0.003591131013367238
+52.342944,4.954803,-0.005251833513337764,-0.0028768785056312233,-0.006370012778529941,-0.00297912318331,-0.005361134550099239,-0.0031225350383452086,-0.00562499671514876,-0.004005558360369318,0.00016826818333890402,-0.00842834021207447,-0.003662961479239531,-0.0013659911201517028,-0.003410738041471465,-0.005836174886489559,-0.002476400395509035,-0.0032177967562987235,-0.0025922388292433122,-0.0022634149892639334,-0.0020089366541188045,-0.001579783889583897,-0.0034093401781893273,-0.006749041421757758,-0.005144897760408239,-0.0030353142623756294,-0.0054581059500895006,-0.0023864790722445783,-0.0024954506867263266,-0.008595663302791547,-0.005847930502899461,-0.0019156502881716296,-0.008915058815371945,-0.009318381826027936,-0.00816866006054142,0.0014297875691658705,0.0012719895000248395,-0.009405438827340257,-0.006096502360291301,-0.0060198050296586545,-0.0036883698356805156,-0.006776208780791189,-0.003111755743124881,-0.00461667268216869,-0.008935675581080715,-0.009742692296093562,-0.004787830667086374,-0.003400288274155355,-0.0036957169104806144,-0.009267034171656184,-0.00756376576091798,-0.004550924165041987,-0.0034459168410108116,-0.00637643311281297,-0.008201445252542945,-0.007513656860955831,-0.006878216944989335,-0.010101013513742953,-0.007842951339245044,-0.006546720892179937,-0.008005929049429499,-0.006291131013367238
+52.342889,4.955009,0.0005481664866622362,0.0006231214943687764,0.0003299872214700591,0.0012208768166899998,0.0006388654499007614,0.00037746496165479154,-0.00112499671514876,-0.0012055583603693182,0.0018682681833389037,-0.0032283402120744696,-0.0017629614792395308,0.000434008879848297,-0.001910738041471465,-0.0016361748864895595,0.0007235996044909648,-0.0007177967562987234,-0.00029223882924331237,0.0007365850107360664,-0.0006089366541188046,0.00022021611041610282,-0.00020934017818932714,0.0024509585782422428,0.00015510223959176034,-0.0013353142623756292,-0.0028581059500895007,0.0014135209277554215,-0.0012954506867263265,-0.0044956633027915475,-0.0037479305028994612,0.0024843497118283704,-0.005315058815371946,-0.003118381826027936,-0.0019686600605414214,-0.0003702124308341295,-0.005928010499975161,-0.004005438827340259,-0.0044965023602913014,-0.0023198050296586543,-0.0013883698356805156,-0.0022762087807911887,-1.1755743124881087e-05,-0.0023166726821686905,-0.004135675581080715,-0.0037426922960935626,-0.0020878306670863737,-0.001300288274155355,-0.0002957169104806143,-0.0018670341716561841,-0.00566376576091798,-0.0030509241650419875,-0.00024591684101081144,-0.0022764331128129695,-0.0025014452525429455,-0.004813656860955831,-0.002278216944989335,-0.0028010135137429546,-0.0046429513392450454,-0.002446720892179937,-0.004705929049429498,-0.001391131013367238
+52.342913,4.954689,-0.0038518335133377636,-0.0021768785056312237,-0.003370012778529941,2.0876816689999883e-05,-0.0018611345500992385,-0.0013225350383452084,-0.00172499671514876,-0.001505558360369318,0.0003682681833389037,-0.004028340212074469,-0.002362961479239531,0.000134008879848297,-0.004110738041471465,-0.00503617488648956,-0.0011764003955090352,-0.0019177967562987233,-0.006492238829243313,-0.012063414989263933,-0.004508936654118805,-0.0035797838895838974,-0.0015093401781893273,-0.008849041421757757,-0.0011448977604082396,-0.0023353142623756293,-0.003458105950089501,0.0003135209277554214,-0.0002954506867263266,-0.005795663302791547,-0.00624793050289946,-0.0010156502881716299,-0.004315058815371946,-0.003718381826027936,-0.004368660060541422,-0.0034702124308341295,-0.008828010499975161,-0.0055054388273402585,-0.0041965023602913015,-0.0030198050296586544,-0.0028883698356805157,-0.0038762087807911886,-0.001111755743124881,-0.0021166726821686905,-0.005135675581080715,-0.004242692296093562,-0.005287830667086373,-0.002300288274155355,-0.002095716910480614,-0.002967034171656184,-0.00516376576091798,-0.0023509241650419874,-0.0015459168410108116,0.0026235668871870304,-0.004301445252542946,-0.00791365686095583,-0.003978216944989336,-0.005101013513742955,-0.0056429513392450455,-0.005846720892179937,-0.005605929049429498,-0.003991131013367238
+52.342829,4.95494,-0.0030518335133377632,-0.0017768785056312235,-0.003970012778529941,-0.0011791231833100002,-0.0026611345500992386,-0.0014225350383452085,-0.00502499671514876,-0.002705558360369318,-0.0031317318166610964,-0.005628340212074469,-0.002462961479239531,-0.00016599112015170292,-0.002010738041471465,-0.005436174886489559,-0.0015764003955090352,-0.0026177967562987237,-0.0011922388292433125,-0.0012634149892639334,-0.0018089366541188044,-7.978388958389715e-05,-0.0021093401781893274,-0.005849041421757757,-0.002444897760408239,-0.0007353142623756295,-0.004358105950089501,1.352092775542147e-05,-0.0018954506867263268,-0.006595663302791548,-0.008347930502899462,-0.002815650288171629,-0.006215058815371946,-0.008218381826027936,-0.005768660060541422,-0.00667021243083413,-0.00812801049997516,-0.007205438827340259,-0.004596502360291301,-0.006119805029658654,-0.004088369835680516,-0.006276208780791189,-0.002911755743124881,-0.00401667268216869,-0.004135675581080715,-0.0070426922960935626,-0.005187830667086374,-0.002700288274155355,-0.0043957169104806145,-0.006067034171656184,-0.00556376576091798,-0.002950924165041987,-0.0031459168410108117,-0.005376433112812969,-0.0068014452525429455,-0.009813656860955831,-0.005778216944989335,-0.007101013513742955,-0.006242951339245045,-0.007346720892179937,-0.006405929049429498,-0.007691131013367238
+52.342867,4.954625,-0.0041518335133377635,-0.004876878505631224,-0.004870012778529941,-0.0014791231833100001,-0.0022611345500992384,-0.0016225350383452086,-0.0065249967151487604,-0.0039055583603693177,-0.002631731816661096,-0.0058283402120744695,-0.003662961479239531,-0.000765991120151703,-0.0026107380414714648,-0.00633617488648956,-0.002476400395509035,-0.0038177967562987233,-0.0021922388292433125,-0.0017634149892639334,-0.003708936654118804,-0.0006797838895838971,-0.0035093401781893267,-0.0062490414217577575,-0.005744897760408239,-0.003735314262375629,-0.0044581059500895005,-0.0011864790722445786,-0.0016954506867263267,-0.009995663302791547,-0.0046479305028994606,-0.0033156502881716296,-0.006415058815371946,-0.0042183818260279355,-0.007568660060541421,-0.0052702124308341295,-0.00972801049997516,-0.0065054388273402585,-0.005096502360291301,-0.0057198050296586546,-0.004488369835680515,-0.005076208780791189,-0.0038117557431248806,-0.0031166726821686905,-0.004835675581080715,-0.006942692296093562,-0.006887830667086373,-0.0039002882741553547,-0.004895716910480614,-0.006367034171656184,-0.00826376576091798,-0.0036509241650419873,-0.005145916841010812,-0.00667643311281297,-0.007401445252542946,-0.010613656860955832,-0.006378216944989336,-0.008301013513742954,-0.007342951339245046,-0.005646720892179937,-0.005405929049429498,-0.011191131013367238
+52.342702,4.954897,-0.0022518335133377637,-0.0007768785056312236,-0.005470012778529941,-0.0003791231833100001,-0.0014611345500992387,-0.004422535038345208,-0.00392499671514876,-0.0013055583603693182,-0.0014317318166610963,-0.007028340212074469,-0.002762961479239531,-0.000765991120151703,-0.004510738041471465,-0.0034361748864895594,-0.002876400395509035,-0.005717796756298723,-0.0035922388292433122,-0.0011634149892639336,-0.0013089366541188044,-0.002079783889583897,-0.0028093401781893266,-0.0013490414217577574,-0.0004448977604082395,-0.00013531426237562945,-0.0044581059500895005,-0.0015864790722445784,-0.0027954506867263265,-0.006095663302791547,-0.0036479305028994614,-0.0032156502881716294,-0.003615058815371946,-0.008018381826027937,-0.0026686600605414215,-0.0020702124308341293,-0.00492801049997516,-0.007705438827340259,-0.005996502360291301,-0.0050198050296586545,-0.0038883698356805157,-0.002476208780791189,-0.0053117557431248815,-0.0061166726821686905,-0.008335675581080716,-0.006942692296093562,-0.005487830667086374,-0.004100288274155355,-0.006495716910480614,-0.0062670341716561835,-0.00746376576091798,-0.006550924165041987,-0.002545916841010812,-0.0023764331128129693,-0.003001445252542946,-0.007713656860955831,-0.003278216944989335,-0.005701013513742955,-0.004242951339245045,-0.007646720892179937,-0.0028059290494294987,-0.005991131013367238
+52.342723,4.954463,-0.004951833513337764,-0.006976878505631224,-0.006570012778529941,-0.0037791231833100005,-0.0039611345500992386,-0.004822535038345208,-0.00712499671514876,-0.005205558360369318,-0.0024317318166610963,-0.006428340212074469,-0.0035629614792395308,-0.0018659911201517028,-0.002510738041471465,-0.006136174886489559,-0.002476400395509035,-0.003017796756298724,-0.0032922388292433123,-0.0025634149892639338,-0.003908936654118805,-0.002079783889583897,-0.007009340178189326,-0.007349041421757758,-0.0035448977604082394,-0.00693531426237563,-0.006158105950089501,-0.0013864790722445787,-0.0036954506867263267,-0.0067956633027915474,-0.00914793050289946,-0.0036156502881716296,-0.009315058815371946,-0.007718381826027937,-0.004468660060541422,-0.0072702124308341295,-0.00972801049997516,-0.00850543882734026,-0.006596502360291301,-0.007419805029658654,-0.004888369835680515,-0.007076208780791189,-0.0046117557431248814,-0.0023166726821686905,-0.005935675581080714,-0.007142692296093562,-0.008687830667086373,-0.0055002882741553545,-0.005995716910480614,-0.005467034171656184,-0.00716376576091798,-0.004650924165041988,-0.004245916841010812,-0.00697643311281297,-0.005201445252542946,-0.010413656860955831,-0.007178216944989335,-0.005501013513742954,-0.003942951339245045,-0.008246720892179937,-0.008105929049429498,-0.007691131013367238
+52.34267,4.954789,-0.0024518335133377634,-0.0013768785056312237,-0.004270012778529941,-0.0026791231833100003,-0.00036113455009923866,-0.0018225350383452086,-0.00132499671514876,-0.0035055583603693184,0.0015682681833389038,-0.0018283402120744694,-0.0015629614792395307,-0.0005659911201517031,-0.00031073804147146517,-0.00413617488648956,-0.0011764003955090352,-0.0009177967562987235,-9.223882924331238e-05,-0.0006634149892639335,-0.0008089366541188045,0.0011202161104161027,-0.003009340178189327,0.0002509585782422426,0.0002551022395917606,0.0022646857376243707,-0.005858105950089501,0.00011352092775542152,0.00030454931327367343,-0.0054956633027915475,-0.0009479305028994612,-0.0017156502881716296,-0.0030150588153719463,-0.005218381826027936,-0.004368660060541422,0.004029787569165871,-0.00392801049997516,-0.003005438827340259,-0.0020965023602913012,-0.002919805029658654,-0.0018883698356805154,-0.0022762087807911887,-0.003111755743124881,-0.0030166726821686906,-0.001835675581080715,-0.0008426922960935626,-0.004387830667086374,-0.001900288274155355,-0.008195716910480615,-0.00026703417165618393,-0.00536376576091798,-0.0014509241650419876,-0.0021459168410108117,-0.0009764331128129695,-0.00010144525254294568,-0.0065136568609558305,-0.0016782169449893352,-0.0012010135137429546,-0.0032429513392450452,-0.003246720892179937,0.0027940709505705013,-0.002291131013367238
+52.342421,4.954034,-0.004651833513337764,-0.0060768785056312235,-0.005170012778529941,-0.00327912318331,-0.004761134550099239,-0.004322535038345209,-0.00512499671514876,-0.005005558360369318,-0.0022317318166610958,-0.005328340212074469,-0.006862961479239531,-0.0033659911201517033,-0.0065107380414714654,-0.00733617488648956,-0.004676400395509035,-0.006117796756298723,-0.004192238829243312,-0.005163414989263934,-0.005508936654118805,-0.003679783889583897,-0.006309340178189327,-0.004149041421757757,-0.003944897760408239,-0.004835314262375629,-0.008058105950089501,-0.0023864790722445783,-0.005995450686726326,-0.007095663302791547,-0.008047930502899462,-0.00471565028817163,-0.0060150588153719455,-0.006718381826027936,-0.006468660060541422,-0.006470212430834129,-0.007728010499975161,-0.008105438827340258,-0.008296502360291301,-0.008919805029658655,-0.008488369835680515,-0.006676208780791188,-0.006911755743124881,-0.007516672682168691,-0.006835675581080714,-0.008142692296093563,-0.010287830667086374,-0.008600288274155356,-0.008195716910480615,-0.008667034171656185,-0.01246376576091798,-0.008250924165041987,-0.008645916841010811,-0.00787643311281297,-0.008301445252542946,-0.01031365686095583,-0.008378216944989334,-0.009001013513742953,-0.009342951339245044,-0.008746720892179937,-0.009805929049429498,-0.008191131013367239
+52.342352,4.954586,-0.0018518335133377638,-0.010076878505631224,-0.003070012778529941,-0.0026791231833100003,0.0009388654499007613,-0.0025225350383452083,-0.00232499671514876,-0.00010555836036931822,-0.00023173181666109616,-0.00012834021207446954,-0.0013629614792395306,-0.00026599112015170297,-0.0036107380414714648,-0.00413617488648956,0.00022359960449096485,0.00038220324370127646,-0.0019922388292433124,-0.0035634149892639338,-0.0017089366541188046,-7.978388958389715e-05,-0.0018093401781893272,-0.0009490414217577575,0.0006551022395917606,-0.006735314262375629,-0.004058105950089501,0.0003135209277554214,-0.0011954506867263267,-0.007095663302791547,-0.0036479305028994614,-0.002815650288171629,-0.004415058815371946,0.0005816181739720639,-0.0003686600605414214,-0.0017702124308341294,-0.010428010499975162,-0.005305438827340259,-0.000496502360291301,-0.0036198050296586542,-0.0030883698356805153,-0.004476208780791189,-0.0008117557431248811,-0.00401667268216869,-0.003235675581080715,-0.006542692296093562,-0.005087830667086374,-0.002600288274155355,-0.0004957169104806144,-0.003767034171656184,-0.006563765760917981,-0.0013509241650419873,-0.0009459168410108113,-0.0031764331128129697,-0.0022014452525429455,-0.006313656860955831,-0.0015782169449893354,-0.006301013513742955,-0.0053429513392450455,-0.0038467208921799372,-0.005305929049429498,-0.005891131013367239
+52.342378,4.954088,-0.0054518335133377635,-0.007876878505631223,-0.008370012778529941,-0.00327912318331,-0.005861134550099239,-0.0029225350383452085,-0.00612499671514876,-0.004605558360369318,-3.173181666109607e-05,-0.00882834021207447,-0.005162961479239531,3.400887984829695e-05,-0.005110738041471465,-0.0069361748864895595,-0.004876400395509036,-0.005417796756298723,-0.004392238829243313,-0.004163414989263934,-0.004508936654118805,-0.0018797838895838969,-0.004709340178189327,-0.004149041421757757,-0.003944897760408239,-0.006735314262375629,-0.0084581059500895,-0.0023864790722445783,-0.004595450686726326,-0.011295663302791548,-0.004547930502899461,-0.00431565028817163,-0.010415058815371947,-0.007518381826027936,-0.006668660060541422,-0.0072702124308341295,-0.00662801049997516,-0.01020543882734026,-0.007696502360291301,-0.007619805029658654,-0.005888369835680515,-0.006476208780791189,-0.005411755743124882,-0.0054166726821686904,-0.001935675581080715,-0.008742692296093563,-0.008587830667086373,-0.006900288274155355,-0.0076957169104806145,-0.006467034171656184,-0.010263765760917979,-0.006950924165041988,-0.005345916841010811,-0.013676433112812969,-0.0078014452525429455,-0.003813656860955831,-0.007778216944989335,-0.008601013513742954,-0.012042951339245045,-0.011546720892179937,-0.0035059290494294988,-0.0021911310133672377
+52.342282,4.953837,-0.0054518335133377635,-0.006476878505631224,-0.006070012778529941,-0.00447912318331,-0.005761134550099239,-0.005722535038345209,-0.00682499671514876,-0.006105558360369318,-0.002631731816661096,-0.00622834021207447,-0.00596296147923953,-0.0033659911201517033,-0.0065107380414714654,-0.006536174886489559,-0.0054764003955090354,-0.006117796756298723,-0.005192238829243313,-0.006363414989263933,-0.005108936654118805,-0.002879783889583897,-0.006609340178189327,-0.003449041421757757,-0.0035448977604082394,-0.00813531426237563,-0.008958105950089501,-0.004186479072244578,-0.0060954506867263265,-0.009395663302791547,-0.007547930502899461,-0.00621565028817163,-0.008415058815371947,-0.008918381826027937,-0.007968660060541422,-0.00847021243083413,-0.01002801049997516,-0.010605438827340257,-0.0088965023602913,-0.008519805029658656,-0.009188369835680516,-0.00907620878079119,-0.006511755743124881,-0.008316672682168692,-0.008435675581080715,-0.007742692296093563,-0.012087830667086373,-0.009300288274155355,-0.0076957169104806145,-0.007367034171656184,-0.012163765760917981,-0.007650924165041987,-0.0067459168410108124,-0.007976433112812969,-0.008701445252542945,-0.009313656860955831,-0.009778216944989334,-0.009001013513742953,-0.009642951339245044,-0.010846720892179936,-0.010405929049429498,-0.009391131013367238
+52.34224,4.953805,-0.007851833513337764,-0.009076878505631224,-0.00827001277852994,-0.00557912318331,-0.00766113455009924,-0.007522535038345209,-0.00902499671514876,-0.007205558360369318,-0.005431731816661097,-0.00912834021207447,-0.00886296147923953,-0.006365991120151703,-0.009310738041471466,-0.00873617488648956,-0.006976400395509035,-0.008717796756298723,-0.008592238829243311,-0.008363414989263932,-0.008208936654118804,-0.006979783889583897,-0.009509340178189328,-0.007849041421757757,-0.00644489776040824,-0.01013531426237563,-0.0111581059500895,-0.006286479072244578,-0.009295450686726327,-0.011095663302791547,-0.01174793050289946,-0.00831565028817163,-0.010615058815371945,-0.011018381826027936,-0.010868660060541421,-0.010070212430834129,-0.014528010499975161,-0.01250543882734026,-0.0110965023602913,-0.011419805029658656,-0.010888369835680516,-0.011776208780791188,-0.008111755743124881,-0.010616672682168692,-0.011835675581080715,-0.012742692296093563,-0.013087830667086374,-0.010600288274155354,-0.009195716910480614,-0.010367034171656183,-0.013863765760917982,-0.010750924165041987,-0.009345916841010812,-0.010076433112812968,-0.010701445252542945,-0.01251365686095583,-0.010678216944989334,-0.012001013513742954,-0.013142951339245045,-0.012146720892179937,-0.013205929049429499,-0.012891131013367238
+52.342189,4.953759,-0.009151833513337765,-0.011176878505631224,-0.010170012778529941,-0.00857912318331,-0.009761134550099238,-0.009222535038345208,-0.011224996715148759,-0.009205558360369319,-0.008031731816661097,-0.01082834021207447,-0.010362961479239532,-0.007165991120151704,-0.010510738041471466,-0.010336174886489559,-0.008376400395509036,-0.010317796756298724,-0.009092238829243312,-0.011263414989263932,-0.010508936654118804,-0.008379783889583898,-0.010609340178189328,-0.009749041421757757,-0.008044897760408239,-0.01013531426237563,-0.013258105950089501,-0.008086479072244579,-0.010395450686726326,-0.013595663302791548,-0.01484793050289946,-0.010715650288171629,-0.013615058815371946,-0.013318381826027936,-0.012068660060541421,-0.01337021243083413,-0.01772801049997516,-0.015105438827340258,-0.0126965023602913,-0.013419805029658656,-0.012688369835680516,-0.013276208780791188,-0.01161175574312488,-0.01341667268216869,-0.013935675581080716,-0.013342692296093563,-0.016287830667086372,-0.012900288274155356,-0.012595716910480614,-0.011967034171656184,-0.01656376576091798,-0.012350924165041986,-0.011545916841010811,-0.013776433112812968,-0.013301445252542945,-0.01601365686095583,-0.014278216944989335,-0.014501013513742955,-0.015742951339245043,-0.014646720892179938,-0.016605929049429497,-0.015691131013367235
+52.342111,4.954225,-0.002351833513337764,-0.0018768785056312237,-0.001870012778529941,0.00102087681669,-0.0023611345500992387,-0.00012253503834520847,-0.00272499671514876,-0.0006055583603693181,0.0017682681833389039,-0.0030283402120744696,-0.002162961479239531,-0.0006659911201517029,-0.002110738041471465,-0.0037361748864895594,-0.001876400395509035,-0.0032177967562987235,-0.0008922388292433124,3.6585010736066444e-05,-0.0013089366541188044,0.0003202161104161028,-0.0016093401781893271,-0.0012490414217577574,0.0020551022395917606,-0.0013353142623756292,-0.004758105950089501,0.0023135209277554214,-0.0019954506867263266,-0.004595663302791548,-0.009547930502899461,0.00048434971182837036,-0.0028150588153719462,-0.0032183818260279363,-0.005568660060541422,-0.0029702124308341295,-0.004528010499975161,-0.007805438827340258,-0.0044965023602913014,-0.005619805029658654,-0.0027883698356805154,-0.002476208780791189,-0.0019117557431248809,-0.0033166726821686906,-0.008235675581080714,-0.006442692296093563,-0.005487830667086374,-0.002200288274155355,-0.0026957169104806144,-0.006867034171656183,-0.00606376576091798,-0.0033509241650419874,-0.0015459168410108116,-0.0036764331128129693,-0.004601445252542946,-0.007713656860955831,-0.0021782169449893352,-0.0026010135137429545,-0.0053429513392450455,-0.004246720892179937,-0.007505929049429498,-0.004891131013367239
+52.342111,4.953683,-0.010651833513337764,-0.012676878505631223,-0.011470012778529942,-0.01027912318331,-0.011061134550099237,-0.011322535038345209,-0.01202499671514876,-0.012405558360369318,-0.009531731816661096,-0.01342834021207447,-0.013662961479239531,-0.011965991120151703,-0.014010738041471465,-0.01473617488648956,-0.012876400395509035,-0.013817796756298724,-0.013792238829243311,-0.013763414989263933,-0.013708936654118806,-0.012279783889583899,-0.014309340178189328,-0.012849041421757757,-0.01244489776040824,-0.015535314262375628,-0.0165581059500895,-0.011886479072244579,-0.014395450686726326,-0.016795663302791548,-0.01724793050289946,-0.01351565028817163,-0.01611505881537195,-0.016118381826027938,-0.01576866006054142,-0.01657021243083413,-0.02062801049997516,-0.01900543882734026,-0.017796502360291303,-0.018219805029658656,-0.017388369835680515,-0.01847620878079119,-0.015611755743124879,-0.01791667268216869,-0.017035675581080715,-0.017842692296093563,-0.020187830667086373,-0.018900288274155356,-0.017795716910480614,-0.017567034171656185,-0.02086376576091798,-0.01885092416504199,-0.01664591684101081,-0.018476433112812968,-0.017801445252542944,-0.021113656860955832,-0.019578216944989336,-0.019001013513742955,-0.020042951339245045,-0.02044672089217994,-0.0209059290494295,-0.020691131013367236
+52.342042,4.954114,-0.0008518335133377638,-0.0021768785056312237,-0.0019700127785299408,0.0008208768166899998,0.00023886544990076134,-0.0004225350383452085,-0.0016249967151487602,-0.0006055583603693181,0.0010682681833389038,-0.0014283402120744695,-0.0011629614792395308,-0.0005659911201517031,-0.002410738041471465,-0.0038361748864895596,-0.0016764003955090352,-0.004917796756298724,-0.003892238829243312,-0.004563414989263934,-0.004408936654118805,-0.004179783889583897,-0.0038093401781893266,-0.0019490414217577575,0.0011551022395917606,-0.00463531426237563,-0.0054581059500895006,0.0008135209277554214,-0.0021954506867263267,-0.003395663302791548,-0.004847930502899461,-0.0011156502881716297,-0.0020150588153719463,-0.001118381826027936,-0.0014686600605414214,-0.0024702124308341295,-0.00442801049997516,-0.0037054388273402585,-0.002396502360291301,-0.0030198050296586544,-0.0027883698356805154,-0.005376208780791189,-0.000511755743124881,-0.00461667268216869,-0.002735675581080715,-0.0024426922960935626,-0.008187830667086374,-0.007200288274155355,-0.003395716910480614,-0.004467034171656184,-0.00726376576091798,-0.002950924165041987,-0.0030459168410108114,-0.0031764331128129697,-0.0017014452525429458,-0.005413656860955831,-0.0026782169449893352,-0.0015010135137429545,-0.0027429513392450452,-0.002746720892179937,-0.0021059290494294986,-0.0034911310133672385
+52.342059,4.953638,-0.016751833513337765,-0.01657687850563122,-0.01607001277852994,-0.01377912318331,-0.016261134550099237,-0.015822535038345208,-0.018324996715148763,-0.01690555836036932,-0.015531731816661098,-0.01822834021207447,-0.01816296147923953,-0.016065991120151703,-0.017610738041471462,-0.02033617488648956,-0.010176400395509036,-0.016717796756298725,-0.01949223882924331,-0.018763414989263934,-0.018908936654118805,-0.016979783889583898,-0.02040934017818933,-0.018249041421757754,-0.01814489776040824,-0.019135314262375632,-0.0211581059500895,-0.015086479072244577,-0.019195450686726328,-0.024195663302791548,-0.024347930502899462,-0.01921565028817163,-0.021615058815371947,-0.021918381826027938,-0.02266866006054142,-0.02387021243083413,-0.023228010499975162,-0.02570543882734026,-0.024696502360291302,-0.025319805029658655,-0.022788369835680517,-0.02747620878079119,-0.023711755743124882,-0.02221667268216869,-0.024235675581080716,-0.025242692296093563,-0.027487830667086374,-0.025900288274155355,-0.023895716910480615,-0.028567034171656184,-0.02626376576091798,-0.02545092416504199,-0.02334591684101081,-0.02057643311281297,-0.026601445252542946,-0.02841365686095583,-0.027978216944989337,-0.029701013513742953,-0.029842951339245045,-0.02884672089217994,-0.030905929049429497,-0.029691131013367237
+52.34202,4.953614,-0.018251833513337763,-0.017976878505631223,-0.019270012778529938,-0.016179123183310003,-0.018461134550099238,-0.018222535038345207,-0.01982499671514876,-0.019305558360369318,-0.017331731816661096,-0.02312834021207447,-0.02156296147923953,-0.019665991120151702,-0.021210738041471465,-0.02383617488648956,-0.021476400395509035,-0.022817796756298726,-0.022792238829243312,-0.023363414989263934,-0.023808936654118804,-0.023079783889583896,-0.02440934017818933,-0.023249041421757755,-0.02224489776040824,-0.02583531426237563,-0.0264581059500895,-0.02188647907224458,-0.022595450686726325,-0.027095663302791548,-0.02614793050289946,-0.023915650288171632,-0.02521505881537195,-0.026418381826027938,-0.02496866006054142,-0.026570212430834128,-0.02932801049997516,-0.02890543882734026,-0.0282965023602913,-0.028219805029658655,-0.026588369835680515,-0.02837620878079119,-0.02531175574312488,-0.02651667268216869,-0.029635675581080715,-0.03024269229609356,-0.033187830667086374,-0.029500288274155358,-0.029295716910480614,-0.030067034171656185,-0.031863765760917984,-0.02915092416504199,-0.02764591684101081,-0.03007643311281297,-0.029001445252542946,-0.03161365686095583,-0.028978216944989338,-0.03130101351374296,-0.030542951339245044,-0.03074672089217994,-0.0326059290494295,-0.03159113101336724
+52.341989,4.953571,-0.019451833513337763,-0.020376878505631222,-0.01997001277852994,-0.01807912318331,-0.01886113455009924,-0.019222535038345208,-0.02082499671514876,-0.01980555836036932,-0.018131731816661095,-0.02282834021207447,-0.02246296147923953,-0.019065991120151702,-0.022110738041471463,-0.02463617488648956,-0.022576400395509035,-0.024017796756298726,-0.024492238829243312,-0.024963414989263934,-0.024808936654118804,-0.023379783889583897,-0.026109340178189326,-0.025149041421757758,-0.02354489776040824,-0.02633531426237563,-0.0283581059500895,-0.02258647907224458,-0.025195450686726326,-0.02779566330279155,-0.02864793050289946,-0.02381565028817163,-0.028315058815371948,-0.02741838182602794,-0.028568660060541422,-0.030070212430834128,-0.032128010499975164,-0.031705438827340254,-0.030296502360291303,-0.030319805029658656,-0.028688369835680516,-0.03017620878079119,-0.028311755743124882,-0.02941667268216869,-0.031135675581080716,-0.03194269229609356,-0.034187830667086375,-0.03170028827415536,-0.031095716910480613,-0.030367034171656183,-0.035563765760917986,-0.031950924165041986,-0.02984591684101081,-0.031576433112812975,-0.03200144525254295,-0.03481365686095583,-0.03287821694498933,-0.032601013513742956,-0.03324295133924505,-0.033046720892179936,-0.0333059290494295,-0.034091131013367235
+52.341652,4.95356,-0.009751833513337764,-0.010276878505631224,-0.008970012778529941,-0.007479123183310001,-0.004961134550099239,-0.008722535038345209,-0.01232499671514876,-0.00930555836036932,-0.011031731816661096,-0.015028340212074469,-0.010362961479239532,-0.006265991120151703,-0.010710738041471466,-0.01223617488648956,-0.010576400395509035,-0.010317796756298724,-0.007392238829243313,-0.008063414989263933,-0.008208936654118804,-0.006779783889583897,-0.009909340178189327,-0.013449041421757757,-0.01104489776040824,-0.01003531426237563,-0.0130581059500895,-0.009286479072244579,-0.011795450686726326,-0.013595663302791548,-0.01834793050289946,-0.007015650288171629,-0.01671505881537195,-0.01711838182602794,-0.013768660060541421,-0.015570212430834129,-0.00782801049997516,-0.01600543882734026,-0.0135965023602913,-0.014519805029658654,-0.012788369835680515,-0.015476208780791189,-0.01141175574312488,-0.012116672682168692,-0.015335675581080715,-0.01824269229609356,-0.018987830667086373,-0.012700288274155355,-0.010395716910480614,-0.016067034171656183,-0.01526376576091798,-0.013750924165041986,-0.011745916841010812,-0.015076433112812967,-0.017001445252542945,-0.02031365686095583,-0.015078216944989335,-0.017501013513742954,-0.012642951339245045,-0.015346720892179937,-0.0168059290494295,-0.019091131013367235
+52.341591,4.953374,-0.005051833513337763,-0.007176878505631224,-0.006870012778529941,-0.00387912318331,-0.004561134550099239,-0.0042225350383452084,-0.00712499671514876,-0.006205558360369318,-0.0035317318166610966,-0.00842834021207447,-0.00736296147923953,-0.005265991120151703,-0.008410738041471466,-0.010036174886489559,-0.008076400395509036,-0.008417796756298723,-0.005892238829243312,-0.010263414989263933,-0.009308936654118805,-0.007679783889583898,-0.009709340178189328,-0.007349041421757758,-0.006044897760408239,-0.01033531426237563,-0.0104581059500895,-0.005086479072244578,-0.007795450686726326,-0.010295663302791547,-0.01054793050289946,-0.006415650288171629,-0.009215058815371945,-0.008418381826027936,-0.00896866006054142,-0.00987021243083413,-0.01172801049997516,-0.011205438827340257,-0.0100965023602913,-0.010119805029658655,-0.008788369835680515,-0.010576208780791189,-0.007811755743124882,-0.010616672682168692,-0.010335675581080716,-0.010642692296093562,-0.015387830667086372,-0.012900288274155356,-0.010895716910480614,-0.011767034171656183,-0.01406376576091798,-0.010250924165041987,-0.008945916841010811,-0.010576433112812969,-0.0010014452525429457,-0.01221365686095583,-0.010678216944989334,-0.009901013513742955,-0.011042951339245044,-0.010746720892179937,-0.010205929049429498,-0.007691131013367238
+52.341564,4.95344,-0.005051833513337763,-0.007276878505631224,-0.006870012778529941,-0.00517912318331,-0.004361134550099239,-0.004522535038345208,-0.00842499671514876,-0.006805558360369318,-0.0043317318166610965,-0.00782834021207447,-0.0077629614792395305,-0.006365991120151703,-0.008210738041471466,-0.00963617488648956,-0.008176400395509036,-0.007917796756298723,-0.007792238829243313,-0.007663414989263934,-0.009108936654118804,-0.006979783889583897,-0.009809340178189328,-0.006149041421757757,-0.005644897760408239,-0.00973531426237563,-0.010658105950089501,-0.004186479072244578,-0.006595450686726326,-0.008795663302791547,-0.00994793050289946,-0.00471565028817163,-0.009215058815371945,-0.008218381826027936,-0.008068660060541421,-0.00737021243083413,-0.01202801049997516,-0.009905438827340258,-0.0097965023602913,-0.009319805029658654,-0.008588369835680516,-0.009676208780791189,-0.007811755743124882,-0.009516672682168692,-0.009735675581080716,-0.008842692296093562,-0.013787830667086373,-0.011500288274155356,-0.009295716910480614,-0.009967034171656184,-0.013263765760917982,-0.009150924165041987,-0.007545916841010811,-0.00817643311281297,-0.007201445252542946,-0.01031365686095583,-0.008178216944989335,-0.009301013513742953,-0.008142951339245044,-0.009246720892179938,-0.009305929049429498,-0.009491131013367238
+52.341273,4.952913,-0.007051833513337764,-0.007976878505631224,-0.008470012778529941,-0.00597912318331,-0.007461134550099239,-0.008222535038345209,-0.01002499671514876,-0.0078055583603693175,-0.0063317318166610966,-0.00972834021207447,-0.009562961479239532,-0.007965991120151703,-0.011110738041471465,-0.00873617488648956,-0.009676400395509035,-0.009017796756298723,-0.010692238829243311,-0.011463414989263933,-0.010908936654118805,-0.009279783889583898,-0.011309340178189327,-0.008749041421757758,-0.009144897760408239,-0.01243531426237563,-0.0119581059500895,-0.007886479072244578,-0.009595450686726327,-0.013295663302791548,-0.01104793050289946,-0.01041565028817163,-0.012015058815371946,-0.012318381826027935,-0.01016866006054142,-0.011270212430834129,-0.01412801049997516,-0.012605438827340259,-0.0130965023602913,-0.011019805029658655,-0.012588369835680516,-0.013476208780791189,-0.01081175574312488,-0.013316672682168691,-0.011635675581080715,-0.013042692296093563,-0.017787830667086373,-0.017100288274155356,-0.011095716910480615,-0.015967034171656184,-0.01646376576091798,-0.013750924165041986,-0.012645916841010811,-0.014376433112812968,-0.015101445252542946,-0.01621365686095583,-0.015378216944989335,-0.012301013513742954,-0.015942951339245046,-0.014946720892179938,-0.014005929049429499,-0.012391131013367238
+52.341135,4.952692,0.0022481664866622363,-0.0021768785056312237,0.0023299872214700592,0.004420876816689999,0.002538865449900761,-0.00032253503834520845,-0.00062499671514876,0.0015944416396306818,0.004568268183338903,0.0009716597879255303,0.0014370385207604693,0.002534008879848297,0.00018926195852853487,-0.00033617488648955956,0.003323599604490965,0.004682203243701276,0.002807761170756687,0.0021365850107360664,0.0027910633458811955,0.004920216110416103,0.003090659821810673,0.004550958578242242,0.00415510223959176,6.468573762437053e-05,0.001041894049910499,0.004913520927755421,0.0013045493132736734,-0.0006956633027915479,-0.0006479305028994611,0.0019843497118283704,0.0011849411846280536,-0.0009183818260279362,3.133993945857855e-05,-0.0015702124308341295,-0.0015280104999751605,-0.0024054388273402586,0.000103497639708699,-0.0023198050296586543,-0.0005883698356805155,-0.0020762087807911886,0.002188244256875119,-0.00021667268216869057,0.005364324418919285,0.0012573077039064373,-0.0030878306670863737,9.971172584464496e-05,0.0018042830895193857,0.001532965828343816,-0.00336376576091798,0.0020490758349580125,0.0023540831589891884,0.0015235668871870305,0.001998554747457054,-0.0003136568609558309,-0.0013782169449893353,-0.0006010135137429545,-0.0043429513392450455,-0.004646720892179937,-0.0023059290494294987,-0.002391131013367238
+52.340964,4.952552,-0.0010518335133377639,-0.0012768785056312235,-0.004970012778529941,-0.00227912318331,-0.0017611345500992387,-0.0022225350383452084,-0.00462499671514876,-0.004605558360369318,-0.003631731816661096,-0.0058283402120744695,-0.0057629614792395305,-0.0037659911201517026,-0.007010738041471465,-0.00673617488648956,-0.0054764003955090354,-0.005317796756298723,-0.006292238829243312,-0.006363414989263933,-0.005608936654118805,-0.004879783889583897,-0.007709340178189327,-0.005849041421757757,-0.007644897760408239,-0.009335314262375629,-0.0104581059500895,-0.004986479072244579,-0.006295450686726326,-0.008995663302791548,-0.00974793050289946,-0.00571565028817163,-0.007715058815371946,-0.008618381826027937,-0.006368660060541422,-0.00817021243083413,-0.00892801049997516,-0.011005438827340258,-0.0090965023602913,-0.011019805029658655,-0.009488369835680516,-0.010776208780791188,-0.006511755743124881,-0.012016672682168692,-0.012235675581080716,-0.014042692296093562,-0.014087830667086373,-0.012900288274155356,-0.011495716910480614,-0.015467034171656183,-0.01406376576091798,-0.011750924165041986,-0.010645916841010811,-0.01327643311281297,-0.011501445252542946,-0.01311365686095583,-0.011678216944989335,-0.012701013513742953,-0.011442951339245045,-0.011046720892179937,-0.012405929049429498,-0.013291131013367239
+52.340856,4.95231,-0.0016518335133377637,-0.004176878505631224,-0.001470012778529941,-0.00077912318331,-0.002061134550099239,0.0006774649616547915,-0.00422499671514876,-0.002105558360369318,0.0010682681833389038,-0.0035283402120744696,-0.002662961479239531,-6.599112015170309e-05,-0.002310738041471465,-0.0029361748864895594,-0.0017764003955090353,0.0007822032437012764,-0.0026922388292433125,-0.0016634149892639336,-0.0009089366541188045,0.001520216110416103,-0.004009340178189327,-0.0011490414217577574,-0.0011448977604082396,-0.003135314262375629,-0.0038581059500895007,0.0003135209277554214,-0.0013954506867263267,-0.006095663302791547,-0.0069479305028994605,-0.0019156502881716296,-0.004915058815371946,-0.0042183818260279355,-0.004168660060541422,-0.00667021243083413,-0.006828010499975161,-0.008205438827340258,-0.002996502360291301,-0.006619805029658654,-0.005088369835680516,-0.006576208780791189,-0.002011755743124881,-0.0028166726821686906,-0.005935675581080714,-0.004642692296093562,-0.007687830667086374,-0.005100288274155355,-0.003895716910480614,-0.004367034171656184,-0.00766376576091798,-0.0031509241650419877,-0.0005459168410108114,-0.003976433112812969,-0.003301445252542946,-0.003313656860955831,-0.002278216944989335,-0.0018010135137429544,-0.013342951339245044,-0.005346720892179937,-0.0022059290494294984,-0.005891131013367239
+52.340833,4.952357,-0.0037518335133377633,-0.0033768785056312233,-0.0029700127785299408,-0.0027791231833100005,-0.005161134550099239,-0.0027225350383452084,-0.00502499671514876,-0.0026055583603693186,-0.0012317318166610962,-0.00522834021207447,-0.004262961479239531,-0.002565991120151703,-0.003010738041471465,-0.00633617488648956,-0.0025764003955090348,-0.0003177967562987236,-0.0035922388292433122,-0.004963414989263934,-0.0035089366541188045,-0.0007797838895838971,-0.004309340178189327,-0.003149041421757757,-0.00204489776040824,-0.005035314262375629,-0.004658105950089501,-0.0006864790722445786,-0.0028954506867263268,-0.007595663302791548,-0.003847930502899461,-0.0032156502881716294,-0.0038150588153719463,-0.007818381826027936,-0.003668660060541421,-0.005870212430834129,-0.008428010499975162,-0.006105438827340258,-0.006796502360291301,-0.008119805029658655,-0.004088369835680516,-0.005476208780791188,-0.003111755743124881,-0.00401667268216869,-0.004935675581080715,-0.005542692296093562,-0.010787830667086374,-0.0055002882741553545,-0.0034957169104806144,-0.004367034171656184,-0.008763765760917981,-0.0026509241650419873,-0.0019459168410108113,-0.0021764331128129692,-0.006101445252542945,-0.0065136568609558305,-0.005978216944989336,-0.006101013513742955,-0.007142951339245046,-0.005546720892179937,-0.005605929049429498,-0.005691131013367238
+52.340824,4.95233,-0.0032518335133377638,-0.0028768785056312233,-0.0043700127785299405,-0.00387912318331,-0.0017611345500992387,-0.004122535038345208,-0.0029249967151487597,-0.003305558360369318,-0.0015317318166610965,-0.00452834021207447,-0.005162961479239531,-0.003865991120151703,-0.003410738041471465,-0.004536174886489559,-0.003276400395509035,-0.0007177967562987234,-0.005192238829243313,-0.005163414989263934,-0.004708936654118805,-0.003679783889583897,-0.004409340178189327,-0.0024490414217577575,-0.0018448977604082393,-0.0065353142623756294,-0.005258105950089501,-0.0003864790722445787,-0.0050954506867263265,-0.005595663302791548,-0.0037479305028994612,-0.003115650288171629,-0.004415058815371946,-0.007618381826027936,-0.002068660060541421,-0.0042702124308341294,-0.0035280104999751605,-0.005405438827340259,-0.003496502360291301,-0.0037198050296586545,-0.0037883698356805154,-0.005376208780791189,-0.0037117557431248813,-0.004516672682168691,-0.004735675581080715,-0.004442692296093563,-0.012487830667086374,-0.007100288274155355,-0.002895716910480614,-0.005867034171656183,-0.01006376576091798,-0.003850924165041988,-0.0038459168410108118,-0.0018764331128129693,-0.0055014452525429455,-0.004213656860955831,-0.002778216944989335,-0.0035010135137429547,-0.0022429513392450452,-0.002346720892179937,-0.004705929049429498,-0.0017911310133672381
+52.340751,4.95217,-0.0006518335133377637,-0.0016768785056312237,-0.001870012778529941,0.00042087681668999985,-0.0015611345500992386,-0.0010225350383452085,-0.0010249967151487601,0.0003944416396306818,0.003468268183338904,-0.0015283402120744695,-0.0010629614792395307,0.002034008879848297,-0.00031073804147146517,0.0009638251135104404,0.002323599604490965,0.0029822032437012763,0.0003077611707566876,0.0001365850107360665,0.0017910633458811955,0.003920216110416102,0.001890659821810673,0.0017509585782422424,0.0030551022395917606,0.0003646857376243705,-0.001158105950089501,0.004213520927755421,0.00010454931327367339,-0.002095663302791548,-0.0011479305028994611,0.0008843497118283702,-0.0012150588153719464,-0.002718381826027936,0.0005313399394585786,-0.0018702124308341294,-0.0030280104999751605,-0.0014054388273402585,-0.000796502360291301,-0.0007198050296586544,0.00021163016431948443,0.0006237912192088111,0.0020882442568751188,0.0013833273178313094,0.0008643244189192848,0.0011573077039064375,-0.0006878306670863735,0.0030997117258446455,0.0017042830895193856,-0.00026703417165618393,-0.0014637657609179802,0.002849075834958013,0.004454083158989188,0.0014235668871870307,-0.0007014452525429457,-0.001213656860955831,-0.0011782169449893352,-0.0001010135137429546,-0.0017429513392450452,-0.004446720892179937,-0.0025059290494294987,-0.0009911310133672382
+52.340382,4.951659,0.0009481664866622362,-0.003976878505631224,-0.0016700127785299408,0.0016208768166899997,3.88654499007613e-05,0.0007774649616547916,-0.00422499671514876,-0.0022055583603693184,0.0015682681833389038,-0.0038283402120744695,-0.0014629614792395307,-0.002665991120151703,-0.002010738041471465,-0.0007361748864895595,2.359960449096484e-05,0.002282203243701276,-0.0007922388292433125,-0.0021634149892639336,-0.0009089366541188045,-0.0007797838895838971,0.000490659821810673,-0.00014904142175775755,0.0030551022395917606,-0.0005353142623756294,-0.0018581059500895009,0.0024135209277554213,0.0010045493132736735,-0.001895663302791548,-0.0011479305028994611,0.0008843497118283702,-0.0015150588153719463,-0.0025183818260279362,-0.0002686600605414215,-0.0017702124308341294,-0.0016280104999751605,-0.0021054388273402586,-0.001196502360291301,-0.0004198050296586544,-0.0005883698356805155,-0.0009762087807911887,0.001388244256875119,0.0008833273178313094,0.001264324418919285,0.0026573077039064377,-0.005287830667086373,-0.004400288274155355,0.0023042830895193857,0.001032965828343816,-0.0021637657609179803,0.0016490758349580125,0.0034540831589891883,0.0017235668871870306,0.0013985547474570544,-0.0003136568609558309,-0.0003782169449893352,-0.0005010135137429547,-0.0019429513392450453,-0.0007467208921799371,-0.0021059290494294986,0.0004088689866327619
+52.340387,4.951442,-0.0019518335133377636,-0.0006768785056312236,-0.003270012778529941,0.00102087681669,-0.0015611345500992386,-0.0026225350383452086,-0.00122499671514876,-0.004105558360369318,-0.000831731816661096,-0.00362834021207447,-0.00536296147923953,-0.002765991120151703,-0.005410738041471465,-0.0029361748864895594,-0.002976400395509035,-0.0025177967562987234,-0.002892238829243312,-0.005663414989263934,-0.0011089366541188047,-0.004179783889583897,-0.005609340178189327,-0.004449041421757757,-0.0011448977604082396,-0.00873531426237563,-0.006658105950089501,-0.0019864790722445786,-0.005195450686726326,-0.007295663302791548,-0.005647930502899461,-0.003815650288171629,-0.002615058815371946,-0.005818381826027936,-0.0019686600605414214,-0.00567021243083413,-0.005128010499975161,-0.0065054388273402585,-0.006196502360291302,-0.0047198050296586545,-0.006688369835680516,-0.005376208780791189,-0.0066117557431248815,0.0032833273178313094,-0.005135675581080715,-0.0020426922960935625,-0.010887830667086373,-0.005300288274155355,-0.006095716910480615,-0.009967034171656184,-0.00586376576091798,-0.004350924165041988,-0.0021459168410108117,-0.00637643311281297,-0.004601445252542946,-0.007513656860955831,-0.008878216944989335,-0.0076010135137429555,-0.006142951339245046,-0.004646720892179937,-0.006905929049429499,-0.0044911310133672385
+52.340329,4.951544,-0.006051833513337763,-0.006976878505631224,-0.010170012778529941,-0.00467912318331,-0.0062611345500992385,-0.006822535038345208,-0.00712499671514876,-0.006005558360369318,-0.0043317318166610965,-0.007728340212074469,-0.007262961479239531,-0.003865991120151703,-0.007110738041471465,-0.00703617488648956,-0.006576400395509036,-0.004917796756298724,-0.006892238829243312,-0.008863414989263933,-0.006708936654118805,-0.005279783889583897,-0.007909340178189327,-0.006749041421757758,-0.00644489776040824,-0.008535314262375629,-0.0119581059500895,-0.007286479072244579,-0.007595450686726327,-0.011395663302791547,-0.01024793050289946,-0.00971565028817163,-0.009315058815371946,-0.011518381826027936,-0.009168660060541421,-0.011270212430834129,-0.01212801049997516,-0.01070543882734026,-0.0113965023602913,-0.012119805029658655,-0.010588369835680516,-0.010376208780791188,-0.006511755743124881,-0.007516672682168691,-0.010735675581080715,-0.008542692296093562,-0.012287830667086374,-0.008100288274155355,-0.009195716910480614,-0.011867034171656184,-0.01416376576091798,-0.010950924165041988,-0.006545916841010812,-0.01107643311281297,-0.010301445252542946,-0.012713656860955831,-0.012278216944989335,-0.013101013513742954,-0.013442951339245045,-0.011646720892179937,-0.014605929049429499,-0.010991131013367239
+52.340289,4.951481,-0.006151833513337764,-0.005876878505631224,-0.004670012778529941,-0.00487912318331,-0.007161134550099239,-0.006922535038345209,-0.00762499671514876,-0.005705558360369318,-0.003031731816661096,-0.00522834021207447,-0.006162961479239531,-0.0018659911201517028,-0.0062107380414714655,-0.004236174886489559,-0.003676400395509035,-0.0017177967562987237,-0.005192238829243313,-0.005063414989263933,-0.0038089366541188044,-0.0018797838895838969,-0.004709340178189327,-0.004849041421757757,-0.00304489776040824,-0.00633531426237563,-0.008058105950089501,-0.004086479072244579,-0.006295450686726326,-0.009695663302791547,-0.008647930502899462,-0.00771565028817163,-0.006515058815371946,-0.009918381826027936,-0.0076686600605414225,-0.008670212430834129,-0.01032801049997516,-0.009805438827340258,-0.0088965023602913,-0.010219805029658654,-0.010088369835680516,-0.008876208780791189,-0.00881175574312488,-0.00671667268216869,-0.007735675581080716,-0.007542692296093562,-0.011687830667086374,-0.007300288274155355,-0.007495716910480614,-0.010967034171656185,-0.01236376576091798,-0.007350924165041987,-0.0067459168410108124,-0.007976433112812969,-0.009201445252542946,-0.01191365686095583,-0.009778216944989334,-0.011301013513742953,-0.011742951339245045,-0.011546720892179937,-0.013505929049429499,-0.010991131013367239
+52.340241,4.951411,-0.006351833513337763,-0.010076878505631224,-0.006670012778529941,-0.006579123183310001,-0.008461134550099237,-0.007922535038345209,-0.00872499671514876,-0.007605558360369319,-0.004031731816661097,-0.00832834021207447,-0.008362961479239532,-0.001765991120151703,-0.006610738041471466,-0.00473617488648956,-0.004876400395509036,-0.0026177967562987237,-0.004792238829243313,-0.006563414989263934,-0.0029089366541188042,-0.0016797838895838972,-0.005709340178189327,-0.006649041421757758,-0.004244897760408239,-0.00843531426237563,-0.0098581059500895,-0.006786479072244578,-0.009195450686726326,-0.011695663302791547,-0.009247930502899461,-0.009015650288171629,-0.010615058815371945,-0.012318381826027935,-0.00836866006054142,-0.01047021243083413,-0.01182801049997516,-0.011505438827340259,-0.0097965023602913,-0.011119805029658656,-0.011988369835680515,-0.009676208780791189,-0.010111755743124881,-0.00821667268216869,-0.008535675581080714,-0.008442692296093563,-0.010587830667086373,-0.004300288274155355,-0.0076957169104806145,-0.010667034171656183,-0.011463765760917979,-0.008850924165041987,-0.007845916841010811,-0.00847643311281297,-0.010301445252542946,-0.01141365686095583,-0.010378216944989334,-0.011701013513742954,-0.013142951339245045,-0.011546720892179937,-0.014005929049429499,-0.012791131013367239
+52.340223,4.951363,-0.006351833513337763,-0.008176878505631225,-0.00827001277852994,-0.00547912318331,-0.009661134550099239,-0.006922535038345209,-0.0065249967151487604,-0.005705558360369318,-0.0021317318166610964,-0.0048283402120744695,-0.006462961479239531,-0.00026599112015170297,-0.0062107380414714655,-0.0020361748864895597,-0.001376400395509035,-0.0013177967562987235,-0.004492238829243312,-0.006663414989263934,-0.004108936654118805,-0.00027978388958389724,-0.004709340178189327,-0.004449041421757757,-0.0007448977604082394,-0.00633531426237563,-0.0078581059500895,-0.0026864790722445782,-0.006295450686726326,-0.008995663302791548,-0.008947930502899461,-0.004815650288171629,-0.007715058815371946,-0.010418381826027936,-0.006268660060541421,-0.006870212430834129,-0.009028010499975161,-0.008905438827340259,-0.0131965023602913,-0.007919805029658654,-0.009588369835680515,-0.009276208780791188,-0.0066117557431248815,-0.009216672682168692,-0.0040356755810807155,-0.0063426922960935625,-0.010587830667086373,-0.004100288274155355,-0.005195716910480614,-0.007767034171656184,-0.01116376576091798,-0.004350924165041988,-0.006445916841010812,-0.008376433112812968,-0.009201445252542946,-0.00911365686095583,-0.009878216944989335,-0.009101013513742954,-0.011942951339245046,-0.011946720892179937,-0.012505929049429498,-0.009591131013367239
+52.340169,4.951284,-0.004551833513337764,-0.0070768785056312235,-0.005270012778529941,-0.00517912318331,-0.007161134550099239,-0.007022535038345209,-0.00662499671514876,-0.007005558360369318,-0.0043317318166610965,-0.006028340212074469,-0.006262961479239531,-0.0018659911201517028,-0.004710738041471465,-0.00443617488648956,-0.005276400395509036,-0.0026177967562987237,-0.005392238829243313,-0.005063414989263933,-0.0040089366541188045,-0.003079783889583897,-0.005309340178189327,-0.005649041421757758,-0.00204489776040824,-0.005535314262375629,-0.0077581059500895005,-0.004186479072244578,-0.007295450686726327,-0.010395663302791548,-0.00794793050289946,-0.00651565028817163,-0.009215058815371945,-0.010818381826027935,-0.0073686600605414225,-0.007770212430834129,-0.009928010499975161,-0.009205438827340259,-0.0088965023602913,-0.009919805029658654,-0.008988369835680516,-0.008876208780791189,-0.007411755743124881,-0.00531667268216869,-0.004635675581080715,-0.006742692296093563,-0.012287830667086374,-0.006400288274155355,-0.006295716910480614,-0.011367034171656184,-0.01176376576091798,-0.010050924165041986,-0.006345916841010811,-0.00727643311281297,-0.008901445252542946,-0.01171365686095583,-0.0052782169449893356,-0.011301013513742953,-0.011942951339245046,-0.010646720892179938,-0.011305929049429498,-0.008791131013367239
+52.39749,4.96002,-0.0010518335133377639,-7.687850563122355e-05,-0.00037001277852994095,0.0005208768166899998,-0.0006611345500992386,-0.0004225350383452085,-0.00172499671514876,-5.558360369318171e-06,0.0008682681833389039,-0.004028340212074469,-0.0007629614792395308,0.002634008879848297,-1.0738041471465142e-05,0.0019638251135104404,0.0011235996044909647,0.00048220324370127645,0.0008077611707566876,0.0021365850107360664,0.0036910633458811957,0.002520216110416103,0.0034906598218106726,0.0010509585782422423,0.004355102239591761,0.0013646857376243705,0.00014189404991049896,0.004213520927755421,0.00030454931327367343,-0.0014956633027915479,-0.002047930502899461,0.0010843497118283702,-0.002615058815371946,-0.003118381826027936,3.133993945857855e-05,0.0005297875691658706,-0.0009280104999751604,-0.0017054388273402587,0.000303497639708699,-0.0021198050296586547,-0.0012883698356805154,-0.0012762087807911887,0.0001882442568751189,0.0007833273178313093,-0.002735675581080715,-0.0021426922960935627,0.0005121693329136266,0.0007997117258446448,0.003204283089519386,0.001732965828343816,-0.00286376576091798,0.0023490758349580124,0.0018540831589891884,0.0032235668871870306,-1.4452525429457406e-06,-0.0010136568609558309,2.1783055010664797e-05,0.0004989864862570455,-0.0013429513392450452,-0.0012467208921799371,-0.0028059290494294987,-0.00039113101336723816
+52.39739,4.960134,0.0015481664866622362,0.0018231214943687764,-0.004570012778529941,0.0006208768166899998,-0.0013611345500992387,-0.0002225350383452084,-0.00342499671514876,-0.0035055583603693184,-0.00023173181666109616,-0.005128340212074469,-0.00466296147923953,-0.003265991120151703,-0.004310738041471466,-0.00533617488648956,-0.004276400395509036,-0.007717796756298724,-0.006392238829243313,-0.004363414989263933,-0.004708936654118805,-0.006179783889583897,-0.0035093401781893267,-0.003449041421757757,0.0004551022395917605,-0.0039353142623756296,-0.003358105950089501,-0.002586479072244579,-0.0023954506867263268,-0.001195663302791548,-0.0046479305028994606,-0.0017156502881716296,-0.0032150588153719464,-0.00041838182602793616,-0.0027686600605414213,-0.0008702124308341294,-0.0036280104999751603,-0.0033054388273402588,-0.0030965023602913012,-0.0008198050296586544,-0.004388369835680516,-0.004376208780791188,-0.002711755743124881,-0.0054166726821686904,-0.002835675581080715,0.0012573077039064373,-0.010887830667086373,-0.010100288274155355,-0.008195716910480615,-0.004467034171656184,-0.008163765760917981,0.0020490758349580125,-0.005145916841010812,-0.0014764331128129696,0.0013985547474570544,-0.006013656860955831,-0.0015782169449893354,0.0002989864862570454,-0.0016429513392450454,0.003453279107820063,-0.0006059290494294985,0.0002088689866327619
+52.397237,4.960366,-0.001751833513337764,0.00042312149436877643,-0.005570012778529941,-0.0011791231833100002,-0.002461134550099239,-0.0014225350383452085,-0.00552499671514876,-0.004105558360369318,-0.0031317318166610964,-0.00462834021207447,-0.0035629614792395308,-0.002165991120151703,-0.004810738041471465,-0.00853617488648956,-0.005276400395509036,-0.0025177967562987234,-0.006392238829243313,-0.005363414989263933,-0.005108936654118805,-0.004979783889583897,-0.003309340178189327,-0.005649041421757758,-0.0026448977604082396,-0.0035353142623756294,-0.003458105950089501,-0.00028647907224457845,-0.0026954506867263267,-0.003795663302791548,-0.004247930502899461,-0.0030156502881716297,-0.006715058815371946,-0.004818381826027936,-0.004168660060541422,-0.004570212430834129,-0.00612801049997516,-0.006705438827340259,-0.003996502360291301,-0.005619805029658654,-0.0031883698356805156,-0.007576208780791188,-0.0037117557431248813,-0.00431667268216869,-0.005735675581080716,-0.007442692296093563,-0.008687830667086373,-0.009300288274155355,-0.007095716910480615,-0.004067034171656184,-0.00956376576091798,-0.0027509241650419875,-0.005245916841010812,-0.0028764331128129698,-0.002301445252542946,-0.007713656860955831,-0.005178216944989335,-0.003401013513742955,-0.004942951339245045,-0.0038467208921799372,-0.0031059290494294986,-0.005691131013367238
+52.397135,4.960481,0.0011481664866622363,-0.00047687850563122355,-0.0019700127785299408,0.0011208768166899997,0.0006388654499007614,0.0012774649616547915,-0.0010249967151487601,0.001394441639630682,-0.000331731816661096,-0.0027283402120744696,-0.0005629614792395308,-0.00026599112015170297,-0.0013107380414714652,-0.004236174886489559,-0.0017764003955090353,-0.0015177967562987236,-0.004292238829243312,-0.003263414989263934,-0.0003089366541188046,-0.001979783889583897,-0.0010093401781893273,-0.0026490414217577576,0.0004551022395917605,-0.0030353142623756294,-0.001958105950089501,0.00041352092775542144,-0.00019545068672632664,-0.004595663302791548,-0.003547930502899461,0.00018434971182837022,-0.004515058815371946,-0.0015183818260279362,-0.0024686600605414214,-0.0033702124308341293,-0.0032280104999751606,-0.004305438827340259,-0.0025965023602913012,-0.003519805029658654,-0.0025883698356805153,-0.005776208780791188,-0.002311755743124881,-0.0011166726821686904,-0.0063356755810807155,-0.002842692296093563,-0.005787830667086374,-0.002700288274155355,-0.002895716910480614,-0.004067034171656184,-0.00576376576091798,-0.0031509241650419877,-0.0021459168410108117,-0.0004764331128129693,-0.0038014452525429454,-0.007513656860955831,-0.002278216944989335,-0.0049010135137429545,-0.005142951339245046,-0.003646720892179937,-0.0018059290494294986,-0.0033911310133672382
+52.397063,4.960545,0.0027481664866622364,0.013423121494368776,0.009429987221470058,0.00762087681669,0.007138865449900761,0.0056774649616547915,0.007275003284851239,0.007594441639630682,0.011168268183338903,0.01017165978792553,0.00723703852076047,0.004134008879848296,0.006389261958528535,0.0059638251135104405,0.006923599604490965,0.0053822032437012765,0.004107761170756687,0.005636585010736066,0.006991063345881195,0.006420216110416103,0.008890659821810672,0.006250958578242242,0.008655102239591761,0.007164685737624371,0.005941894049910499,0.010713520927755422,0.008404549313273673,0.007204336697208453,0.0028520694971005387,0.00838434971182837,0.002484941184628054,0.005581618173972064,0.0039313399394585785,0.0043297875691658706,0.004671989500024839,0.0023945611726597415,0.004203497639708699,0.0021801949703413454,0.004111630164319484,0.0015237912192088113,0.005988244256875119,0.004983327317831309,0.0002643244189192849,-0.0011426922960935625,0.0035121693329136262,0.005399711725844645,0.004104283089519386,0.0043329658283438165,-0.00016376576091798028,0.003949075834958012,0.0035540831589891885,0.00682356688718703,0.007998554747457054,0.0037863431390441687,0.004421783055010665,0.005298986486257045,0.0018570486607549547,0.003453279107820063,0.006894070950570502,0.015508868986632762
+52.396987,4.960651,-0.0006518335133377637,-0.0018768785056312237,-0.0024700127785299408,0.0009208768166899999,3.88654499007613e-05,-2.253503834520848e-05,-0.00302499671514876,9.444163963068177e-05,-0.001031731816661096,-0.0022283402120744696,-0.0008629614792395309,0.000734008879848297,-0.0013107380414714652,-0.004036174886489559,-0.0015764003955090352,-0.0032177967562987235,-0.0024922388292433124,-0.0020634149892639333,-0.0003089366541188046,-0.002079783889583897,9.065982181067278e-05,-0.003449041421757757,-0.0014448977604082395,-0.0007353142623756295,-0.002458105950089501,0.0017135209277554214,-0.0006954506867263265,-0.001695663302791548,-0.004147930502899461,0.0013843497118283703,-0.004315058815371946,-0.0018183818260279361,-0.0029686600605414214,-0.0012702124308341294,-0.0030280104999751605,-0.0025054388273402584,-0.001196502360291301,-0.0028198050296586548,-0.0020883698356805157,-0.004776208780791189,-0.0012117557431248812,-0.0010166726821686904,-0.005235675581080715,-0.006642692296093562,-0.005487830667086374,-0.003300288274155355,-0.0012957169104806142,-0.003867034171656184,-0.00586376576091798,-0.0017509241650419875,-0.0003459168410108115,0.00012356688718703052,-0.0010014452525429457,-0.004813656860955831,-0.002478216944989335,-0.0036010135137429546,-0.0010429513392450453,-0.0020467208921799373,-0.0038059290494294987,-0.0017911310133672381
+52.396976,4.960597,0.0018481664866622362,0.00022312149436877645,-0.0029700127785299408,-0.00357912318331,3.88654499007613e-05,0.0013774649616547915,-0.0035249967151487604,-0.002705558360369318,0.0009682681833389037,-0.0035283402120744696,-0.002162961479239531,-6.599112015170309e-05,-0.002010738041471465,-0.004836174886489559,-0.002376400395509035,-0.008917796756298724,-0.003892238829243312,-0.0047634149892639335,-0.003708936654118804,-0.0026797838895838972,-0.002009340178189327,-0.0038490414217577573,-0.00204489776040824,-0.0024353142623756295,-0.0025581059500895008,-0.00028647907224457845,-0.0017954506867263265,-0.003395663302791548,-0.004047930502899461,0.00048434971182837036,-0.006415058815371946,-0.002318381826027936,-0.0035686600605414217,-0.0021702124308341296,-0.004528010499975161,-0.006005438827340259,-0.0027965023602913013,-0.0031198050296586547,-0.0033883698356805157,-0.006176208780791189,-0.0035117557431248807,-0.0036166726821686905,-0.009735675581080716,-0.005142692296093563,-0.0059878306670863735,-0.004300288274155355,-0.002895716910480614,-0.004367034171656184,-0.008163765760917981,-0.0025509241650419874,-0.0030459168410108114,-0.0013764331128129693,-0.003301445252542946,-0.002813656860955831,-0.0005782169449893352,-0.0007010135137429545,-0.005242951339245045,-0.002146720892179937,9.407095057050148e-05,-0.000891131013367238
+52.396885,4.960754,-0.001251833513337764,-0.0037768785056312235,-0.004070012778529941,-0.0018791231833100003,-0.002161134550099239,-0.0006225350383452085,-0.00332499671514876,-0.0009055583603693183,-0.0006317318166610963,-0.004428340212074469,-0.003962961479239531,-0.0033659911201517033,-0.004510738041471465,-0.00603617488648956,-0.003476400395509035,-0.006317796756298723,-0.006092238829243313,-0.004663414989263934,-0.0043089366541188045,-0.005279783889583897,-0.002309340178189327,-0.004849041421757757,-4.489776040823932e-05,-0.0032353142623756295,-0.004058105950089501,-0.00018647907224457862,-0.0032954506867263265,-0.003195663302791548,-0.002847930502899461,-0.0005156502881716299,-0.004115058815371946,-0.002818381826027936,-0.0021686600605414215,-0.0017702124308341294,-0.0030280104999751605,-0.0035054388273402584,-0.001496502360291301,-0.0033198050296586543,-0.0026883698356805156,-0.0058762087807911895,-0.002411755743124881,-0.0024166726821686904,-0.0056356755810807145,-0.005842692296093562,-0.005087830667086374,-0.0036002882741553548,-0.0032957169104806143,-0.004467034171656184,-0.00756376576091798,-0.0020509241650419874,-0.0019459168410108113,-0.0006764331128129694,-0.0006014452525429457,-0.003313656860955831,-0.002978216944989335,-0.0014010135137429544,-0.002542951339245045,-0.002946720892179937,-0.0019059290494294985,-0.0016911310133672379
+52.396856,4.960843,-0.009151833513337765,-0.009576878505631223,-0.009870012778529941,-0.0060791231833100005,-0.008261134550099239,-0.008222535038345209,-0.01052499671514876,-0.007105558360369318,-0.0066317318166610965,-0.01192834021207447,-0.00946296147923953,-0.008365991120151704,-0.008610738041471465,-0.011236174886489559,-0.008376400395509036,-0.011417796756298724,-0.010592238829243312,-0.009763414989263933,-0.0077089366541188056,-0.009379783889583899,-0.007809340178189327,-0.010449041421757758,-0.007344897760408239,-0.00863531426237563,-0.0111581059500895,-0.006586479072244578,-0.009395450686726326,-0.009595663302791548,-0.010747930502899461,-0.009015650288171629,-0.009715058815371946,-0.010718381826027936,-0.00926866006054142,-0.00907021243083413,-0.01182801049997516,-0.012805438827340258,-0.0094965023602913,-0.011419805029658656,-0.009388369835680515,-0.011876208780791188,-0.00941175574312488,-0.009216672682168692,-0.013935675581080716,-0.013342692296093563,-0.010687830667086373,-0.010000288274155354,-0.010795716910480615,-0.011067034171656184,-0.015563765760917982,-0.009450924165041986,-0.009845916841010811,-0.00817643311281297,-0.010801445252542945,-0.01401365686095583,-0.010878216944989335,-0.010501013513742954,-0.010542951339245045,-0.012646720892179938,-0.010605929049429499,-0.011291131013367239
+52.396868,4.960704,-0.0010518335133377639,-0.0009768785056312236,-0.002070012778529941,0.0011208768166899997,-0.0006611345500992386,-0.0017225350383452084,-0.00252499671514876,-0.002305558360369318,-0.0006317318166610963,-0.00522834021207447,-0.0030629614792395308,-0.001965991120151703,-0.003410738041471465,-0.00563617488648956,-0.004676400395509035,-0.007317796756298723,-0.0049922388292433124,-0.0037634149892639334,-0.0034089366541188043,-0.005179783889583897,-0.0022093401781893268,-0.0009490414217577575,-0.00204489776040824,-0.003135314262375629,-0.005558105950089501,-0.00048647907224457854,-0.0032954506867263265,0.0044043366972084524,-0.015747930502899462,-0.010715650288171629,-0.007115058815371946,-0.006018381826027937,-0.00956866006054142,-0.0032702124308341294,-0.01412801049997516,-0.005705438827340259,-0.006096502360291301,-0.007819805029658655,-0.006888369835680515,-0.008576208780791189,-0.005011755743124882,-0.009816672682168692,-0.0036356755810807153,-0.011642692296093562,-0.006087830667086374,-0.010300288274155354,-0.006495716910480614,-0.004267034171656184,-0.01056376576091798,-0.004850924165041988,-0.005845916841010812,-0.00027643311281296944,-0.004201445252542946,-0.007313656860955831,-0.006378216944989336,-0.006801013513742955,-0.006142951339245046,-0.004446720892179937,-0.005005929049429498,-0.008491131013367239
+52.396835,4.96082,0.003148166486662236,0.0023231214943687764,0.001629987221470059,0.00382087681669,0.0023388654499007615,0.0036774649616547915,0.00107500328485124,0.003294441639630682,0.003768268183338904,0.0004716597879255305,0.003237038520760469,0.003234008879848297,0.002689261958528535,0.00016382511351044045,0.003523599604490965,8.220324370127643e-05,0.0004077611707566876,0.0012365850107360664,0.0025910633458811954,0.0016202161104161028,0.003290659821810673,0.0017509585782422424,0.00475510223959176,0.0024646857376243703,4.189404991049913e-05,0.005213520927755421,0.0023045493132736734,0.001404336697208452,0.0009520694971005388,0.00238434971182837,0.0013849411846280537,0.0014816181739720638,0.0031313399394585785,0.0025297875691658706,0.0004719895000248396,-0.0005054388273402586,0.002403497639708699,0.0007801949703413456,0.0016116301643194844,0.0006237912192088111,0.003088244256875119,0.0025833273178313093,-0.0008356755810807151,-0.00014269229609356268,-0.0004878306670863734,0.001199711725844645,0.0012042830895193856,0.001932965828343816,-0.00306376576091798,0.0023490758349580124,0.002654083158989189,0.003123566887187031,0.0026985547474570543,0.000586343139044169,0.0016217830550106648,0.0027989864862570453,0.0018570486607549547,0.0007532791078200627,0.0020940709505705016,0.0019088689866327618
+52.396738,4.960918,0.002848166486662236,0.0030231214943687765,0.001029987221470059,0.0016208768166899997,0.0029388654499007613,0.0015774649616547914,-0.0005249967151487601,0.0010944416396306818,0.0031682681833389036,-0.0010283402120744695,0.0016370385207604692,0.000434008879848297,-0.0011107380414714652,0.00046382511351044037,-0.0007764003955090351,-0.0009177967562987235,-0.0021922388292433125,-0.0005634149892639335,-8.936654118804556e-06,-0.0004797838895838972,0.0005906598218106728,0.0011509585782422426,0.0025551022395917606,6.468573762437053e-05,-0.00015810595008950096,0.0021135209277554213,-0.0002954506867263266,4.336697208452112e-06,-0.0007479305028994612,0.0017843497118283703,-0.0029150588153719465,0.0010816181739720637,0.0006313399394585786,0.0012297875691658704,-0.00022801049997516046,-0.0014054388273402585,0.000103497639708699,-0.0011198050296586544,-0.00018836983568051554,-0.0020762087807911886,-1.1755743124881087e-05,-0.0011166726821686904,-0.0024356755810807152,-0.0020426922960935625,-0.0022878306670863734,-0.0028002882741553553,-0.0002957169104806143,0.0005329658283438161,-0.00376376576091798,-0.00045092416504198735,0.0007540831589891886,0.0020235668871870305,-0.00030144525254294577,-0.001413656860955831,0.0002217830550106648,-0.0003010135137429545,-4.295133924504526e-05,-0.0002467208921799372,0.0004940709505705014,0.000608868986632762
+52.396714,4.960935,0.0009481664866622362,-0.0006768785056312236,-0.001570012778529941,-0.0003791231833100001,-0.0004611345500992387,-0.0018225350383452086,-0.00462499671514876,-0.0005055583603693183,-0.00043173181666109626,-0.00462834021207447,-0.00436296147923953,-0.002765991120151703,-0.003810738041471465,-0.007436174886489559,-0.004676400395509035,-0.0075177967562987235,-0.0069922388292433125,-0.005163414989263934,-0.006608936654118805,-0.004679783889583897,-0.004209340178189327,-0.003149041421757757,-0.0013448977604082397,-0.002135314262375629,-0.0054581059500895006,-0.0006864790722445786,-0.0021954506867263267,-0.002495663302791548,-0.005047930502899461,-0.0016156502881716297,-0.006315058815371946,-0.003318381826027936,-0.004868660060541422,-0.0014702124308341295,-0.0033280104999751604,-0.005705438827340259,-0.0044965023602913014,-0.0050198050296586545,-0.0031883698356805156,-0.00907620878079119,-0.002711755743124881,-0.00531667268216869,-0.005735675581080716,-0.0029426922960935627,-0.007687830667086374,-0.007900288274155355,-0.004895716910480614,-0.005667034171656184,-0.00946376576091798,-0.004750924165041987,-0.0040459168410108114,-0.0031764331128129697,-0.003301445252542946,-0.005313656860955831,-0.004078216944989336,-0.0030010135137429547,-0.0046429513392450454,-0.0035467208921799373,-0.005105929049429498,-0.002991131013367238
+52.39667,4.960989,-0.0015518335133377639,-0.0028768785056312233,-0.003470012778529941,-0.00227912318331,-0.0025611345500992384,-0.0020225350383452083,-0.00272499671514876,-0.0028055583603693183,-0.002031731816661096,-0.005928340212074469,-0.002162961479239531,-0.002165991120151703,-0.004710738041471465,-0.006536174886489559,-0.004376400395509035,-0.0075177967562987235,-0.008792238829243312,-0.006163414989263934,-0.008108936654118805,-0.005479783889583897,-0.0051093401781893266,-0.0042490414217577575,-0.0035448977604082394,-0.00493531426237563,-0.005958105950089501,-0.0020864790722445784,-0.002595450686726327,-0.0044956633027915475,-0.005347930502899461,-0.0007156502881716295,-0.005215058815371946,-0.002818381826027936,-0.0037686600605414213,-0.0021702124308341296,-0.0037280104999751606,-0.0055054388273402585,-0.004596502360291301,-0.005519805029658654,-0.004388369835680516,-0.008376208780791188,-0.0037117557431248813,-0.00761667268216869,-0.008735675581080715,-0.008042692296093563,-0.007187830667086373,-0.008600288274155356,-0.005995716910480614,-0.006767034171656184,-0.00886376576091798,-0.004850924165041988,-0.0034459168410108116,-0.003276433112812969,-0.0031014452525429453,-0.006013656860955831,-0.005878216944989335,-0.0015010135137429545,-0.004442951339245046,-0.003746720892179937,-0.0027059290494294984,-0.0034911310133672385
+52.396597,4.961179,0.002848166486662236,0.0018231214943687764,0.0005299872214700591,0.00272087681669,0.0013388654499007615,0.0018774649616547915,-0.0009249967151487601,0.0015944416396306818,0.0018682681833389037,-0.0019283402120744697,0.0007370385207604692,0.001834008879848297,0.0008892619585285349,-0.0012361748864895595,-0.0007764003955090351,-0.0013177967562987235,-0.0018922388292433126,-0.0011634149892639336,-8.936654118804556e-06,-0.00027978388958389724,0.001990659821810673,-0.00014904142175775755,0.0016551022395917604,0.0008646857376243706,-0.000658105950089501,0.0037135209277554216,0.0007045493132736734,-0.001995663302791548,-4.7930502899461126e-05,0.00028434971182837027,-0.0025150588153719463,-0.0006183818260279361,-0.0008686600605414214,2.97875691658705e-05,-0.0035280104999751605,-0.002705438827340259,0.000803497639708699,-0.0017198050296586545,-0.0002883698356805155,-0.002976208780791189,8.824425687511896e-05,0.00018332731783130945,-0.005435675581080715,-0.0031426922960935627,-0.002887830667086373,-0.0006002882741553551,-0.0002957169104806143,-0.0018670341716561841,-0.00476376576091798,-5.092416504198739e-05,0.00025408315898918857,2.3566887187030693e-05,0.0006985547474570543,-0.003913656860955831,-0.001278216944989335,-0.0010010135137429545,-0.002142951339245045,-0.0006467208921799373,-0.0013059290494294986,-0.0017911310133672381
+52.396557,4.961201,-0.0051518335133377635,-0.004876878505631224,-0.007870012778529941,-0.00517912318331,-0.006361134550099239,-0.005122535038345208,-0.00782499671514876,-0.004605558360369318,-0.0039317318166610955,-0.00872834021207447,-0.00536296147923953,-0.003965991120151703,-0.006110738041471465,-0.009236174886489559,-0.007076400395509035,-0.008017796756298724,-0.008292238829243312,-0.007463414989263934,-0.004208936654118805,-0.005679783889583897,-0.005609340178189327,-0.006749041421757758,-0.0028448977604082393,-0.005535314262375629,-0.0060581059500895,-0.0031864790722445787,-0.004395450686726326,-0.007195663302791548,-0.0069479305028994605,-0.00461565028817163,-0.007815058815371947,-0.008718381826027936,-0.005768660060541422,-0.005870212430834129,-0.007128010499975161,-0.009805438827340258,-0.006296502360291301,-0.008519805029658656,-0.005988369835680516,-0.008376208780791188,-0.005911755743124881,-0.00601667268216869,-0.009135675581080716,-0.010642692296093562,-0.010787830667086374,-0.007000288274155355,-0.006395716910480615,-0.007867034171656184,-0.01136376576091798,-0.004650924165041988,-0.0067459168410108124,-0.00547643311281297,-0.007001445252542945,-0.00821365686095583,-0.006778216944989335,-0.006001013513742955,-0.008542951339245045,-0.007846720892179937,-0.008705929049429498,-0.0067911310133672385
+52.396506,4.961244,-0.009651833513337765,-0.012176878505631225,-0.01227001277852994,-0.00977912318331,-0.011261134550099238,-0.008222535038345209,-0.012624996715148759,-0.00820555836036932,-0.011831731816661096,-0.014928340212074469,-0.010162961479239532,-0.0077659911201517036,-0.009310738041471466,-0.012636174886489559,-0.011276400395509036,-0.010717796756298723,-0.012092238829243311,-0.012263414989263933,-0.009108936654118804,-0.008079783889583898,-0.009409340178189328,-0.011549041421757758,-0.00984489776040824,-0.00843531426237563,-0.010058105950089501,-0.006486479072244578,-0.008895450686726326,-0.012295663302791547,-0.014647930502899462,-0.007915650288171629,-0.014015058815371946,-0.012618381826027935,-0.01096866006054142,-0.00857021243083413,-0.01382801049997516,-0.014305438827340259,-0.0091965023602913,-0.011919805029658654,-0.010888369835680516,-0.011076208780791187,-0.01021175574312488,-0.008416672682168691,-0.014835675581080716,-0.014142692296093563,-0.014187830667086374,-0.011300288274155355,-0.009695716910480615,-0.012967034171656185,-0.013863765760917982,-0.011250924165041988,-0.009845916841010811,-0.009976433112812969,-0.011601445252542945,-0.013313656860955831,-0.012178216944989335,-0.012101013513742953,-0.012842951339245045,-0.011146720892179936,-0.014605929049429499,-0.012091131013367238
+52.396508,4.96116,-0.00035183351333776375,-0.0021768785056312237,-0.003270012778529941,-0.0006791231833100002,-0.0016611345500992388,-0.0005225350383452085,-0.00242499671514876,-5.558360369318171e-06,-0.0014317318166610963,-0.00522834021207447,-0.0016629614792395308,-0.00046599112015170306,-0.002410738041471465,-0.00413617488648956,-0.0009764003955090352,-0.005117796756298723,-0.004892238829243312,-0.0034634149892639335,-0.0034089366541188043,-0.002079783889583897,-0.0015093401781893273,-0.0022490414217577574,0.0014551022395917605,-0.00013531426237562945,-0.002458105950089501,0.0013135209277554214,-0.0011954506867263267,-0.0008956633027915479,-0.003047930502899461,0.0005843497118283702,-0.0032150588153719464,-0.0025183818260279362,-0.0016686600605414215,-0.0002702124308341295,-0.0013280104999751604,-0.004105438827340258,-0.0032965023602913013,-0.004319805029658654,-0.0014883698356805155,-0.004976208780791189,-0.0008117557431248811,-0.0012166726821686905,-0.0036356755810807153,-0.0063426922960935625,-0.004087830667086374,-0.004500288274155355,-0.0029957169104806143,-0.004867034171656184,-0.0061637657609179795,4.9075834958012656e-05,-0.0007459168410108115,0.00022356688718703057,-0.0018014452525429456,-0.002913656860955831,-0.002978216944989335,0.0007989864862570455,-0.0032429513392450452,-0.0009467208921799372,-0.0024059290494294985,-0.0007911310133672381
+52.396454,4.961224,4.816648666223621e-05,-0.0007768785056312236,-0.002370012778529941,0.00152087681669,-0.0006611345500992386,-0.0011225350383452085,-0.00452499671514876,0.0008944416396306817,-0.001031731816661096,-0.00452834021207447,-0.0013629614792395306,-0.001065991120151703,-0.003510738041471465,-0.0037361748864895594,-0.004376400395509035,-0.004717796756298723,-0.005192238829243313,-0.004063414989263933,-0.0023089366541188044,-0.0018797838895838969,-0.0005093401781893273,-0.0008490414217577574,0.00405510223959176,6.468573762437053e-05,-0.004158105950089501,0.0022135209277554216,-0.0008954506867263266,0.0020043366972084522,0.002552069497100539,0.0014843497118283702,-0.0018150588153719464,0.0001816181739720639,-0.0009686600605414215,0.0010297875691658706,0.0005719895000248396,-0.0032054388273402585,-0.005396502360291301,-0.0028198050296586548,-0.0009883698356805155,-0.0017762087807911887,0.0005882442568751189,-0.004516672682168691,-0.001935675581080715,-0.004242692296093562,-0.002787830667086374,-0.004500288274155355,-0.0018957169104806143,-0.003467034171656184,-0.00636376576091798,-0.0024509241650419876,-0.004245916841010812,-0.0006764331128129694,-0.0006014452525429457,-0.005013656860955831,-0.0036782169449893353,0.0005989864862570454,-0.0012429513392450452,-0.0018467208921799372,-0.0032059290494294984,-0.0002911310133672381
+52.396264,4.961415,0.0025481664866622363,-0.00027687850563122356,-0.002070012778529941,0.0019208768166899997,0.00033886544990076133,-0.0014225350383452085,-0.00192499671514876,-0.00020555836036931826,0.0015682681833389038,-0.0008283402120744696,-0.0010629614792395307,0.001734008879848297,-0.0010107380414714651,-0.0022361748864895593,0.0008235996044909648,-0.003417796756298723,-0.0020922388292433126,-0.0005634149892639335,-0.0013089366541188044,-0.001579783889583897,-0.0005093401781893273,-0.0011490414217577574,0.0015551022395917605,0.0010646857376243705,-0.002458105950089501,0.0011135209277554213,-0.0006954506867263265,-0.003595663302791548,0.0009520694971005388,0.0011843497118283702,0.00048494118462805364,-0.0007183818260279362,0.0009313399394585786,0.0014297875691658705,-0.0013280104999751604,0.0003945611726597414,-0.001096502360291301,-0.0025198050296586544,-0.0019883698356805155,0.0025237912192088113,0.0020882442568751188,-0.0024166726821686904,-0.0002356755810807151,-0.0023426922960935624,-8.783066708637345e-05,-0.001700288274155355,-0.0015957169104806144,-0.000767034171656184,-0.00366376576091798,0.0014490758349580126,-0.0008459168410108115,0.0008235668871870306,-0.00020144525254294572,-0.001113656860955831,-0.0003782169449893352,-0.0031010135137429545,-0.004442951339245046,-4.67208921799372e-05,-0.0015059290494294985,-0.002691131013367238
+52.396189,4.961503,-0.0004518335133377638,-0.0025768785056312234,-0.002370012778529941,-0.0005791231833100002,-0.0033611345500992387,-0.0013225350383452084,-0.00242499671514876,-0.0009055583603693183,-0.0006317318166610963,-0.0029283402120744697,-0.0012629614792395308,-0.001965991120151703,-0.002210738041471465,-0.004236174886489559,-0.004376400395509035,-0.0045177967562987234,-0.0059922388292433125,-0.0028634149892639337,-0.0020089366541188045,-0.002079783889583897,-0.0003093401781893272,-0.0020490414217577573,-0.0008448977604082397,-0.0023353142623756293,-0.002158105950089501,0.0015135209277554215,-0.002095450686726327,-0.00019566330279154786,0.0003520694971005389,0.00508434971182837,-0.004615058815371946,-0.0008183818260279361,-0.0010686600605414216,0.0009297875691658705,-0.0029280104999751602,-0.0037054388273402585,-0.000296502360291301,-0.0033198050296586543,-0.0011883698356805156,-0.0041762087807911885,-0.0012117557431248812,-0.0038166726821686906,-0.0056356755810807145,-0.0070426922960935626,-0.004287830667086373,-0.004700288274155355,-0.002595716910480614,-6.703417165618395e-05,-0.00726376576091798,-0.0019509241650419876,-0.002545916841010812,0.0009235668871870307,-0.0011014452525429457,-0.002113656860955831,-0.002878216944989335,-0.0010010135137429545,-0.004442951339245046,-0.001646720892179937,-0.0017059290494294986,-0.00019113101336723807
+52.396118,4.961559,0.0008481664866622363,0.00022312149436877645,-0.003070012778529941,-0.0013791231833100003,-0.0029611345500992385,-0.0022225350383452084,-0.0036249967151487598,-0.003705558360369318,-3.173181666109607e-05,-0.00422834021207447,-0.0020629614792395307,-0.0013659911201517028,-0.003310738041471465,-0.0026361748864895595,-0.003676400395509035,-0.004817796756298723,-0.005192238829243313,-0.003963414989263933,-0.0019089366541188042,-0.004179783889583897,-0.0016093401781893271,-0.0026490414217577576,-0.0008448977604082397,-0.0024353142623756295,-0.003058105950089501,-0.0005864790722445784,-0.0018954506867263268,-0.0015956633027915477,-0.0034479305028994613,-0.0003156502881716298,-0.003115058815371946,-0.002718381826027936,-0.0008686600605414214,2.97875691658705e-05,-0.0017280104999751603,-0.004005438827340259,-0.003496502360291301,-0.005519805029658654,-0.004788369835680516,-0.006276208780791189,-0.003611755743124881,-0.0038166726821686906,-0.005035675581080715,-0.0060426922960935625,-0.005387830667086374,-0.0032002882741553555,-0.0029957169104806143,-0.003767034171656184,-0.00756376576091798,-0.003850924165041988,-0.0031459168410108117,-0.0031764331128129697,-0.0031014452525429453,-0.006013656860955831,-0.004078216944989336,-0.006701013513742955,-0.0046429513392450454,-0.003746720892179937,-0.004805929049429498,-0.001991131013367238
+52.395963,4.961775,-0.002051833513337764,-0.005176878505631224,-0.006570012778529941,-0.00387912318331,-0.006561134550099239,-0.005822535038345208,-0.00702499671514876,-0.005105558360369318,-0.0005317318166610961,-0.00802834021207447,-0.00596296147923953,-0.004665991120151703,-0.006710738041471465,-0.006536174886489559,-0.007676400395509035,-0.008017796756298724,-0.008292238829243312,-0.007063414989263933,-0.006708936654118805,-0.006479783889583897,-0.005709340178189327,-0.006049041421757758,-0.003444897760408239,-0.005735314262375629,-0.006858105950089501,-0.004086479072244579,-0.006195450686726326,-0.007095663302791547,-0.007547930502899461,-0.005815650288171629,-0.009415058815371946,-0.007318381826027936,-0.0073686600605414225,-0.00507021243083413,-0.00752801049997516,-0.00900543882734026,-0.006896502360291301,-0.008719805029658655,-0.007788369835680516,-0.009376208780791189,-0.007211755743124882,-0.008316672682168692,-0.010335675581080716,-0.009142692296093562,-0.010687830667086373,-0.008600288274155356,-0.006795716910480614,-0.008767034171656184,-0.011663765760917981,-0.007850924165041987,-0.007545916841010811,-0.0055764331128129695,-0.007001445252542945,-0.008713656860955831,-0.007078216944989336,-0.007301013513742955,-0.009242951339245045,-0.007146720892179937,-0.006005929049429498,-0.0067911310133672385
+52.395962,4.961711,0.003548166486662236,0.00042312149436877643,0.001429987221470059,0.00422087681669,-0.0006611345500992386,0.0015774649616547914,-0.0028249967151487603,0.0018944416396306817,0.0018682681833389037,-0.0020283402120744695,0.0015370385207604692,0.0034340088798482968,0.0010892619585285348,-0.0006361748864895595,0.00042359960449096475,-0.0003177967562987236,-0.0007922388292433125,0.002636585010736067,0.0021910633458811953,0.0029202161104161027,0.0037906598218106725,-0.0008490414217577574,0.00405510223959176,0.0019646857376243703,0.0004418940499104991,0.004713520927755422,0.0013045493132736734,-0.002495663302791548,-0.003047930502899461,0.0016843497118283703,-0.0029150588153719465,-0.00041838182602793616,-0.0005686600605414215,0.0011297875691658706,-0.0029280104999751602,-0.0039054388273402586,-0.001096502360291301,-0.0027198050296586545,-0.0021883698356805156,-0.004476208780791189,-0.001311755743124881,0.0006833273178313095,-0.003535675581080715,-0.0011426922960935625,-0.003487830667086374,-0.0032002882741553555,0.00030428308951938564,-0.001067034171656184,-0.00436376576091798,-0.0002509241650419875,-0.0003459168410108115,0.0009235668871870307,0.00019855474745705435,-0.0031136568609558307,-0.0026782169449893352,-0.0026010135137429545,-0.003842951339245045,-0.002946720892179937,-0.0025059290494294987,-0.001891131013367238
+52.395716,4.961926,0.0004481664866622362,-0.0018768785056312237,-0.002370012778529941,0.0016208768166899997,-0.0010611345500992388,0.00047746496165479153,-0.00172499671514876,0.00019444163963068176,0.001968268183338904,-0.0038283402120744695,-0.0009629614792395309,-0.00046599112015170306,-0.0007107380414714652,-0.0021361748864895595,-0.002276400395509035,-0.0012177967562987235,-0.0030922388292433127,-0.0023634149892639332,-0.0006089366541188046,-0.0008797838895838972,0.0003906598218106729,-0.006149041421757757,0.01275510223959176,0.008164685737624371,-0.005558105950089501,0.012413520927755422,-0.004695450686726326,-0.002195663302791548,0.002552069497100539,0.00528434971182837,0.008584941184628055,0.0035816181739720637,0.0036313399394585786,0.01012978756916587,0.0045719895000248395,0.003594561172659741,0.007303497639708699,0.005280194970341346,0.005811630164319484,0.0036237912192088116,0.006988244256875119,0.007683327317831309,0.006764324418919285,0.004657307703906438,0.0046121693329136265,0.005399711725844645,0.008404283089519385,0.0056329658283438165,0.0030362342390820194,0.008149075834958013,0.008054083158989188,0.008923566887187031,0.008298554747457054,0.004686343139044169,0.008021783055010666,0.006198986486257045,0.007957048660754956,0.007953279107820063,0.006294070950570502,0.008008868986632762
+52.395604,4.962026,0.006548166486662237,-0.011776878505631224,-0.01197001277852994,-0.011279123183310001,-0.013561134550099238,-0.010522535038345208,-0.011824996715148759,-0.010705558360369318,-0.007131731816661097,-0.012428340212074469,-0.010762961479239531,-0.008065991120151703,-0.010410738041471466,-0.00883617488648956,-0.010476400395509036,-0.011917796756298723,-0.010092238829243311,-0.009363414989263933,-0.008308936654118805,-0.007879783889583897,-0.006609340178189327,-0.010649041421757757,-0.00584489776040824,-0.00863531426237563,-0.010058105950089501,-0.005986479072244578,-0.010295450686726326,-0.009795663302791548,-0.01144793050289946,-0.01111565028817163,-0.012815058815371946,-0.014518381826027936,-0.01186866006054142,-0.00937021243083413,-0.01292801049997516,-0.015105438827340258,-0.0124965023602913,-0.015719805029658654,-0.014688369835680516,-0.014176208780791188,-0.01481175574312488,-0.012116672682168692,-0.015835675581080715,-0.014142692296093563,-0.011887830667086374,-0.012600288274155354,-0.011795716910480614,-0.013167034171656183,-0.01616376576091798,-0.012250924165041987,-0.011245916841010811,-0.009776433112812968,-0.011501445252542946,-0.012613656860955832,-0.013478216944989335,-0.012901013513742954,-0.013342951339245044,-0.013446720892179936,-0.013605929049429498,-0.011591131013367239
+52.395459,4.962208,0.004548166486662236,0.0021231214943687763,0.002129987221470059,0.00352087681669,0.0007388654499007613,0.0032774649616547913,-0.00132499671514876,0.0017944416396306817,0.0015682681833389038,0.0002716597879255304,0.003137038520760469,0.004334008879848297,0.0014892619585285347,0.0027638251135104408,0.0016235996044909648,0.002282203243701276,0.0014077611707566876,0.0010365850107360666,0.0028910633458811954,0.002020216110416103,0.004590659821810673,-0.00014904142175775755,0.0027551022395917607,0.0023646857376243705,0.001741894049910499,0.006013520927755421,0.0028045493132736734,0.003104336697208452,0.0015520694971005388,0.0022843497118283703,-0.0017150588153719464,0.003081618173972064,0.00043133993945857857,0.0022297875691658707,0.0017719895000248395,-0.0011054388273402586,0.0025034976397086987,-0.0001198050296586544,0.0013116301643194845,0.0008237912192088112,0.000988244256875119,0.0008833273178313094,-0.002135675581080715,-0.0027426922960935626,-0.0022878306670863734,-0.00010028827415535513,0.0012042830895193856,-0.000567034171656184,-0.00236376576091798,0.0023490758349580124,0.0021540831589891883,0.004423566887187031,0.0037985547474570546,-0.001613656860955831,2.1783055010664797e-05,0.0012989864862570455,0.0017570486607549546,5.3279107820062804e-05,-0.0007059290494294985,-0.0002911310133672381
+52.395441,4.962283,0.005548166486662237,0.0027231214943687766,0.003429987221470059,0.00482087681669,0.003438865449900761,0.0037774649616547913,0.00217500328485124,0.005294441639630682,0.0036682681833389037,0.0018716597879255305,0.005037038520760469,0.007334008879848297,0.004289261958528534,0.0010638251135104406,0.003023599604490965,0.005682203243701276,0.0035077611707566873,0.004036585010736066,0.0036910633458811957,0.003220216110416103,0.007190659821810673,0.0020509585782422426,0.0031551022395917604,0.005164685737624371,0.007441894049910499,0.00801352092775542,0.004704549313273674,0.004304336697208452,0.003652069497100539,0.0049843497118283705,0.0001849411846280537,0.0017816181739720638,0.0035313399394585787,0.00552978756916587,0.0034719895000248397,0.00019456117265974132,0.004003497639708699,0.0011801949703413455,0.003511630164319484,0.0009237912192088115,0.004588244256875118,0.004083327317831309,0.00036432441891928475,0.002457307703906437,-0.0001878306670863735,0.002899711725844645,0.005704283089519386,0.0029329658283438163,-0.0002637657609179801,0.0035490758349580125,0.004754083158989188,0.004923566887187031,0.003998554747457054,0.00018634313904416903,0.002321783055010665,0.0029989864862570454,0.0013570486607549547,0.0014532791078200628,0.0024940709505705014,0.002608868986632762
+52.395389,4.96233,0.0064481664866622365,0.005523121494368776,0.005929987221470059,0.00502087681669,0.004538865449900761,0.005477464961654792,0.00217500328485124,0.006794441639630682,0.006368268183338904,0.00227165978792553,0.00583703852076047,0.007434008879848297,0.005589261958528534,0.0026638251135104405,0.004623599604490964,0.0053822032437012765,0.006707761170756687,0.004636585010736066,0.005791063345881195,0.005920216110416103,0.007390659821810673,0.003850958578242242,0.0035551022395917606,0.00596468573762437,0.0028418940499104995,0.008213520927755421,0.005504549313273674,0.0017043366972084523,0.002752069497100539,0.006684349711828371,0.0023849411846280535,0.0022816181739720638,0.0031313399394585785,0.00622978756916587,0.00477198950002484,0.0011945611726597413,0.005303497639708699,0.002080194970341346,0.003811630164319484,0.0019237912192088115,0.005488244256875118,0.004083327317831309,-0.00013567558108071504,0.0017573077039064373,0.0007121693329136266,0.004199711725844645,0.0049042830895193856,0.002532965828343816,0.00093623423908202,0.004249075834958012,0.005254083158989189,0.004923566887187031,0.004698554747457054,0.001886343139044169,0.003221783055010665,0.0029989864862570454,0.003757048660754955,0.0027532791078200627,0.0028940709505705015,0.003608868986632762
+52.395231,4.962044,-0.0034518335133377634,-0.0034768785056312236,-0.006970012778529941,-0.00467912318331,-0.0042611345500992385,-0.004822535038345208,-0.00702499671514876,-0.005705558360369318,-0.005031731816661096,-0.0061283402120744694,-0.005162961479239531,-0.012165991120151702,-0.006910738041471466,-0.00883617488648956,-0.007576400395509036,-0.007617796756298723,-0.014192238829243312,-0.0067634149892639335,0.0005910633458811955,-0.012179783889583897,-0.005909340178189327,-0.008549041421757757,-0.008544897760408239,-0.00873531426237563,-0.009258105950089501,-0.004286479072244579,-0.007595450686726327,-0.008095663302791548,-0.007647930502899461,-0.00461565028817163,-0.009515058815371945,-0.007218381826027936,-0.00786866006054142,-0.005170212430834129,-0.006828010499975161,-0.00960543882734026,-0.006896502360291301,-0.009119805029658656,-0.007988369835680516,-0.009676208780791189,-0.004811755743124881,-0.010216672682168691,-0.012235675581080716,-0.010742692296093563,-0.018487830667086372,-0.014700288274155355,-0.009895716910480615,-0.010267034171656184,-0.014963765760917982,-0.010450924165041987,-0.011045916841010812,-0.008876433112812969,-0.007401445252542946,-0.01111365686095583,-0.010778216944989335,-0.007901013513742955,-0.008442951339245044,-0.008846720892179936,-0.007705929049429499,-0.006391131013367238
+52.395065,4.962557,0.0009481664866622362,-0.0022768785056312235,-0.005170012778529941,0.00012087681668999993,-6.113455009923864e-05,0.00027746496165479155,-0.0026249967151487598,-0.0008055583603693182,-0.002931731816661096,-0.006028340212074469,-0.002862961479239531,-0.003965991120151703,-0.004010738041471465,-0.00783617488648956,-0.005676400395509035,-0.004617796756298724,-0.006892238829243312,-0.0077634149892639335,-0.008508936654118804,-0.007479783889583897,-0.005609340178189327,-0.004549041421757757,-0.005744897760408239,-0.005035314262375629,-0.0044581059500895005,-0.0016864790722445787,-0.004395450686726326,-0.004995663302791548,-0.005347930502899461,-0.0008156502881716298,-0.007515058815371946,-0.004418381826027936,-0.004768660060541422,-0.0036702124308341296,-0.004228010499975161,-0.006905438827340259,-0.003996502360291301,-0.005419805029658654,-0.004188369835680515,-0.008076208780791188,-0.0035117557431248807,-0.0071166726821686906,-0.007535675581080715,-0.0060426922960935625,-0.012487830667086374,-0.009800288274155355,-0.0076957169104806145,-0.005367034171656184,-0.01006376576091798,-0.006450924165041987,-0.0060459168410108115,-0.004776433112812969,-0.0026014452525429457,-0.0055136568609558305,-0.006678216944989336,-0.004401013513742955,-0.003642951339245045,-0.003346720892179937,-0.004005929049429498,-0.004591131013367238
+52.39501,4.962232,-0.0015518335133377639,-0.0017768785056312235,-0.003370012778529941,-0.0008791231833100003,-0.0028611345500992383,-0.0021225350383452086,-0.00392499671514876,-0.002305558360369318,-0.0007317318166610962,-0.00462834021207447,-0.002462961479239531,0.00023400887984829693,-0.0042107380414714655,-0.004836174886489559,-0.004776400395509035,-0.0045177967562987234,-0.0027922388292433123,-0.0044634149892639335,-0.0034089366541188043,-0.0045797838895838975,-0.005209340178189327,-0.007049041421757758,-0.006044897760408239,-0.005735314262375629,-0.006558105950089501,-0.0018864790722445787,-0.0050954506867263265,-0.006295663302791548,-0.0049479305028994605,-0.0022156502881716294,-0.007315058815371946,-0.006018381826027937,-0.004568660060541422,-0.0021702124308341296,-0.00492801049997516,-0.006705438827340259,-0.0041965023602913015,-0.0050198050296586545,-0.004688369835680516,-0.006176208780791189,-0.0019117557431248809,-0.005516672682168691,-0.008935675581080715,-0.007642692296093562,-0.006887830667086373,-0.004700288274155355,-0.004595716910480614,-0.006567034171656183,-0.01066376576091798,-0.006950924165041988,-0.006545916841010812,-0.0055764331128129695,-0.005201445252542946,-0.007613656860955831,-0.006078216944989336,-0.005701013513742955,-0.005542951339245045,-0.004846720892179937,-0.004005929049429498,-0.005191131013367239
+52.394948,4.962657,0.00034816648666223613,-0.0050768785056312235,-0.004270012778529941,0.0003208768166899998,-0.0008611345500992387,0.00027746496165479155,-0.00342499671514876,-5.558360369318171e-06,-0.001031731816661096,-0.0048283402120744695,-0.0012629614792395308,-0.00026599112015170297,-0.002010738041471465,-0.00443617488648956,-0.004276400395509036,-0.0016177967562987234,-0.004192238829243312,-0.0023634149892639332,-0.0017089366541188046,-0.0018797838895838969,-0.0003093401781893272,-0.0022490414217577574,0.0002551022395917606,-0.0007353142623756295,-0.001258105950089501,0.0019135209277554215,-0.0006954506867263265,-0.002395663302791548,-0.00024793050289946116,-0.0009156502881716296,-0.0028150588153719462,-0.0014183818260279362,-0.0010686600605414216,0.0008297875691658705,-0.0014280104999751604,-0.0026054388273402587,-9.6502360291301e-05,-0.003219805029658654,-0.0014883698356805155,-0.0035762087807911886,-0.0007117557431248811,-0.0022166726821686903,-0.002835675581080715,-0.0025426922960935625,-0.006587830667086373,-0.004500288274155355,-0.0018957169104806143,-0.001967034171656184,-0.00556376576091798,-0.0008509241650419873,-0.0016459168410108114,-0.0011764331128129692,-0.0008014452525429458,-0.003213656860955831,-0.0021782169449893352,-0.0021010135137429545,-0.0007429513392450453,-0.0014467208921799372,-0.0024059290494294985,0.0019088689866327618
+52.394843,4.962777,0.0020481664866622363,0.00012312149436877645,-0.0016700127785299408,0.0014208768166899999,0.0001388654499007613,0.00027746496165479155,-0.00172499671514876,-0.0005055583603693183,-0.0006317318166610963,-0.0021283402120744694,-0.0016629614792395308,-0.0006659911201517029,-0.0015107380414714651,-0.0032361748864895594,-0.002376400395509035,-0.0010177967562987236,-0.0021922388292433125,-0.0030634149892639333,-0.0024089366541188042,-0.0018797838895838969,0.00029065982181067287,-0.0032490414217577574,-0.0011448977604082396,-0.0012353142623756294,-0.0025581059500895008,0.0015135209277554215,-0.0014954506867263266,-0.002395663302791548,-0.0024479305028994613,0.00028434971182837027,-0.004615058815371946,-0.0020183818260279362,-0.0017686600605414213,0.00032978756916587047,-0.0027280104999751606,-0.004405438827340258,-0.001996502360291301,-0.0023198050296586543,-0.0021883698356805156,-0.005776208780791188,-0.00021175574312488107,-0.0014166726821686906,-0.0040356755810807155,-0.003542692296093563,-0.007187830667086373,-0.0038002882741553553,-0.002895716910480614,-0.002667034171656184,-0.00636376576091798,-0.0024509241650419876,-0.0017459168410108113,-0.0018764331128129693,-0.0006014452525429457,-0.004013656860955831,-0.0014782169449893351,-0.0023010135137429546,-0.0014429513392450453,-0.001146720892179937,-0.0007059290494294985,-9.113101336723803e-05
+52.39484,4.962406,0.0037481664866622364,0.0018231214943687764,0.001529987221470059,0.0018208768166899998,0.0020388654499007616,0.0026774649616547914,-0.00152499671514876,0.0002944416396306818,0.0009682681833389037,-0.00042834021207446957,-0.0004629614792395308,0.003634008879848297,-0.0017107380414714652,-0.0027361748864895598,-0.004076400395509035,-0.0023177967562987237,0.00020776117075668754,-0.002663414989263933,-0.0017089366541188046,-0.0007797838895838971,-0.000409340178189327,-0.0035490414217577574,-0.003144897760408239,-0.00433531426237563,-0.0037581059500895013,0.0003135209277554214,-0.003995450686726326,-0.002595663302791548,-0.004547930502899461,8.434971182837018e-05,-0.0029150588153719465,-0.001118381826027936,-0.002868660060541421,0.0002297875691658705,-0.00392801049997516,-0.0039054388273402586,-0.003396502360291301,-0.0038198050296586548,-0.0026883698356805156,-0.004476208780791189,-0.00021175574312488107,-0.00471667268216869,-0.006435675581080715,-0.0050426922960935625,-0.003487830667086374,-0.003300288274155355,-0.0007957169104806144,-0.004767034171656184,-0.007963765760917979,-0.005150924165041988,-0.005345916841010811,-0.004276433112812969,-0.0016014452525429455,-0.0065136568609558305,-0.003578216944989335,-0.005301013513742955,-0.002042951339245045,-0.002246720892179937,-0.0006059290494294985,-0.0027911310133672384
+52.394759,4.962859,-0.0004518335133377638,-0.0023768785056312233,-0.003370012778529941,2.0876816689999883e-05,-0.0025611345500992384,-0.0005225350383452085,-0.00412499671514876,-0.001805558360369318,-0.001331731816661096,-0.0034283402120744693,-0.0012629614792395308,-6.599112015170309e-05,-0.002010738041471465,-0.00413617488648956,-0.0008764003955090352,8.220324370127643e-05,-0.002892238829243312,-0.0020634149892639333,-0.004408936654118805,-0.0021797838895838972,0.0010906598218106728,-0.010149041421757758,0.0017551022395917606,-0.0015353142623756293,-0.003158105950089501,0.0005135209277554215,-0.0022954506867263265,-0.0005956633027915479,-4.7930502899461126e-05,0.00048434971182837036,-0.0029150588153719465,-0.003118381826027936,-0.002068660060541421,-0.0001702124308341295,-0.0018280104999751604,-0.0042054388273402585,-0.000996502360291301,-0.0030198050296586544,-0.004388369835680516,-0.004876208780791189,-0.001011755743124881,-0.0024166726821686904,-0.003535675581080715,-0.005742692296093563,-0.0059878306670863735,-0.004700288274155355,-0.0043957169104806145,-6.703417165618395e-05,-0.00636376576091798,-0.002950924165041987,-0.0010459168410108116,-0.00027643311281296944,-0.002701445252542946,-0.003913656860955831,-0.002778216944989335,-0.0015010135137429545,-0.0017429513392450452,-0.002746720892179937,-0.0027059290494294984,-0.001591131013367238
+52.3947,4.962889,0.0019481664866622362,-0.00017687850563122357,-0.000670012778529941,0.0005208768166899998,-0.0005611345500992388,-0.00012253503834520847,-0.00202499671514876,-0.0006055583603693181,-0.00023173181666109616,-0.00432834021207447,-0.0017629614792395308,-0.002565991120151703,-0.002010738041471465,-0.0035361748864895593,-0.004776400395509035,-0.0025177967562987234,-0.0027922388292433123,-0.0021634149892639336,-0.0022089366541188046,-0.002579783889583897,-0.0005093401781893273,-0.0018490414217577575,0.00015510223959176034,-0.0007353142623756295,-0.002158105950089501,0.0018135209277554214,0.0005045493132736734,-0.0012956633027915478,0.00025206949710053885,0.0010843497118283702,-0.004415058815371946,-0.0003183818260279361,-0.0021686600605414215,-7.02124308341295e-05,-0.0029280104999751602,-0.004505438827340258,-0.000996502360291301,-0.0028198050296586548,-0.0033883698356805157,-0.0037762087807911887,-0.002211755743124881,-0.0031166726821686905,-0.0043356755810807154,-0.0037426922960935626,-0.008187830667086374,-0.004900288274155355,-0.003895716910480614,-0.0023670341716561837,-0.00676376576091798,-0.0026509241650419873,-0.0020459168410108114,0.00012356688718703052,-0.0008014452525429458,-0.002213656860955831,-0.0018782169449893353,-0.002401013513742955,-4.295133924504526e-05,-0.0006467208921799373,-0.0025059290494294987,-0.0016911310133672379
+52.394662,4.962925,0.0009481664866622362,-0.005976878505631224,-0.003270012778529941,0.0003208768166899998,-0.0017611345500992387,-0.0006225350383452085,-0.0038249967151487603,-0.0006055583603693181,-0.0018317318166610965,-0.004128340212074469,-0.0016629614792395308,-0.002165991120151703,-0.002910738041471465,-0.00603617488648956,-0.003576400395509035,-0.0025177967562987234,-0.0049922388292433124,-0.0044634149892639335,-0.004408936654118805,-0.003079783889583897,-0.001909340178189327,-0.004349041421757758,-0.0025448977604082394,-0.0019353142623756295,-0.003958105950089501,0.0022135209277554216,-0.0022954506867263265,-0.002095663302791548,-0.003547930502899461,-0.0017156502881716296,-0.0060150588153719455,-0.003918381826027936,-0.0032686600605414213,-0.0010702124308341295,-0.004228010499975161,-0.0039054388273402586,-0.003696502360291301,-0.004919805029658654,-0.0039883698356805155,-0.005276208780791189,-0.002311755743124881,-0.0031166726821686905,-0.006735675581080715,-0.002842692296093563,-0.007987830667086374,-0.006400288274155355,-0.0026957169104806144,-0.002567034171656184,-0.00666376576091798,-0.003550924165041987,-0.002945916841010812,-0.003276433112812969,-0.0038014452525429454,-0.004913656860955831,-0.004478216944989335,-0.004501013513742954,-0.003542951339245045,-0.004246720892179937,-0.0035059290494294988,-0.004691131013367238
+52.394579,4.962989,0.0008481664866622363,-0.0016768785056312237,-0.002070012778529941,-0.0001791231833100002,-0.0008611345500992387,0.0008774649616547915,-0.00302499671514876,-0.0016055583603693184,-0.002031731816661096,-0.00332834021207447,-0.00036296147923953084,-0.000765991120151703,-0.0016107380414714652,-0.0027361748864895598,-0.003576400395509035,-0.002717796756298724,-0.003992238829243312,-0.0033634149892639333,-0.0024089366541188042,-0.001579783889583897,-0.0008093401781893272,-0.004449041421757757,-0.0014448977604082395,-0.0014353142623756295,-0.0038581059500895007,0.0006135209277554215,-0.002095450686726327,-0.0007956633027915479,-0.002847930502899461,-0.0005156502881716299,-0.0050150588153719455,-0.0032183818260279363,-0.002868660060541421,-0.0012702124308341294,-0.0037280104999751606,-0.005105438827340259,-0.0037965023602913013,-0.0047198050296586545,-0.0035883698356805153,-0.004276208780791189,-0.002811755743124881,-0.0024166726821686904,-0.006635675581080715,-0.0040426922960935625,-0.006887830667086373,-0.004800288274155355,-0.004095716910480615,-0.002567034171656184,-0.00776376576091798,-0.0023509241650419874,-0.0031459168410108117,-0.0021764331128129692,-0.0029014452525429456,-0.004713656860955831,-0.003378216944989335,-0.004501013513742954,-0.002842951339245045,-0.0025467208921799373,-0.0031059290494294986,-0.001591131013367238
+52.39453,4.963038,-5.1833513337763834e-05,-0.0006768785056312236,-0.001770012778529941,-0.0006791231833100002,-0.0010611345500992388,-0.0023225350383452087,-0.00172499671514876,-0.0013055583603693182,0.0006682681833389038,-0.004028340212074469,-0.0016629614792395308,-0.000765991120151703,-0.0013107380414714652,-0.00443617488648956,-0.003676400395509035,-0.0013177967562987235,-0.003992238829243312,-0.0030634149892639333,-0.0015089366541188045,-7.978388958389715e-05,0.0005906598218106728,-0.0030490414217577574,-0.0008448977604082397,-0.0007353142623756295,-0.002258105950089501,0.00011352092775542152,-0.0016954506867263267,-0.003495663302791548,-0.002847930502899461,-0.00151565028817163,-0.004715058815371946,-0.0032183818260279363,-0.002368660060541421,-0.0020702124308341293,-0.0035280104999751605,-0.004605438827340259,-0.001896502360291301,-0.0038198050296586548,-0.0034883698356805155,-0.006276208780791189,-0.001811755743124881,-0.00401667268216869,-0.004435675581080715,-0.005142692296093563,-0.007687830667086374,-0.0036002882741553548,-0.002595716910480614,-0.004167034171656184,-0.00716376576091798,-0.0026509241650419873,-0.0012459168410108112,-0.0007764331128129695,-0.002401445252542946,-0.005413656860955831,-0.004478216944989335,-0.0036010135137429546,-0.002542951339245045,-0.003246720892179937,-0.004105929049429498,-0.0020911310133672383
+52.394478,4.963073,0.0020481664866622363,0.0027231214943687766,-0.0004700127785299409,0.0019208768166899997,-0.003861134550099239,-0.004122535038345208,-0.0052249967151487605,-0.0038055583603693183,-0.0022317318166610958,-0.00462834021207447,-0.004562961479239531,-0.003265991120151703,-0.004810738041471465,-0.0039361748864895595,-0.0041764003955090355,-0.005017796756298723,-0.004492238829243312,-0.0057634149892639335,-0.004808936654118805,-0.004679783889583897,-0.0022093401781893268,-0.0052490414217577575,-0.0029448977604082396,-0.004035314262375629,-0.004758105950089501,-0.0015864790722445784,-0.004895450686726326,-0.0067956633027915474,-0.005847930502899461,-0.003115650288171629,-0.006615058815371946,-0.007018381826027936,-0.005268660060541421,-0.0031702124308341296,-0.005628010499975161,-0.007805438827340258,-0.006696502360291301,-0.008719805029658655,-0.006488369835680515,-0.006376208780791188,-0.003611755743124881,-0.00461667268216869,-0.007935675581080714,-0.004742692296093563,-0.009787830667086373,-0.009400288274155354,-0.0066957169104806145,-0.004567034171656184,-0.00896376576091798,-0.004550924165041987,-0.0034459168410108116,-0.0038764331128129698,-0.003301445252542946,-0.007413656860955831,-0.005178216944989335,-0.005801013513742955,-0.0066429513392450455,-0.0059467208921799375,-0.004505929049429498,-0.003991131013367238
+52.394453,4.963094,0.003248166486662236,-0.0027768785056312235,-0.0024700127785299408,0.0005208768166899998,-0.00736113455009924,-0.005322535038345209,-0.00802499671514876,-0.006805558360369318,-0.002331731816661096,-0.006328340212074469,-0.007262961479239531,-0.005365991120151703,-0.007910738041471466,-0.006236174886489559,-0.008576400395509035,-0.006817796756298723,-0.007592238829243312,-0.007463414989263934,-0.006208936654118805,-0.007279783889583897,-0.006709340178189326,-0.008649041421757757,-0.0036448977604082397,-0.006835314262375629,-0.008358105950089501,-0.004586479072244579,-0.007595450686726327,-0.005895663302791548,-0.005347930502899461,-0.00851565028817163,-0.009815058815371945,-0.010518381826027936,-0.009468660060541421,-0.00827021243083413,-0.009628010499975161,-0.012105438827340258,-0.0097965023602913,-0.012119805029658655,-0.009588369835680515,-0.009976208780791189,-0.00791175574312488,-0.008116672682168691,-0.010935675581080715,-0.0073426922960935625,-0.012587830667086373,-0.010300288274155354,-0.007895716910480615,-0.011067034171656184,-0.01286376576091798,-0.008650924165041988,-0.008245916841010812,-0.009676433112812969,-0.007601445252542945,-0.011513656860955832,-0.011078216944989335,-0.011901013513742955,-0.012042951339245045,-0.010546720892179937,-0.012105929049429498,-0.005091131013367238
+52.394421,4.963128,0.002648166486662236,0.0010231214943687765,-0.0007700127785299409,0.0007208768166899999,-0.0008611345500992387,-0.0024225350383452085,-0.00242499671514876,-0.0007055583603693182,-0.000331731816661096,-0.0028283402120744695,-0.002162961479239531,0.000834008879848297,-0.0018107380414714653,-0.002836174886489559,-0.003976400395509035,-0.0010177967562987236,-0.0024922388292433124,-0.0006634149892639335,-0.0021089366541188043,-0.0009797838895838971,0.002090659821810673,-0.0019490414217577575,0.0009551022395917605,-0.0022353142623756294,-0.004958105950089501,0.0026135209277554214,-0.0021954506867263267,-0.001195663302791548,-0.0031479305028994614,-0.0005156502881716299,-0.004715058815371946,-0.004318381826027937,-0.0059686600605414215,-0.00567021243083413,-0.00782801049997516,-0.00910543882734026,-0.0084965023602913,-0.010419805029658655,-0.008088369835680516,-0.010876208780791189,-0.00901175574312488,-0.005916672682168691,-0.012235675581080716,-0.007442692296093563,-0.011387830667086374,-0.009000288274155355,-0.006095716910480615,-0.007867034171656184,-0.01126376576091798,-0.008250924165041987,-0.008245916841010812,-0.005676433112812969,-0.008101445252542945,-0.008613656860955832,-0.006678216944989336,-0.008701013513742953,-0.008642951339245045,-0.009146720892179936,-0.007805929049429498,-0.0054911310133672385
+52.394282,4.963225,0.0013481664866622362,0.0012231214943687766,-0.001470012778529941,0.0011208768166899997,-0.0007611345500992386,-0.0012225350383452086,-0.00192499671514876,-0.00020555836036931826,0.00046826818333890394,-0.0021283402120744694,-0.0011629614792395308,3.400887984829695e-05,-0.0015107380414714651,-0.0008361748864895595,-0.0010764003955090352,0.0010822032437012765,-0.0019922388292433124,-0.0025634149892639338,-0.0014089366541188047,-0.0011797838895838972,0.001890659821810673,-0.0038490414217577573,5.510223959176051e-05,-0.0015353142623756293,-0.003358105950089501,0.0005135209277554215,-0.0024954506867263266,-0.004095663302791547,-0.0026479305028994614,-0.002815650288171629,-0.004015058815371946,-0.006118381826027936,-0.004168660060541422,-0.0032702124308341294,-0.00702801049997516,-0.005605438827340259,-0.004596502360291301,-0.005319805029658654,-0.0039883698356805155,-0.004276208780791189,-0.0034117557431248813,-0.0032166726821686903,-0.005735675581080716,-0.004342692296093562,-0.006787830667086374,-0.005200288274155355,-0.0037957169104806143,-0.004767034171656184,-0.00846376576091798,-0.0023509241650419874,-0.002945916841010812,-0.0027764331128129695,-0.0026014452525429457,-0.005713656860955831,-0.004878216944989335,-0.0049010135137429545,-0.005442951339245046,-0.004346720892179937,-0.005805929049429498,-0.005591131013367238
+52.394241,4.96326,-0.0006518335133377637,-0.0023768785056312233,-0.002070012778529941,-0.0008791231833100003,-0.0039611345500992386,-0.0029225350383452085,-0.0036249967151487598,-0.0026055583603693186,0.0003682681833389037,-0.0018283402120744694,-0.0018629614792395307,0.000434008879848297,-0.002710738041471465,-0.0025361748864895593,-0.0025764003955090348,-0.0009177967562987235,-0.0019922388292433124,-0.0023634149892639332,-0.0008089366541188045,-0.0009797838895838971,0.00029065982181067287,-0.0052490414217577575,-0.0012448977604082394,-0.0030353142623756294,-0.005158105950089501,-0.0008864790722445787,-0.0038954506867263264,-0.004995663302791548,-0.0032479305028994612,-0.004215650288171629,-0.0060150588153719455,-0.007018381826027936,-0.004368660060541422,-0.0033702124308341293,-0.005128010499975161,-0.006405438827340258,-0.0044965023602913014,-0.006519805029658654,-0.006488369835680515,-0.006076208780791188,-0.005011755743124882,-0.004916672682168691,-0.005335675581080715,-0.005942692296093562,-0.007387830667086374,-0.005400288274155355,-0.003395716910480614,-0.004467034171656184,-0.00836376576091798,-0.0036509241650419873,-0.0033459168410108113,-0.0010764331128129694,-0.0038014452525429454,-0.006213656860955831,-0.005078216944989336,-0.005801013513742955,-0.005842951339245045,-0.006346720892179937,-0.0052059290494294985,-0.003591131013367238
+52.394187,4.963335,-0.0022518335133377637,-0.004676878505631224,-0.004670012778529941,-0.00157912318331,-0.003761134550099239,-0.0025225350383452083,-0.00512499671514876,-0.002005558360369318,-0.0028317318166610965,-0.005028340212074469,-0.0009629614792395309,-0.0011659911201517032,-0.005910738041471466,-0.00533617488648956,-0.0005764003955090352,-0.003917796756298724,-0.003192238829243312,-0.004363414989263933,-0.0036089366541188048,-0.002879783889583897,-0.0005093401781893273,-0.005549041421757757,-0.0033448977604082397,-0.0033353142623756297,-0.004558105950089501,-0.0015864790722445784,-0.006495450686726327,-0.007295663302791548,-0.007447930502899461,-0.0035156502881716293,-0.008015058815371946,-0.007418381826027937,-0.006268660060541421,-0.004470212430834129,-0.00952801049997516,-0.007605438827340259,-0.004096502360291301,-0.008019805029658655,-0.005588369835680515,-0.006376208780791188,-0.004411755743124882,-0.0031166726821686905,-0.010035675581080716,-0.008942692296093563,-0.008187830667086374,-0.006900288274155355,-0.004295716910480614,-0.004667034171656184,-0.0061637657609179795,-0.004850924165041988,-0.002945916841010812,-0.003576433112812969,-0.005101445252542945,-0.0065136568609558305,-0.006178216944989335,-0.0069010135137429545,-0.007042951339245046,-0.0069467208921799375,-0.007805929049429498,-0.006891131013367238
+52.394076,4.963473,-0.008051833513337764,-0.008876878505631224,-0.01087001277852994,-0.00847912318331,-0.010961134550099238,-0.008422535038345209,-0.01162499671514876,-0.009805558360369318,-0.008231731816661097,-0.01142834021207447,-0.00886296147923953,-0.007165991120151704,-0.010110738041471466,-0.00983617488648956,-0.008876400395509035,-0.007017796756298723,-0.007792238829243313,-0.008863414989263933,-0.008108936654118805,-0.0065797838895838975,-0.0068093401781893275,-0.007849041421757757,-0.006944897760408238,-0.007935314262375629,-0.010058105950089501,-0.0068864790722445775,-0.007995450686726326,-0.012595663302791547,-0.00884793050289946,-0.00911565028817163,-0.012915058815371945,-0.014018381826027935,-0.01186866006054142,-0.01077021243083413,-0.013128010499975161,-0.01240543882734026,-0.0109965023602913,-0.013119805029658656,-0.010188369835680515,-0.011176208780791189,-0.01091175574312488,-0.008716672682168691,-0.012535675581080716,-0.011342692296093563,-0.012687830667086373,-0.009700288274155354,-0.009495716910480614,-0.010367034171656183,-0.013363765760917981,-0.008950924165041988,-0.008945916841010811,-0.00877643311281297,-0.010201445252542945,-0.013813656860955831,-0.010978216944989334,-0.011901013513742955,-0.012442951339245044,-0.014146720892179937,-0.014105929049429498,-0.012791131013367239
+52.394075,4.963422,0.002148166486662236,-0.0026768785056312232,0.00012998722147005912,0.0008208768166899998,-0.0013611345500992387,-0.0011225350383452085,-0.0032249967151487596,0.0007944416396306818,0.0018682681833389037,-0.0023283402120744695,0.0016370385207604692,0.002634008879848297,0.001989261958528535,0.0011638251135104405,0.0016235996044909648,0.0053822032437012765,0.0030077611707566877,0.002336585010736066,0.004191063345881195,0.0043202161104161025,0.006690659821810673,-0.0006490414217577575,0.0034551022395917603,0.0029646857376243708,0.0011418940499104992,0.0043135209277554215,0.0010045493132736735,-0.002495663302791548,0.0015520694971005388,-0.0004156502881716296,-0.0014150588153719462,-0.0025183818260279362,-0.0012686600605414213,0.0008297875691658705,-0.0021280104999751607,-0.003005438827340259,0.000803497639708699,-0.0019198050296586543,-0.0013883698356805156,-0.0022762087807911887,-0.000611755743124881,0.00018332731783130945,-0.002635675581080715,-0.0030426922960935625,-0.0002878306670863733,0.004299711725844645,4.283089519385657e-06,0.000732965828343816,-0.0029637657609179802,0.0009490758349580126,0.0028540831589891884,0.0015235668871870305,-0.00030144525254294577,-0.0019136568609558308,-0.003778216944989335,-0.0008010135137429546,-0.0022429513392450452,-0.004146720892179937,-0.0023059290494294987,-0.0012911310133672381
+52.394014,4.963527,-0.003651833513337764,-0.006176878505631224,-0.008170012778529941,-0.00527912318331,-0.007761134550099239,-0.0062225350383452085,-0.00742499671514876,-0.005505558360369318,-0.0039317318166610955,-0.006428340212074469,-0.00536296147923953,-0.0033659911201517033,-0.006410738041471465,-0.005536174886489559,-0.006276400395509036,-0.0029177967562987236,-0.005192238829243313,-0.005863414989263934,-0.003908936654118805,-0.002279783889583897,-0.0011093401781893271,-0.003149041421757757,-0.0038448977604082393,-0.0030353142623756294,-0.0063581059500895,-0.0021864790722445787,-0.005595450686726326,-0.0074956633027915475,-0.007447930502899461,-0.00571565028817163,-0.009215058815371945,-0.007918381826027936,-0.00896866006054142,-0.00637021243083413,-0.008728010499975162,-0.009405438827340257,-0.0074965023602913015,-0.008619805029658655,-0.008688369835680516,-0.006776208780791189,-0.005911755743124881,-0.005916672682168691,-0.008135675581080715,-0.0073426922960935625,-0.008187830667086374,-0.006600288274155355,-0.0036957169104806144,-0.005667034171656184,-0.00846376576091798,-0.004650924165041988,-0.004345916841010811,-0.0038764331128129698,-0.005401445252542945,-0.008613656860955832,-0.006678216944989336,-0.009101013513742954,-0.006542951339245045,-0.008146720892179937,-0.008705929049429498,-0.007191131013367238
+52.393956,4.963544,0.003548166486662236,2.312149436877641e-05,0.0003299872214700591,0.00242087681669,0.0020388654499007616,0.0024774649616547914,-0.00512499671514876,0.0008944416396306817,-0.000331731816661096,-0.0024283402120744693,0.0008370385207604693,0.001234008879848297,0.0010892619585285348,-0.00473617488648956,-0.001376400395509035,0.00038220324370127646,-0.00029223882924331237,0.0001365850107360665,0.0007910633458811955,0.0007202161104161028,0.0021906598218106726,0.0011509585782422426,-0.0010448977604082393,0.0036646857376243704,0.001241894049910499,0.004813520927755421,0.0022045493132736736,0.0002043366972084521,-0.0012479305028994612,0.00448434971182837,-0.0008150588153719463,0.002381618173972064,0.0023313399394585786,0.0035297875691658706,0.0004719895000248396,-0.0014054388273402585,0.001003497639708699,-0.0008198050296586544,0.0013116301643194845,-0.002676208780791189,0.003188244256875119,0.0007833273178313093,-0.002735675581080715,-0.005142692296093563,-0.004487830667086374,-0.001700288274155355,-0.00039571691048061435,-0.000467034171656184,-0.00356376576091798,0.0020490758349580125,0.0035540831589891885,0.00012356688718703052,0.0033985547474570544,-0.001413656860955831,-0.0001782169449893352,0.0006989864862570454,0.0005570486607549546,0.0015532791078200628,0.0024940709505705014,-0.000491131013367238
+52.393878,4.963687,0.0064481664866622365,0.0020231214943687765,0.003829987221470059,0.00672087681669,0.004238865449900761,0.005077464961654792,0.00297500328485124,0.005094441639630682,0.004868268183338903,0.002571659787925531,0.005737038520760469,0.006134008879848297,0.004989261958528534,0.0012638251135104403,0.004323599604490964,0.005682203243701276,0.003707761170756687,0.004236585010736066,0.003991063345881196,0.006020216110416103,0.005790659821810673,0.0008509585782422427,0.0025551022395917606,0.006464685737624371,0.004241894049910499,0.008113520927755422,0.005204549313273674,0.002304336697208452,0.0031520694971005386,0.0059843497118283705,0.0011849411846280536,0.002781618173972064,0.0023313399394585786,0.00582978756916587,0.0033719895000248394,0.0013945611726597414,0.004903497639708699,0.0019801949703413457,0.0030116301643194846,0.0016237912192088111,0.0052882442568751185,0.005383327317831309,-0.00013567558108071504,-0.0008426922960935626,0.0007121693329136266,0.0026997117258446453,0.004604283089519386,0.0022329658283438162,0.0010362342390820198,0.005149075834958012,0.006954083158989188,0.0040235668871870306,0.005598554747457054,0.001386343139044169,0.0043217830550106645,0.002698986486257045,0.003057048660754955,0.004253279107820063,0.0020940709505705016,0.0034088689866327623
+52.39385,4.963344,0.0016481664866622363,0.0018231214943687764,-0.00017001277852994086,0.0055208768166899996,-0.0013611345500992387,0.0019774649616547918,0.00057500328485124,-0.00020555836036931826,0.004468268183338904,-0.0008283402120744696,-0.0007629614792395308,0.001134008879848297,-0.0005107380414714651,0.0002638251135104405,-0.002976400395509035,0.0023822032437012764,0.0010077611707566875,-0.0007634149892639335,0.0005910633458811955,-0.001979783889583897,0.0034906598218106726,-0.0006490414217577575,-0.0007448977604082394,0.0031646857376243704,0.001541894049910499,0.0037135209277554216,-9.545068672632659e-05,-0.0004956633027915478,0.0034520694971005386,0.0010843497118283702,0.0010849411846280536,0.0017816181739720638,-0.0005686600605414215,0.0007297875691658704,0.0020719895000248395,-0.0001054388273402586,0.001603497639708699,-0.0031198050296586547,0.0008116301643194845,-0.0003762087807911887,0.000988244256875119,0.0017833273178313096,0.000464324418919285,-0.00034269229609356256,-0.0017878306670863736,-0.0008002882741553551,-0.00019571691048061434,0.001532965828343816,-0.00226376576091798,-0.0011509241650419872,0.0015540831589891885,0.0043235668871870305,0.002598554747457054,-0.000113656860955831,-0.0002782169449893352,0.0010989864862570454,0.002157048660754955,0.0020532791078200626,0.0024940709505705014,0.003008868986632762
+52.393779,4.963727,0.004548166486662236,0.0017231214943687766,0.0006299872214700591,0.00332087681669,-0.0004611345500992387,0.0016774649616547914,7.500328485123995e-05,0.001394441639630682,0.0016682681833389038,7.165978792553034e-05,0.0017370385207604692,0.002434008879848297,0.0015892619585285348,0.0011638251135104405,0.00042359960449096475,0.0021822032437012764,0.0003077611707566876,-0.0006634149892639335,-0.0006089366541188046,0.0014202161104161027,0.0014906598218106728,-0.0010490414217577575,0.0006551022395917606,0.0019646857376243703,-0.000258105950089501,0.0030135209277554215,0.0008045493132736734,-0.0009956633027915478,0.0016520694971005386,0.0022843497118283703,-0.0010150588153719463,-0.0005183818260279361,0.0018313399394585786,0.0024297875691658703,-0.0025280104999751605,-0.0009054388273402586,-0.000196502360291301,-0.0017198050296586545,0.00021163016431948443,-0.0007762087807911887,0.0008882442568751189,0.0012833273178313096,-0.001035675581080715,-0.004542692296093563,-0.002787830667086374,-0.002400288274155355,0.0004042830895193857,-0.0023670341716561837,-0.0034637657609179803,-0.0003509241650419875,0.0017540831589891886,-0.0008764331128129693,0.0011985547474570543,-0.000713656860955831,-0.0006782169449893352,0.0005989864862570454,0.0018570486607549547,-0.001146720892179937,-0.0016059290494294986,0.0007088689866327619
+52.393757,4.963514,0.0014481664866622362,-0.0034768785056312236,-0.0024700127785299408,-0.00107912318331,-0.0004611345500992387,-0.0021225350383452086,-0.00422499671514876,-0.0008055583603693182,-0.0006317318166610963,-0.00332834021207447,-0.0008629614792395309,-0.001565991120151703,-0.003510738041471465,-0.004836174886489559,-0.0041764003955090355,-0.0029177967562987236,-0.006092238829243313,-0.005163414989263934,-0.0043089366541188045,-0.004779783889583897,-9.340178189327052e-06,-0.0033490414217577577,-0.0016448977604082396,-0.0014353142623756295,-0.002658105950089501,0.0008135209277554214,-0.002095450686726327,-0.004295663302791548,-0.001647930502899461,0.0003843497118283703,-0.004515058815371946,-0.0029183818260279364,-0.004168660060541422,-0.0026702124308341296,-0.005128010499975161,-0.006305438827340259,-0.001996502360291301,-0.003919805029658654,-0.0030883698356805153,-0.005576208780791189,-0.001111755743124881,-0.0029166726821686904,-0.004735675581080715,-0.005642692296093562,-0.006387830667086374,-0.0055002882741553545,-0.004195716910480614,-0.006167034171656184,-0.00726376576091798,-0.0036509241650419873,-0.003545916841010812,-0.0024764331128129696,-0.0021014452525429453,-0.006413656860955831,-0.004078216944989336,-0.004601013513742955,-0.002942951339245045,-0.0035467208921799373,-0.004305929049429498,-0.004191131013367239
+52.393719,4.963541,0.0013481664866622362,-0.0015768785056312234,-0.004070012778529941,-0.0006791231833100002,-0.0018611345500992385,-0.0006225350383452085,-0.00472499671514876,-0.0006055583603693181,-0.0015317318166610965,-0.0037283402120744692,-0.0015629614792395307,-0.00046599112015170306,-0.0026107380414714648,-0.0037361748864895594,-0.001376400395509035,-0.0009177967562987235,-0.0025922388292433122,-0.0028634149892639337,-0.0053089366541188045,-0.001979783889583897,-9.340178189327052e-06,-0.0042490414217577575,-0.00274489776040824,-0.0008353142623756296,-0.0035581059500895008,-8.647907224457857e-05,-0.003495450686726327,-0.003895663302791548,-0.0031479305028994614,-0.0016156502881716297,-0.005215058815371946,-0.004318381826027937,-0.0031686600605414215,-0.0035702124308341293,-0.00492801049997516,-0.007405438827340258,-0.003496502360291301,-0.006319805029658654,-0.0030883698356805153,-0.005376208780791189,-0.002811755743124881,-0.0028166726821686906,-0.006635675581080715,-0.006642692296093562,-0.006787830667086374,-0.006200288274155355,-0.008795716910480615,-0.005667034171656184,-0.00636376576091798,-0.004550924165041987,-0.0020459168410108114,-0.004476433112812969,-0.003301445252542946,-0.006213656860955831,-0.004078216944989336,-0.005401013513742955,-0.005042951339245046,-0.004346720892179937,-0.005105929049429498,-0.005591131013367238
+52.393653,4.963889,0.002948166486662236,0.0024231214943687767,-0.001070012778529941,0.0007208768166899999,0.00033886544990076133,0.0020774649616547916,-0.0005249967151487601,0.0017944416396306817,0.002468268183338904,-0.0003283402120744695,0.0011370385207604692,0.002334008879848297,0.0012892619585285349,-0.0015361748864895595,-0.0006764003955090352,0.0027822032437012766,-9.223882924331238e-05,-0.0004634149892639335,0.0022910633458811955,0.0006202161104161028,0.0014906598218106728,-0.0021490414217577576,0.0027551022395917607,0.0010646857376243705,-0.000858105950089501,0.0031135209277554214,0.0004045493132736734,-0.0041956633027915476,-0.0019479305028994613,0.0016843497118283703,-0.0018150588153719464,-0.0010183818260279362,-0.0014686600605414214,-0.0004702124308341295,-0.0025280104999751605,-0.0021054388273402586,-0.001696502360291301,-0.0023198050296586543,1.1630164319484447e-05,-0.002176208780791189,0.001388244256875119,0.0004833273178313094,-0.004735675581080715,-0.0012426922960935625,-0.0029878306670863735,-0.001300288274155355,0.00020428308951938567,-0.001967034171656184,-0.00416376576091798,-0.0007509241650419875,0.00015408315898918852,-0.0013764331128129693,-0.0006014452525429457,-0.002213656860955831,-0.0018782169449893353,-0.002701013513742955,-0.002342951339245045,-0.002746720892179937,-0.0024059290494294985,-0.00019113101336723807
+52.393654,4.963591,0.0019481664866622362,0.0016231214943687763,-0.000570012778529941,0.0013208768166899998,-0.0004611345500992387,-0.00012253503834520847,-0.00122499671514876,-0.00040555836036931824,0.002768268183338904,-0.0029283402120744697,-6.29614792395308e-05,0.001134008879848297,-0.0010107380414714651,-0.0034361748864895594,-0.0010764003955090352,0.003282203243701276,-0.0018922388292433126,-0.004063414989263933,-0.0012089366541188046,-0.002979783889583897,-0.0028093401781893266,-0.0020490414217577573,-0.0008448977604082397,-0.0027353142623756294,-0.004258105950089501,0.0005135209277554215,-0.0027954506867263265,-0.002895663302791548,-0.004747930502899461,-0.0017156502881716296,-0.0032150588153719464,-0.003318381826027936,-0.0029686600605414214,-0.0007702124308341296,-0.0005280104999751604,-0.0042054388273402585,-0.000996502360291301,-0.0025198050296586544,-0.0020883698356805157,-0.006176208780791189,-0.001611755743124881,-0.0035166726821686907,-0.005035675581080715,-0.004242692296093562,-0.008287830667086373,-0.004900288274155355,-0.003995716910480614,-0.003167034171656184,-0.0004637657609179802,-0.0017509241650419875,-0.0005459168410108114,-0.0017764331128129695,-0.0012014452525429457,-0.002913656860955831,-0.001978216944989335,-0.002201013513742955,-0.0019429513392450453,-0.002646720892179937,-0.0012059290494294986,-0.0014911310133672382
+52.393601,4.963935,-0.005251833513337764,-0.007876878505631223,-0.00917001277852994,-0.00497912318331,-0.008161134550099237,-0.006922535038345209,-0.00992499671514876,-0.006205558360369318,-0.005731731816661097,-0.00972834021207447,-0.007262961479239531,-0.006165991120151703,-0.008310738041471465,-0.00913617488648956,-0.007676400395509035,-0.006117796756298723,-0.008392238829243313,-0.009363414989263933,-0.008408936654118805,-0.009079783889583897,-0.006509340178189328,-0.008949041421757757,-0.0070448977604082395,-0.00593531426237563,-0.008858105950089502,-0.004286479072244579,-0.008395450686726326,-0.013395663302791547,-0.009847930502899461,-0.006715650288171629,-0.010115058815371947,-0.010718381826027936,-0.010068660060541421,-0.006470212430834129,-0.01142801049997516,-0.011205438827340257,-0.0095965023602913,-0.010219805029658654,-0.009688369835680515,-0.010376208780791188,-0.007411755743124881,-0.008116672682168691,-0.009635675581080715,-0.010242692296093562,-0.011187830667086373,-0.010300288274155354,-0.008495716910480615,-0.011767034171656183,-0.012063765760917979,-0.009950924165041987,-0.007445916841010812,-0.009676433112812969,-0.008501445252542945,-0.012113656860955831,-0.009378216944989335,-0.010601013513742954,-0.010842951339245045,-0.008846720892179936,-0.012105929049429498,-0.011191131013367238
+52.393594,4.963842,0.004048166486662236,-0.00027687850563122356,-0.001070012778529941,0.0012208768166899998,0.0012388654499007612,0.0009774649616547915,-0.00252499671514876,0.0011944416396306818,-0.00023173181666109616,0.0005716597879255303,-0.003262961479239531,-0.0011659911201517032,-0.0036107380414714648,-0.00603617488648956,-0.006676400395509035,-0.004717796756298723,-0.0036922388292433125,-0.0015634149892639335,-8.936654118804556e-06,-0.0007797838895838971,0.000990659821810673,-0.009249041421757758,-0.00874489776040824,-0.01033531426237563,-0.0125581059500895,-0.0033864790722445783,-0.009495450686726326,-0.006195663302791548,-0.0072479305028994604,-0.0039156502881716295,-0.009615058815371946,-0.005418381826027937,-0.007968660060541422,-0.00947021243083413,-0.00642801049997516,-0.009805438827340258,-0.006996502360291301,-0.008319805029658655,-0.008388369835680516,-0.012176208780791188,-0.006811755743124881,-0.010016672682168692,-0.007835675581080715,-0.010742692296093563,-0.013587830667086374,-0.014900288274155354,-0.011395716910480615,-0.010767034171656184,-0.013863765760917982,-0.009550924165041988,-0.008345916841010811,-0.009076433112812969,-0.005901445252542946,-0.01081365686095583,-0.010278216944989335,-0.006701013513742955,-0.006742951339245046,-0.010546720892179937,-0.006105929049429498,-0.007991131013367238
+52.393568,4.963866,0.002948166486662236,-0.0008768785056312235,-7.001277852994092e-05,0.0014208768166899999,0.0018388654499007613,0.0013774649616547915,-0.00172499671514876,0.0002944416396306818,0.0023682681833389037,-0.0006283402120744695,3.7038520760469205e-05,-0.0009659911201517031,-0.0011107380414714652,-0.0023361748864895596,-0.0015764003955090352,-0.0003177967562987236,-0.0020922388292433126,-0.0019634149892639335,-0.0028089366541188044,-0.0016797838895838972,9.065982181067278e-05,-0.003449041421757757,-0.0014448977604082395,-0.002635314262375629,-0.001558105950089501,0.0007135209277554214,-0.0016954506867263267,-0.0007956633027915479,-0.004047930502899461,0.00028434971182837027,-0.003915058815371946,-0.002418381826027936,-0.002068660060541421,-0.0026702124308341296,-0.00672801049997516,-0.0037054388273402585,-0.002496502360291301,-0.004519805029658654,-0.0012883698356805154,-0.0028762087807911885,-0.002211755743124881,-0.0022166726821686903,-0.004535675581080715,-0.0060426922960935625,-0.005887830667086373,-0.0058002882741553545,-0.0034957169104806144,-0.003167034171656184,-0.00606376576091798,-0.0030509241650419875,-0.0014459168410108113,-0.0024764331128129696,-0.0022014452525429455,-0.006813656860955831,-0.004178216944989335,-0.008001013513742954,-0.0014429513392450453,-0.0020467208921799373,-0.0022059290494294984,-0.001991131013367238
+52.393526,4.963909,0.002348166486662236,-0.0019768785056312236,-0.003070012778529941,0.00042087681668999985,-0.00016113455009923868,7.746496165479157e-05,-0.00392499671514876,-0.0005055583603693183,-0.0015317318166610965,-0.00452834021207447,-0.002162961479239531,-0.0013659911201517028,-0.0010107380414714651,-0.004836174886489559,-0.006276400395509036,-0.0019177967562987233,-0.004292238829243312,-0.004063414989263933,-0.0028089366541188044,-0.001979783889583897,-0.00020934017818932714,-0.0030490414217577574,-0.0017448977604082399,-0.0017353142623756294,-0.0037581059500895013,0.0011135209277554213,-0.0017954506867263265,-0.004595663302791548,-0.0034479305028994613,0.0009843497118283704,-0.003615058815371946,-0.002118381826027936,-0.0032686600605414213,-0.0006702124308341295,-0.0036280104999751603,-0.0042054388273402585,-0.002896502360291301,-0.0019198050296586543,-0.0036883698356805156,-0.004676208780791188,-0.002811755743124881,-0.006816672682168691,-0.004635675581080715,-0.0050426922960935625,-0.009187830667086373,-0.007100288274155355,-0.0008957169104806144,-0.004067034171656184,-0.00696376576091798,-0.005050924165041987,-0.003245916841010812,-0.003976433112812969,-0.002301445252542946,-0.004413656860955831,-0.003378216944989335,-0.004301013513742955,-0.005742951339245046,-0.004846720892179937,-0.004105929049429498,-0.005191131013367239
+52.393407,4.964012,0.002148166486662236,0.0003231214943687764,-0.0019700127785299408,0.00102087681669,0.0010388654499007613,-0.00012253503834520847,-0.00172499671514876,0.0005944416396306818,-3.173181666109607e-05,-0.0010283402120744695,0.0007370385207604692,-0.002265991120151703,-0.002410738041471465,-0.0032361748864895594,-0.008076400395509036,-0.0031177967562987232,-0.0049922388292433124,-0.0034634149892639335,-0.0050089366541188046,-0.0035797838895838974,-0.000909340178189327,-0.0011490414217577574,0.0006551022395917606,-0.0013353142623756292,-0.0007581059500895009,0.0009135209277554214,-0.0036954506867263267,-0.0012956633027915478,-0.00044793050289946114,0.0015843497118283702,-0.0029150588153719465,0.0007816181739720637,-0.0013686600605414215,-0.0005702124308341295,-0.0026280104999751603,-0.002705438827340259,-0.000896502360291301,-0.0019198050296586543,-0.0023883698356805157,-0.0038762087807911886,-1.1755743124881087e-05,-0.004916672682168691,-0.004935675581080715,-0.0040426922960935625,-0.007087830667086374,-0.009600288274155355,-0.003095716910480614,-0.005567034171656183,-0.00846376576091798,-0.0023509241650419874,0.00015408315898918852,2.3566887187030693e-05,0.0002985547474570543,-0.003313656860955831,-0.0009782169449893351,-0.0007010135137429545,-0.0003429513392450452,-0.0008467208921799372,-0.00040592904942949844,-0.00019113101336723807
+52.393376,4.964113,0.0034481664866622365,0.009323121494368775,0.0006299872214700591,0.00402087681669,0.0001388654499007613,0.0020774649616547916,-0.00032499671514876,0.0020944416396306816,0.0026682681833389036,-0.0020283402120744695,0.0018370385207604693,0.002434008879848297,0.0008892619585285349,0.00486382511351044,0.0001235996044909648,0.003182203243701277,0.0007077611707566875,0.0013365850107360665,0.0012910633458811955,0.002020216110416103,0.002990659821810673,-0.0007490414217577575,0.0024551022395917603,0.0017646857376243706,0.0013418940499104989,0.0038135209277554215,0.0013045493132736734,-0.0005956633027915479,0.00745206949710054,0.00288434971182837,-0.0028150588153719462,-0.001618381826027936,-0.0029686600605414214,0.0011297875691658706,0.00387198950002484,-0.0029054388273402586,0.0009034976397086991,-0.0001198050296586544,0.0011116301643194844,-0.0009762087807911887,0.001688244256875119,0.0011833273178313095,-0.001835675581080715,-0.0034426922960935627,-0.0035878306670863733,-0.0012002882741553552,-0.0002957169104806143,3.29658283438161e-05,-0.0034637657609179803,-5.092416504198739e-05,0.0018540831589891884,0.0033235668871870305,0.0027985547474570546,-0.0013136568609558308,-0.0003782169449893352,-0.007701013513742955,0.001957048660754955,-0.002846720892179937,-0.0007059290494294985,-0.005691131013367238
+52.393372,4.964131,0.0030481664866622363,-0.005776878505631224,0.00022998722147005908,0.00362087681669,-0.0007611345500992386,0.00027746496165479155,-0.00062499671514876,0.0014944416396306818,0.0014682681833389037,-0.0023283402120744695,0.0011370385207604692,0.001834008879848297,0.00018926195852853487,-0.0005361748864895594,-0.0005764003955090352,0.0017822032437012764,-0.00029223882924331237,-0.0005634149892639335,0.00039106334588119546,0.0006202161104161028,0.002290659821810673,-0.0024490414217577575,0.0006551022395917606,0.0010646857376243705,-0.000258105950089501,0.0038135209277554215,4.549313273673455e-06,-0.0010956633027915477,-0.002547930502899461,0.0018843497118283703,-0.0018150588153719464,-0.0014183818260279362,-0.0010686600605414216,0.0005297875691658706,-0.0060280104999751605,-0.0038054388273402588,0.00020349763970869896,-0.0012198050296586545,-0.00018836983568051554,-0.0018762087807911887,0.000788244256875119,0.0003833273178313095,-0.002635675581080715,-0.0010426922960935627,-0.004087830667086374,-0.001900288274155355,-0.0006957169104806144,-0.0017670341716561839,-0.0038637657609179804,4.9075834958012656e-05,0.0007540831589891886,0.0011235668871870305,0.0017985547474570543,-0.0019136568609558308,-0.0009782169449893351,-0.0014010135137429544,-0.0009429513392450453,0.0005532791078200628,-0.0016059290494294986,-0.0009911310133672382
+52.393311,4.964097,0.0011481664866622363,-0.00037687850563122356,-0.001870012778529941,2.0876816689999883e-05,-0.0012611345500992386,-0.0006225350383452085,-0.0036249967151487598,-0.0011055583603693181,-0.000331731816661096,-0.0035283402120744696,-0.0009629614792395309,-6.599112015170309e-05,-0.002410738041471465,-0.0027361748864895598,-0.003976400395509035,-0.0004177967562987235,-0.0030922388292433127,-0.003263414989263934,-0.0031089366541188043,-0.0021797838895838972,-0.0001093401781893271,-0.0024490414217577575,-0.0009448977604082395,-0.0013353142623756292,-0.001558105950089501,0.0008135209277554214,-0.0021954506867263267,-0.003095663302791548,-0.0005479305028994612,8.434971182837018e-05,-0.003915058815371946,-0.001918381826027936,-0.0018686600605414211,-0.0016702124308341294,-0.0021280104999751607,-0.002705438827340259,-0.0035965023602913013,-0.0034198050296586546,-0.0025883698356805153,-0.0041762087807911885,-0.0015117557431248811,-0.0020166726821686906,-0.0036356755810807153,-0.0040426922960935625,-0.006687830667086374,-0.005000288274155355,-0.0021957169104806144,-0.004167034171656184,-0.005963765760917981,-0.0026509241650419873,-0.003245916841010812,-0.0025764331128129694,-1.4452525429457406e-06,-0.004613656860955831,-0.0042782169449893355,-0.0036010135137429546,-0.0003429513392450452,-0.003446720892179937,-0.0028059290494294987,-0.002291131013367238
+52.393293,4.964116,-0.004251833513337764,-0.007776878505631224,-0.007170012778529941,-0.0030791231833100004,-0.004761134550099239,-0.0036225350383452086,-0.00572499671514876,-0.004405558360369318,-0.0035317318166610966,-0.00802834021207447,-0.00466296147923953,-0.0033659911201517033,-0.003710738041471465,-0.00853617488648956,-0.004476400395509035,-0.003417796756298723,-0.005592238829243312,-0.007263414989263934,-0.005408936654118805,-0.004379783889583897,-0.0035093401781893267,-0.0062490414217577575,-0.00524489776040824,-0.00433531426237563,-0.005058105950089501,-0.0009864790722445786,-0.0050954506867263265,-0.006195663302791548,-0.007047930502899461,-0.00461565028817163,-0.008315058815371945,-0.007118381826027935,-0.006668660060541422,-0.005470212430834129,-0.007928010499975161,-0.006405438827340258,-0.006396502360291301,-0.007619805029658654,-0.005088369835680516,-0.006476208780791189,-0.004011755743124882,-0.00471667268216869,-0.007135675581080716,-0.008442692296093563,-0.009787830667086373,-0.0068002882741553545,-0.004895716910480614,-0.007467034171656184,-0.009863765760917981,-0.006350924165041988,-0.004245916841010812,-0.0052764331128129695,-0.005001445252542945,-0.00791365686095583,-0.0065782169449893355,-0.0076010135137429555,-0.005542951339245045,-0.007446720892179937,-0.007605929049429498,-0.005691131013367238
+52.393253,4.964184,-0.005951833513337764,-0.007676878505631224,-0.008970012778529941,-0.0060791231833100005,-0.008161134550099237,-0.0062225350383452085,-0.00792499671514876,-0.006405558360369318,-0.006731731816661096,-0.01002834021207447,-0.006562961479239531,-0.004865991120151703,-0.0065107380414714654,-0.009736174886489559,-0.007776400395509035,-0.005017796756298723,-0.0066922388292433126,-0.007063414989263933,-0.006508936654118805,-0.007279783889583897,-0.004309340178189327,-0.008849041421757757,-0.007244897760408238,-0.00663531426237563,-0.007658105950089501,-0.004086479072244579,-0.006795450686726327,-0.009895663302791548,-0.010747930502899461,-0.006715650288171629,-0.010215058815371946,-0.009818381826027936,-0.00986866006054142,-0.00787021243083413,-0.01262801049997516,-0.009805438827340258,-0.0087965023602913,-0.008119805029658655,-0.007788369835680516,-0.010676208780791188,-0.00801175574312488,-0.006916672682168691,-0.011235675581080715,-0.012042692296093562,-0.013387830667086374,-0.010400288274155355,-0.007095716910480615,-0.012767034171656184,-0.013263765760917982,-0.008950924165041988,-0.007245916841010811,-0.007676433112812969,-0.009601445252542945,-0.01191365686095583,-0.010678216944989334,-0.011201013513742954,-0.009642951339245044,-0.010246720892179937,-0.010105929049429498,-0.010291131013367238
+52.393244,4.964136,0.003348166486662236,0.0005231214943687765,-0.000670012778529941,0.0025208768166899995,0.002238865449900761,0.0023774649616547915,-0.00202499671514876,0.002194441639630682,0.0014682681833389037,-0.0009283402120744696,0.0013370385207604693,0.000634008879848297,0.0004892619585285348,-0.0015361748864895595,-0.001376400395509035,0.0014822032437012765,-0.0008922388292433124,-0.0019634149892639335,-0.0012089366541188046,2.0216110416102786e-05,0.001790659821810673,-0.0023490414217577577,-0.0002448977604082394,0.0002646857376243705,-0.000258105950089501,0.0037135209277554216,0.00020454931327367338,0.0004043366972084521,0.0019520694971005385,0.0035843497118283702,-0.0010150588153719463,0.000881618173972064,0.0006313399394585786,0.0011297875691658706,0.00447198950002484,-0.004005438827340259,-0.000796502360291301,-0.0034198050296586546,0.00011163016431948449,-0.0031762087807911885,-1.1755743124881087e-05,0.0026833273178313096,-0.0012356755810807151,-4.2692296093562636e-05,-0.005587830667086373,-0.0032002882741553555,-0.0002957169104806143,-0.002567034171656184,-0.0038637657609179804,-0.0010509241650419874,0.0008540831589891886,2.3566887187030693e-05,0.0023985547474570544,-0.003213656860955831,-0.0002782169449893352,0.005098986486257045,-4.295133924504526e-05,5.3279107820062804e-05,-0.0012059290494294986,0.0002088689866327619
+52.393152,4.964218,0.002348166486662236,0.00022312149436877645,-7.001277852994092e-05,0.00242087681669,0.0009388654499007613,0.0021774649616547914,-0.00172499671514876,0.0010944416396306818,0.0005682681833389038,-0.0009283402120744696,0.0006370385207604692,0.001234008879848297,-0.001410738041471465,-0.005236174886489559,-0.002776400395509035,0.0010822032437012765,-0.0010922388292433124,-0.0008634149892639334,-0.0008089366541188045,0.0004202161104161028,0.0023906598218106727,-0.0028490414217577573,-0.0008448977604082397,0.0003646857376243705,-0.00035810595008950105,0.0026135209277554214,4.549313273673455e-06,-0.002695663302791548,-0.0012479305028994612,0.0016843497118283703,-0.0024150588153719465,-0.0005183818260279361,-0.0006686600605414213,-0.0005702124308341295,-0.0031280104999751603,-0.0023054388273402587,-0.001396502360291301,-0.0015198050296586544,-0.0016883698356805156,-0.0022762087807911887,-0.00011175574312488113,-0.0011166726821686904,-0.005335675581080715,-0.008642692296093563,-0.007587830667086374,-0.005200288274155355,-0.0010957169104806143,-0.000367034171656184,-0.00436376576091798,-0.0014509241650419876,0.0006540831589891885,-0.003576433112812969,-1.4452525429457406e-06,-0.004313656860955831,-0.002278216944989335,-0.0023010135137429546,-0.0007429513392450453,-0.001146720892179937,-0.0011059290494294985,-0.00039113101336723816
+52.393099,4.964375,-0.004751833513337763,-0.004576878505631224,-0.006770012778529941,-0.00457912318331,-0.005861134550099239,-0.005622535038345209,-0.00702499671514876,-0.006105558360369318,-0.005831731816661096,-0.00932834021207447,-0.005862961479239531,-0.005865991120151703,-0.006610738041471466,-0.00933617488648956,-0.007376400395509035,-0.005317796756298723,-0.007692238829243313,-0.008963414989263932,-0.007508936654118805,-0.006379783889583897,-0.004609340178189327,-0.010549041421757758,-0.007344897760408239,-0.00533531426237563,-0.007658105950089501,-0.0031864790722445787,-0.0070954506867263265,-0.009395663302791547,-0.007447930502899461,-0.0059156502881716295,-0.011315058815371946,-0.010218381826027936,-0.0076686600605414225,-0.00797021243083413,-0.00972801049997516,-0.009905438827340258,-0.007696502360291301,-0.009619805029658654,-0.008088369835680516,-0.010476208780791188,-0.0076117557431248815,-0.007816672682168692,-0.010735675581080715,-0.010842692296093562,-0.012287830667086374,-0.010200288274155355,-0.007195716910480614,-0.011467034171656183,-0.012163765760917981,-0.008550924165041987,-0.006845916841010812,-0.007976433112812969,-0.015001445252542947,-0.010113656860955831,-0.009778216944989334,-0.011001013513742953,-0.008042951339245045,-0.009646720892179937,-0.010005929049429499,-0.011191131013367238
+52.393069,4.964286,0.00034816648666223613,-0.0031768785056312233,-0.002370012778529941,0.00042087681668999985,-0.0011611345500992386,-0.00032253503834520845,-0.00332499671514876,-0.0017055583603693182,0.00026826818333890385,-0.004728340212074469,-0.0013629614792395306,-0.0011659911201517032,-0.002810738041471465,-0.005236174886489559,-0.004776400395509035,-0.003717796756298723,-0.0033922388292433126,-0.004563414989263934,-0.0032089366541188046,-0.003379783889583897,-0.002009340178189327,-0.003149041421757757,-0.0007448977604082394,-0.0019353142623756295,-0.003258105950089501,0.0025135209277554215,-0.0005954506867263265,-0.003795663302791548,-0.0029479305028994613,-0.0016156502881716297,-0.005515058815371946,-0.004318381826027937,-0.0035686600605414217,-0.0021702124308341296,-0.005728010499975161,-0.0039054388273402586,-0.004896502360291301,-0.004919805029658654,-0.0035883698356805153,-0.005576208780791189,-0.002511755743124881,-0.00441667268216869,-0.005435675581080715,-0.0070426922960935626,-0.008987830667086374,-0.007900288274155355,-0.003095716910480614,-0.004367034171656184,-0.00716376576091798,-0.0033509241650419874,-0.0019459168410108113,-0.0012764331128129695,-0.002401445252542946,-0.006113656860955831,-0.004378216944989336,-0.0028010135137429546,-0.0018429513392450453,-0.003646720892179937,-0.005005929049429498,-0.003691131013367238
+52.392868,4.964465,0.0022481664866622363,0.0008231214943687765,-0.0002700127785299409,0.0006208768166899998,0.00023886544990076134,-0.00012253503834520847,-0.00192499671514876,9.444163963068177e-05,0.0011682681833389038,-0.0022283402120744696,-0.0001629614792395308,-0.0006659911201517029,0.0006892619585285348,-0.0024361748864895594,-0.0009764003955090352,-0.0001177967562987235,0.0003077611707566876,-0.0012634149892639334,-0.0003089366541188046,-7.978388958389715e-05,0.002690659821810673,-0.0028490414217577573,-0.0004448977604082395,0.0002646857376243705,-0.0005581059500895009,0.0023135209277554214,-0.0004954506867263267,-0.0010956633027915477,-0.0019479305028994613,0.00028434971182837027,-0.004315058815371946,-0.003018381826027936,-0.0025686600605414212,-0.0015702124308341295,-0.0035280104999751605,-0.004505438827340258,-0.002896502360291301,-0.004219805029658654,-0.0016883698356805156,-0.003976208780791189,-0.0014117557431248809,-0.0019166726821686904,-0.0040356755810807155,-0.004342692296093562,-0.005087830667086374,-0.004100288274155355,-0.00039571691048061435,-0.002967034171656184,-0.00516376576091798,-0.0021509241650419873,-0.00044591684101081153,0.00042356688718703055,-0.00030144525254294577,-0.0045136568609558305,-0.003278216944989335,-0.0026010135137429545,-0.0012429513392450452,-0.0025467208921799373,-0.0037059290494294984,-0.0038911310133672387
+52.392605,4.964806,0.006948166486662236,0.0034231214943687767,0.005029987221470059,0.00602087681669,0.005038865449900761,0.006377464961654792,0.00317500328485124,0.006194441639630682,0.005068268183338904,0.003271659787925531,0.004637038520760469,0.005534008879848297,0.003289261958528535,0.0014638251135104404,0.004223599604490965,0.004582203243701277,0.004407761170756687,0.0027365850107360663,0.0033910633458811954,0.004220216110416103,0.006290659821810673,0.0013509585782422427,0.004355102239591761,0.00596468573762437,0.005041894049910499,0.009113520927755421,0.0045045493132736735,0.002804336697208452,0.0039520694971005394,0.00618434971182837,0.0009849411846280535,0.002481618173972064,0.0030313399394585787,0.0037297875691658707,0.0009719895000248396,0.0015945611726597415,0.002703497639708699,0.0019801949703413457,0.0024116301643194843,0.0011237912192088111,0.0039882442568751186,0.0032833273178313094,0.001964324418919285,0.00015730770390643745,-0.0004878306670863734,0.0003997117258446449,0.004004283089519386,3.29658283438161e-05,-0.0012637657609179801,0.0019490758349580127,0.006054083158989188,0.0034235668871870307,0.0033985547474570544,0.0008863431390441691,0.002021783055010665,0.0007989864862570455,0.0023570486607549547,0.0011532791078200629,0.0010940709505705014,0.006308868986632762
+52.392562,4.964765,0.0019481664866622362,-0.00037687850563122356,0.0005299872214700591,0.0034208768166899997,0.0005388654499007613,0.0022774649616547917,7.500328485123995e-05,0.001394441639630682,0.002268268183338904,-0.0012283402120744696,3.7038520760469205e-05,0.0009340088798482969,0.0005892619585285349,-0.0007361748864895595,0.0006235996044909648,-1.7796756298723562e-05,-0.0013922388292433123,-0.0021634149892639336,-0.0008089366541188045,0.0008202161104161028,0.002690659821810673,-0.0019490414217577575,0.0038551022395917605,0.0026646857376243704,-0.0013581059500895009,0.004113520927755422,-0.0004954506867263267,0.0013043366972084521,0.0010520694971005388,0.0014843497118283702,-0.0017150588153719464,-0.001218381826027936,-0.0006686600605414213,0.0014297875691658705,-0.0016280104999751605,-0.0018054388273402587,-0.001996502360291301,-0.0014198050296586546,-0.0007883698356805156,0.00022379121920881135,-0.0003117557431248811,-0.0006166726821686906,-0.0017356755810807151,-0.0024426922960935626,-0.004287830667086373,-0.001400288274155355,-0.0002957169104806143,-0.003867034171656184,-0.00496376576091798,-0.0011509241650419872,0.0006540831589891885,0.0026235668871870304,0.0005985547474570543,-0.002213656860955831,-0.0014782169449893351,-0.0006010135137429545,-0.0007429513392450453,-0.0005467208921799372,-0.0013059290494294986,0.0005088689866327619
+52.392449,4.964947,0.005748166486662236,0.0030231214943687765,0.002829987221470059,0.00482087681669,0.0036388654499007614,0.004877464961654791,0.0024750032848512397,0.004594441639630682,0.0038682681833389037,0.0010716597879255306,0.003837038520760469,0.004834008879848297,0.003189261958528535,0.00036382511351044054,0.0010235996044909647,0.0023822032437012764,0.0010077611707566875,0.0014365850107360665,0.0016910633458811952,0.003220216110416103,0.0037906598218106725,0.0006509585782422426,0.0023551022395917605,0.0032646857376243707,0.0005418940499104989,0.006513520927755421,0.002704549313273673,0.003304336697208452,0.003652069497100539,0.00428434971182837,0.0001849411846280537,-0.00011838182602793624,0.0013313399394585786,0.0028297875691658705,0.00017198950002483956,0.0007945611726597412,0.0020034976397086987,0.0005801949703413455,0.0011116301643194844,0.00022379121920881135,0.003188244256875119,0.0013833273178313094,-0.0017356755810807151,-0.0005426922960935625,-0.003787830667086374,-0.0012002882741553552,-0.00019571691048061434,-0.0013670341716561839,-0.0034637657609179803,0.0009490758349580126,0.0012540831589891886,0.0022235668871870306,0.0021985547474570543,-0.0013136568609558308,0.0008217830550106648,-0.0009010135137429544,0.0006570486607549547,-4.67208921799372e-05,0.0005940709505705015,0.001808868986632762
+52.392376,4.964989,0.004048166486662236,0.005023121494368776,0.002129987221470059,0.00592087681669,0.004138865449900761,0.005077464961654792,0.00197500328485124,0.005094441639630682,0.006668268183338905,0.0017716597879255302,0.004037038520760469,0.0045340088798482975,0.005189261958528535,0.0007638251135104403,0.0016235996044909648,0.0043822032437012765,0.0038077611707566872,0.0034365850107360664,0.0022910633458811955,0.004120216110416103,0.004490659821810673,0.0027509585782422427,0.0012551022395917604,0.00396468573762437,0.001541894049910499,0.006913520927755422,0.003004549313273673,0.002104336697208452,0.004852069497100539,0.00518434971182837,-0.0019150588153719463,0.0007816181739720637,0.0028313399394585786,0.0018297875691658705,0.0017719895000248395,0.00029456117265974136,0.0028034976397086986,0.0010801949703413455,0.0020116301643194846,-0.0003762087807911887,0.002288244256875119,0.0023833273178313096,-0.0017356755810807151,0.0018573077039064376,-0.0022878306670863734,0.0007997117258446448,0.0015042830895193858,0.003932965828343816,-0.0017637657609179801,0.0014490758349580126,0.0029540831589891887,0.0043235668871870305,0.0036985547474570543,-0.001813656860955831,-0.001278216944989335,0.0018989864862570456,0.0005570486607549546,0.0013532791078200628,0.003594070950570501,0.002008868986632762
+52.340134,4.951234,-0.008351833513337764,-0.008176878505631225,-0.009270012778529941,-0.00297912318331,-0.009361134550099239,-0.009622535038345209,-0.00672499671514876,-0.01220555836036932,-0.004531731816661097,-0.010428340212074469,-0.00976296147923953,-0.006765991120151703,-0.010510738041471466,-0.00903617488648956,-0.010576400395509035,-0.005317796756298723,-0.009792238829243311,-0.010663414989263932,-0.008308936654118805,-0.007379783889583898,-0.009509340178189328,-0.009249041421757758,-0.008044897760408239,-0.01093531426237563,-0.0125581059500895,-0.008086479072244579,-0.011495450686726326,-0.012195663302791548,-0.01114793050289946,-0.01021565028817163,-0.011615058815371946,-0.013218381826027937,-0.00956866006054142,-0.010070212430834129,-0.01062801049997516,-0.01470543882734026,-0.014596502360291301,-0.014619805029658655,-0.013988369835680515,-0.014276208780791189,-0.01131175574312488,-0.008716672682168691,-0.009635675581080715,-0.012442692296093563,-0.011787830667086373,-0.011100288274155354,-0.012095716910480614,-0.014767034171656184,-0.01656376576091798,-0.012350924165041986,-0.013145916841010812,-0.011376433112812969,-0.013601445252542945,-0.015013656860955831,-0.015378216944989335,-0.015701013513742954,-0.014842951339245045,-0.01574672089217994,-0.018805929049429498,-0.012991131013367239
+52.340111,4.951157,-0.004551833513337764,-0.010676878505631223,-0.011570012778529941,-0.00707912318331,-0.008661134550099238,-0.008522535038345208,-0.00912499671514876,-0.008405558360369318,-0.007531731816661096,-0.011228340212074469,-0.010362961479239532,-0.009665991120151703,-0.009810738041471465,-0.012036174886489559,-0.010776400395509035,-0.007417796756298724,-0.011492238829243311,-0.012863414989263933,-0.012008936654118806,-0.011279783889583898,-0.012809340178189329,-0.012649041421757757,-0.01134489776040824,-0.01273531426237563,-0.0139581059500895,-0.009886479072244578,-0.012495450686726327,-0.015595663302791546,-0.015347930502899461,-0.00981565028817163,-0.014515058815371946,-0.015518381826027937,-0.012568660060541421,-0.01397021243083413,-0.016328010499975162,-0.01610543882734026,-0.0146965023602913,-0.015919805029658653,-0.015588369835680516,-0.01667620878079119,-0.013511755743124881,-0.014916672682168692,-0.016035675581080714,-0.015042692296093563,-0.020787830667086372,-0.016100288274155355,-0.015995716910480615,-0.020267034171656182,-0.01976376576091798,-0.01595092416504199,-0.014645916841010813,-0.01757643311281297,-0.015201445252542946,-0.01921365686095583,-0.015978216944989337,-0.018501013513742955,-0.018642951339245043,-0.01714672089217994,-0.0180059290494295,-0.016591131013367236
+52.340086,4.951194,-0.008751833513337765,-0.0070768785056312235,-0.007870012778529941,-0.00667912318331,-0.009461134550099238,-0.006922535038345209,-0.00902499671514876,-0.008105558360369318,-0.004931731816661096,-0.00902834021207447,-0.009262961479239532,-0.008265991120151701,-0.009010738041471466,-0.00773617488648956,-0.008376400395509036,-0.005617796756298724,-0.011192238829243311,-0.012863414989263933,-0.011708936654118806,-0.011079783889583897,-0.011609340178189327,-0.009449041421757757,-0.01074489776040824,-0.012535314262375629,-0.0133581059500895,-0.008886479072244578,-0.010695450686726326,-0.014095663302791548,-0.01164793050289946,-0.01111565028817163,-0.012315058815371946,-0.015818381826027936,-0.012368660060541421,-0.01277021243083413,-0.012428010499975162,-0.014005438827340257,-0.0133965023602913,-0.011919805029658654,-0.014388369835680516,-0.011776208780791188,-0.01141175574312488,-0.013816672682168692,-0.009435675581080716,-0.014042692296093562,-0.020187830667086373,-0.015600288274155355,-0.015795716910480616,-0.017967034171656182,-0.01936376576091798,-0.01645092416504199,-0.014045916841010812,-0.013676433112812969,-0.016101445252542944,-0.015213656860955832,-0.014578216944989335,-0.013401013513742954,-0.015342951339245044,-0.01624672089217994,-0.015505929049429497,-0.012291131013367238
+52.340041,4.951091,-0.008651833513337764,-0.013976878505631224,-0.011470012778529942,-0.01077912318331,-0.012561134550099239,-0.01212253503834521,-0.01282499671514876,-0.01420555836036932,-0.010731731816661096,-0.01372834021207447,-0.012262961479239531,-0.008265991120151701,-0.011610738041471466,-0.00963617488648956,-0.011176400395509035,-0.008217796756298723,-0.010892238829243311,-0.012563414989263933,-0.013808936654118805,-0.012079783889583898,-0.011209340178189328,-0.013249041421757759,-0.01534489776040824,-0.01403531426237563,-0.0182581059500895,-0.014186479072244578,-0.018195450686726327,-0.019595663302791548,-0.01834793050289946,-0.016415650288171633,-0.019615058815371948,-0.019318381826027936,-0.01796866006054142,-0.01957021243083413,-0.02172801049997516,-0.01920543882734026,-0.018896502360291303,-0.019819805029658653,-0.018488369835680515,-0.01777620878079119,-0.01761175574312488,-0.01581667268216869,-0.016635675581080714,-0.016742692296093563,-0.023487830667086373,-0.016100288274155355,-0.022595716910480613,-0.021367034171656182,-0.02096376576091798,-0.02095092416504199,-0.01934591684101081,-0.021976433112812967,-0.020201445252542947,-0.023513656860955832,-0.022478216944989336,-0.022101013513742954,-0.022842951339245045,-0.02434672089217994,-0.026205929049429498,-0.021491131013367238
+52.33998,4.950989,-0.006751833513337764,-0.009376878505631224,-0.010970012778529941,-0.00567912318331,-0.007761134550099239,-0.007722535038345208,-0.009824996715148759,-0.00790555836036932,-0.0039317318166610955,-0.009828340212074469,-0.008962961479239532,-0.005465991120151703,-0.0075107380414714655,-0.008636174886489559,-0.0071764003955090356,-0.0038177967562987233,-0.006492238829243313,-0.007363414989263933,-0.005808936654118805,-0.004879783889583897,-0.009409340178189328,-0.012849041421757757,-0.00614489776040824,-0.00863531426237563,-0.0102581059500895,-0.007086479072244578,-0.009795450686726326,-0.013495663302791547,-0.01164793050289946,-0.007615650288171629,-0.009515058815371945,-0.008618381826027937,-0.012368660060541421,-0.01197021243083413,-0.01522801049997516,-0.013905438827340258,-0.0126965023602913,-0.013919805029658654,-0.011688369835680515,-0.013076208780791188,-0.01221175574312488,-0.01051667268216869,-0.012135675581080715,-0.009542692296093563,-0.015587830667086374,-0.011100288274155354,-0.010295716910480614,-0.015467034171656183,-0.014863765760917979,-0.012750924165041987,-0.010745916841010813,-0.01247643311281297,-0.007201445252542946,-0.021113656860955832,-0.015678216944989335,-0.016601013513742952,-0.016042951339245045,-0.015346720892179937,-0.006105929049429498,-0.016091131013367236
+52.339932,4.950894,-0.006151833513337764,-0.009676878505631224,-0.0076700127785299405,-0.00557912318331,-0.006961134550099239,-0.004522535038345208,-0.00772499671514876,-0.008605558360369319,-0.005131731816661097,-0.00972834021207447,-0.009962961479239531,-0.005765991120151703,-0.009110738041471465,-0.005436174886489559,-0.007576400395509036,-0.005617796756298724,-0.008892238829243311,-0.009763414989263933,-0.0077089366541188056,-0.007179783889583897,-0.011109340178189328,-0.010449041421757758,-0.007444897760408239,-0.00833531426237563,-0.010958105950089501,-0.006386479072244579,-0.008695450686726326,-0.011995663302791547,-0.01164793050289946,-0.01031565028817163,-0.013015058815371947,-0.013118381826027935,-0.010068660060541421,-0.01147021243083413,-0.01202801049997516,-0.01650543882734026,-0.0113965023602913,-0.014619805029658655,-0.010388369835680516,-0.008676208780791188,-0.00971175574312488,-0.00701667268216869,-0.011935675581080716,-0.012442692296093563,-0.014587830667086374,-0.013400288274155354,-0.012695716910480614,-0.016567034171656184,-0.01536376576091798,-0.012650924165041986,-0.010545916841010812,-0.012276433112812969,-0.012201445252542945,-0.015213656860955832,-0.012878216944989335,-0.012701013513742953,-0.012542951339245045,-0.011646720892179937,-0.014305929049429499,-0.015791131013367238
+52.339848,4.950782,-0.007051833513337764,-0.005776878505631224,-0.007570012778529941,-0.00487912318331,-0.006761134550099239,-0.005722535038345209,-0.00712499671514876,-0.005905558360369318,-0.004131731816661096,-0.007628340212074469,-0.007262961479239531,-0.004565991120151703,-0.006710738041471465,-0.006236174886489559,-0.005376400395509035,-0.003717796756298723,-0.007692238829243313,-0.008563414989263933,-0.007208936654118805,-0.006779783889583897,-0.006609340178189327,-0.007949041421757758,-0.006044897760408239,-0.00893531426237563,-0.009458105950089502,-0.003986479072244578,-0.008795450686726327,-0.009295663302791548,-0.00794793050289946,-0.00801565028817163,-0.011315058815371946,-0.011818381826027936,-0.00836866006054142,-0.00877021243083413,-0.010528010499975161,-0.01300543882734026,-0.0095965023602913,-0.011619805029658654,-0.009788369835680516,-0.010176208780791188,-0.006911755743124881,-0.007216672682168691,-0.012835675581080716,-0.011842692296093563,-0.013487830667086373,-0.010900288274155356,-0.010595716910480614,-0.013167034171656183,-0.01236376576091798,-0.008350924165041986,-0.009145916841010812,-0.01067643311281297,-0.011201445252542946,-0.011613656860955831,-0.012378216944989334,-0.012001013513742954,-0.012742951339245044,-0.014146720892179937,-0.012905929049429499,-0.011791131013367238
+52.339856,4.950747,-0.005851833513337764,-0.008976878505631223,-0.006770012778529941,-0.00667912318331,-0.007461134550099239,-0.009022535038345209,-0.00772499671514876,-0.007405558360369318,-0.002731731816661096,-0.00792834021207447,-0.007562961479239531,-0.004265991120151703,-0.007310738041471466,-0.00563617488648956,-0.006076400395509035,-0.004617796756298724,-0.006492238829243313,-0.008563414989263933,-0.007008936654118805,-0.004779783889583897,-0.008309340178189328,-0.007749041421757758,-0.0063448977604082385,-0.00843531426237563,-0.0104581059500895,-0.005986479072244578,-0.008795450686726327,-0.014895663302791547,-0.012147930502899461,-0.01091565028817163,-0.015315058815371946,-0.01721838182602794,-0.01096866006054142,-0.01217021243083413,-0.018028010499975163,-0.010405438827340258,-0.0111965023602913,-0.010519805029658656,-0.012888369835680516,-0.009776208780791188,-0.00891175574312488,-0.00941667268216869,-0.009335675581080715,-0.011342692296093563,-0.012787830667086374,-0.008200288274155355,-0.008595716910480614,-0.012467034171656184,-0.01356376576091798,-0.009450924165041986,-0.009445916841010812,-0.010276433112812969,-0.011601445252542945,-0.014413656860955831,-0.014478216944989335,-0.014001013513742954,-0.014642951339245045,-0.015046720892179937,-0.017705929049429497,-0.014091131013367238
+52.339408,4.949986,-0.0035518335133377637,0.0037231214943687766,-0.004770012778529941,-0.00327912318331,-0.005861134550099239,-0.0034225350383452085,-0.009224996715148759,-0.0036055583603693177,-0.003331731816661096,-0.00782834021207447,-0.0044629614792395305,-0.003865991120151703,-0.005410738041471465,-0.00563617488648956,-0.004976400395509035,-0.0016177967562987234,-0.005392238829243313,-0.006463414989263934,-0.0036089366541188048,-0.004479783889583897,-0.006309340178189327,-0.005449041421757758,-0.00414489776040824,-0.004835314262375629,-0.007658105950089501,-0.0010864790722445784,-0.004695450686726326,-0.007795663302791548,0.0007520694971005388,-0.00431565028817163,-0.007615058815371946,-0.009318381826027936,-0.007268660060541421,-0.006770212430834129,-0.011928010499975161,-0.01080543882734026,-0.0078965023602913,-0.009419805029658656,-0.006588369835680515,-0.010676208780791188,-0.0056117557431248815,-0.005516672682168691,-0.005735675581080716,-0.006642692296093562,-0.010787830667086374,-0.0068002882741553545,-0.006095716910480615,-0.009967034171656184,-0.010263765760917979,-0.006950924165041988,-0.0047459168410108115,-0.007776433112812968,-0.012301445252542946,-0.009313656860955831,-0.009378216944989335,-0.007001013513742955,-0.010042951339245045,-0.009346720892179937,-0.012005929049429499,-0.006091131013367238
+52.339383,4.950072,-0.005351833513337763,-0.006476878505631224,-0.004570012778529941,-0.00257912318331,-0.005561134550099239,-0.004322535038345209,-0.0062249967151487605,-0.005905558360369318,-0.0015317318166610965,-0.006028340212074469,-0.004162961479239531,-0.002565991120151703,-0.0042107380414714655,-0.01503617488648956,-0.005976400395509035,-0.0004177967562987235,-0.0037922388292433128,-0.004163414989263934,-0.0030089366541188045,-0.002479783889583897,-0.003909340178189327,-0.005949041421757758,0.00015510223959176034,-0.0052353142623756295,-0.0067581059500895005,-0.0010864790722445784,-0.004395450686726326,-0.008295663302791547,-0.00624793050289946,-0.004515650288171629,-0.007615058815371946,-0.010518381826027936,-0.007468660060541422,-0.0062702124308341295,-0.00922801049997516,-0.010305438827340259,-0.006196502360291302,-0.006919805029658654,-0.005988369835680516,-0.008276208780791189,-0.004511755743124881,-0.0054166726821686904,-0.006635675581080715,-0.007442692296093563,-0.010187830667086374,-0.005600288274155355,-0.004995716910480614,-0.011667034171656184,-0.01186376576091798,-0.006250924165041987,-0.005145916841010812,-0.00927643311281297,-0.008901445252542946,-0.007713656860955831,-0.006078216944989336,-0.011601013513742955,-0.009542951339245044,-0.007046720892179937,-0.008805929049429497,-0.007291131013367239
+52.339371,4.949919,-0.004251833513337764,-0.005776878505631224,-0.008670012778529941,-0.00547912318331,-0.004161134550099239,-0.004622535038345209,-0.0075249967151487605,-0.005705558360369318,-0.0031317318166610964,-0.007628340212074469,-0.006862961479239531,-0.004265991120151703,-0.004710738041471465,-0.0036361748864895595,-0.004876400395509036,-0.0019177967562987233,-0.0069922388292433125,-0.005963414989263934,-0.004208936654118805,-0.005079783889583897,-0.006109340178189327,-0.009049041421757758,-0.007344897760408239,-0.0062353142623756295,-0.005958105950089501,-0.003286479072244579,-0.006195450686726326,-0.010195663302791548,-0.01004793050289946,-0.007515650288171629,-0.013115058815371946,-0.010418381826027936,-0.008568660060541421,-0.00847021243083413,-0.01062801049997516,-0.006605438827340259,-0.0091965023602913,-0.009519805029658655,-0.007688369835680516,-0.00877620878079119,-0.006711755743124882,-0.0071166726821686906,-0.0036356755810807153,-0.005942692296093562,-0.011887830667086374,-0.007300288274155355,-0.008295716910480614,-0.026267034171656184,-0.013263765760917982,-0.006650924165041988,-0.0060459168410108115,-0.01157643311281297,-0.007901445252542945,-0.010113656860955831,-0.008678216944989334,-0.015001013513742953,-0.009542951339245044,-0.008946720892179938,-0.009705929049429499,-0.00019113101336723807
+52.339352,4.950009,-0.0008518335133377638,-0.0015768785056312234,-0.001570012778529941,0.0006208768166899998,-0.002761134550099239,-0.0009225350383452085,-0.00222499671514876,-0.0017055583603693182,0.0005682681833389038,-0.0028283402120744695,-0.002162961479239531,0.000734008879848297,-0.0017107380414714652,-0.0025361748864895593,-0.0008764003955090352,0.0013822032437012764,-0.0013922388292433123,-0.0034634149892639335,-0.0025089366541188045,-0.002779783889583897,-0.002609340178189327,-0.003149041421757757,-0.0017448977604082399,-0.0013353142623756292,-0.003258105950089501,0.0014135209277554215,-0.0014954506867263266,-0.006195663302791548,-0.003847930502899461,-0.0011156502881716297,-0.004215058815371946,-0.004718381826027936,-0.0037686600605414213,-0.0019702124308341295,-0.004228010499975161,-0.0065054388273402585,-0.003396502360291301,-0.003219805029658654,-0.004588369835680515,-0.005276208780791189,-0.0017117557431248808,-0.0035166726821686907,-0.002835675581080715,-0.0033426922960935624,-0.006887830667086373,-0.0039002882741553547,-0.002595716910480614,-0.007167034171656184,-0.00546376576091798,-0.004150924165041987,-0.0019459168410108113,-0.00517643311281297,-0.003301445252542946,-0.007613656860955831,-0.0021782169449893352,-0.006801013513742955,-0.003642951339245045,-0.004046720892179937,-0.0022059290494294984,-0.004791131013367238
+52.339336,4.9498,-0.004251833513337764,-0.005176878505631224,-0.005470012778529941,-0.0037791231833100005,-0.0035611345500992393,-0.0028225350383452087,-0.0075249967151487605,-0.005105558360369318,-0.004631731816661096,-0.00652834021207447,-0.00536296147923953,-0.0037659911201517026,-0.0039107380414714656,-0.00663617488648956,-0.003576400395509035,-0.0007177967562987234,-0.0037922388292433128,-0.005363414989263933,-0.0040089366541188045,-0.002979783889583897,-0.004809340178189327,-0.005649041421757758,-0.00584489776040824,-0.004535314262375629,-0.006258105950089501,-0.0018864790722445787,-0.0050954506867263265,-0.011395663302791547,-0.00884793050289946,-0.0036156502881716296,-0.008415058815371947,-0.009318381826027936,-0.006368660060541422,-0.004570212430834129,-0.00942801049997516,-0.007705438827340259,-0.006396502360291301,-0.007519805029658654,-0.004788369835680516,-0.0058762087807911895,-0.004511755743124881,-0.0051166726821686905,-0.0006356755810807151,-0.007142692296093562,-0.009487830667086373,-0.006500288274155355,-0.006195716910480614,-0.015767034171656185,-0.01006376576091798,-0.0036509241650419873,-0.0047459168410108115,-0.007776433112812968,-0.004801445252542945,-0.00971365686095583,-0.006678216944989336,-0.011801013513742954,-0.009042951339245044,-0.007446720892179937,-0.008805929049429497,-0.007191131013367238
+52.339287,4.949818,-0.0016518335133377637,-0.004676878505631224,-0.001470012778529941,-0.00077912318331,-0.0025611345500992384,-0.0012225350383452086,-0.00412499671514876,-0.0025055583603693183,-0.0005317318166610961,-0.00462834021207447,-0.002362961479239531,-0.0013659911201517028,-0.002710738041471465,-0.0031361748864895595,-0.002776400395509035,-0.0007177967562987234,-0.0021922388292433125,-0.004363414989263933,-0.0018089366541188044,-0.0018797838895838969,-0.0021093401781893274,-0.005849041421757757,-0.004244897760408239,-0.003135314262375629,-0.004158105950089501,0.0008135209277554214,-0.0018954506867263268,-0.005195663302791548,-0.006747930502899461,-0.0023156502881716296,-0.006515058815371946,-0.006118381826027936,-0.003668660060541421,-0.0033702124308341293,-0.005128010499975161,-0.007405438827340258,-0.0037965023602913013,-0.004919805029658654,-0.0036883698356805156,-0.0058762087807911895,-0.002411755743124881,-0.0030166726821686906,-0.004135675581080715,-0.005542692296093562,-0.006687830667086374,-0.003700288274155355,-0.003895716910480614,-0.009267034171656184,-0.00756376576091798,-0.004350924165041988,-0.0017459168410108113,-0.003576433112812969,-0.004101445252542945,-0.005713656860955831,-0.003778216944989335,-0.006801013513742955,-0.007842951339245044,-0.0030467208921799373,-0.004805929049429498,-0.004291131013367238
+52.339249,4.949672,-0.004351833513337763,-0.0005768785056312236,-0.004070012778529941,-0.00157912318331,-0.005961134550099239,-0.0016225350383452086,-0.00762499671514876,-0.003005558360369318,-0.0031317318166610964,-0.006328340212074469,-0.0035629614792395308,-0.001765991120151703,-0.002910738041471465,-0.00663617488648956,-0.0015764003955090352,0.0007822032437012764,-0.0030922388292433127,-0.0027634149892639334,-0.0020089366541188045,0.00012021611041610278,-0.004009340178189327,-0.007849041421757757,-0.009444897760408239,-0.0022353142623756294,-0.0044581059500895005,-0.0016864790722445787,-0.0018954506867263268,-0.011395663302791547,-0.013547930502899461,-0.0036156502881716296,-0.010015058815371946,-0.009418381826027935,-0.004768660060541422,-0.00607021243083413,-0.010428010499975162,-0.008305438827340259,-0.006296502360291301,-0.009919805029658654,-0.004188369835680515,-0.006176208780791189,-0.0035117557431248807,-0.0037166726821686903,-0.0060356755810807156,-0.008542692296093562,-0.008787830667086374,-0.0036002882741553548,-0.004495716910480614,-0.010567034171656184,-0.00836376576091798,-0.0037509241650419876,-0.003245916841010812,-0.00787643311281297,-0.0058014452525429454,-0.008613656860955832,-0.006278216944989336,-0.009801013513742953,-0.007042951339245046,-0.007546720892179937,-0.010905929049429499,-0.009491131013367238
+52.339062,4.949709,0.0005481664866622362,-0.0035768785056312234,-0.0012700127785299409,-0.00027912318331000025,-0.0016611345500992388,-0.0014225350383452085,-0.00372499671514876,-0.002405558360369318,0.0008682681833389039,-0.0024283402120744693,-0.0015629614792395307,-0.0005659911201517031,-0.001910738041471465,-0.0037361748864895594,-0.0017764003955090353,0.0011822032437012763,-0.0019922388292433124,-0.0017634149892639334,-0.0016089366541188043,-0.0014797838895838971,-0.000909340178189327,-0.005349041421757758,-0.0029448977604082396,-0.0013353142623756292,-0.002958105950089501,0.0008135209277554214,-0.002595450686726327,-0.006895663302791548,-0.00934793050289946,-0.0018156502881716298,-0.0032150588153719464,-0.001918381826027936,-0.0017686600605414213,-0.0029702124308341295,-0.009628010499975161,-0.008005438827340259,-0.002396502360291301,-0.0038198050296586548,-0.0036883698356805156,-0.004476208780791189,-0.0012117557431248812,-0.0025166726821686906,0.0037643244189192846,-0.0014426922960935626,-0.0062878306670863734,-0.0025002882741553554,-0.002095716910480614,-0.005567034171656183,-0.007963765760917979,-0.0033509241650419874,-0.0020459168410108114,-0.003276433112812969,-0.006301445252542946,-0.001213656860955831,-0.003878216944989335,-0.0030010135137429547,-0.0046429513392450454,-0.004746720892179937,-0.005105929049429498,-0.0020911310133672383
+52.339006,4.949611,-0.002051833513337764,0.0026231214943687763,0.002529987221470059,0.0031208768166899998,-0.0013611345500992387,7.746496165479157e-05,-2.4996715148759984e-05,0.0003944416396306818,0.0017682681833389039,-0.0019283402120744697,0.0003370385207604692,0.001434008879848297,-0.0015107380414714651,0.00016382511351044045,0.002923599604490965,0.0029822032437012763,-0.0004922388292433125,-0.0022634149892639334,0.00029106334588119547,-0.001279783889583897,-0.0038093401781893266,-0.0026490414217577576,-4.489776040823932e-05,-0.00943531426237563,-0.002158105950089501,0.004413520927755422,-0.0005954506867263265,-0.0044956633027915475,-0.004847930502899461,-0.0010156502881716299,-0.004415058815371946,-0.004018381826027937,0.0008313399394585786,-0.0038702124308341293,-0.0037280104999751606,-0.0035054388273402584,-0.0012965023602913009,-0.010519805029658656,-0.0026883698356805156,-0.005276208780791189,0.00038824425687511893,-0.0007166726821686905,-0.002335675581080715,-0.005442692296093563,-0.004487830667086374,-0.003000288274155355,-0.0009957169104806143,-0.006167034171656184,-0.00366376576091798,-0.0021509241650419873,0.0007540831589891886,-0.0019764331128129696,-0.0007014452525429457,-0.003913656860955831,0.0004217830550106648,-0.0033010135137429546,-0.0056429513392450455,-0.0035467208921799373,-0.0032059290494294984,-0.003691131013367238
+52.338916,4.949326,-0.0021518335133377635,-0.0025768785056312234,-0.003270012778529941,-0.00107912318331,-0.0028611345500992383,-0.005422535038345208,-0.00552499671514876,-0.005405558360369318,-0.0022317318166610958,-0.0021283402120744694,-0.004162961479239531,-0.0016659911201517032,-0.003410738041471465,-0.002836174886489559,-0.003776400395509035,0.0009822032437012765,-0.0037922388292433128,-0.004863414989263934,-0.004108936654118805,-0.004679783889583897,-0.0028093401781893266,-0.0033490414217577577,-0.0002448977604082394,-0.0012353142623756294,-0.004758105950089501,-8.647907224457857e-05,-0.0028954506867263268,-0.005095663302791547,-0.004547930502899461,-0.00151565028817163,-0.004015058815371946,-0.0046183818260279366,-0.004568660060541422,0.0020297875691658706,-0.006528010499975161,-0.011505438827340259,-0.006096502360291301,-0.005619805029658654,-0.004588369835680515,-0.0037762087807911887,-0.002811755743124881,-0.0054166726821686904,-0.003035675581080715,-0.007942692296093562,-0.010287830667086374,-0.005400288274155355,-0.0034957169104806144,-0.008967034171656185,-0.010263765760917979,-0.004950924165041988,-0.0036459168410108113,-0.0034764331128129696,-0.0034014452525429452,-0.006713656860955831,-0.005078216944989336,-0.006501013513742954,-0.005742951339245046,-0.005146720892179937,-0.005505929049429498,-0.0034911310133672385
+52.338879,4.949207,-0.005051833513337763,0.005223121494368776,-0.004670012778529941,-0.0034791231833099998,-0.006561134550099239,-0.0032225350383452084,-0.00812499671514876,-0.003105558360369318,-0.0018317318166610965,-0.007328340212074469,-0.003262961479239531,-0.002665991120151703,-0.005110738041471465,-0.006436174886489559,-0.004676400395509035,-0.0005177967562987236,-0.005092238829243313,-0.002963414989263933,-0.0021089366541188043,-0.002979783889583897,-0.004009340178189327,-0.0075490414217577574,-0.003444897760408239,-0.0010353142623756293,-0.004858105950089501,-0.0006864790722445786,-0.0040954506867263265,-0.007195663302791548,-0.00794793050289946,-0.00371565028817163,-0.007515058815371946,-0.008918381826027937,-0.006268660060541421,-0.00707021243083413,-0.01002801049997516,-0.008805438827340258,-0.0074965023602913015,-0.007219805029658654,-0.005188369835680515,-0.009576208780791188,-0.005211755743124881,-0.004216672682168691,-0.0056356755810807145,-0.009642692296093562,-0.009687830667086374,-0.004800288274155355,-0.005295716910480614,-0.011767034171656183,-0.00916376576091798,-0.005450924165041988,-0.0037459168410108115,-0.005676433112812969,-0.007701445252542946,-0.00821365686095583,-0.006278216944989336,-0.006301013513742955,-0.008642951339245045,-0.008746720892179937,-0.006105929049429498,-0.006991131013367239
+52.33896,4.948429,-0.003351833513337763,-0.004876878505631224,-0.004670012778529941,-0.0027791231833100005,-0.004561134550099239,-0.005022535038345209,-0.00552499671514876,-0.004605558360369318,-0.002031731816661096,-0.00492834021207447,-0.005162961479239531,-0.002665991120151703,-0.005510738041471465,-0.005136174886489559,-0.005276400395509036,-0.0038177967562987233,-0.005392238829243313,-0.0057634149892639335,-0.004808936654118805,-0.004379783889583897,-0.004409340178189327,-0.005849041421757757,-0.00374489776040824,-0.00633531426237563,-0.005958105950089501,-0.0016864790722445787,-0.004995450686726326,-0.006695663302791547,-0.006647930502899461,-0.00461565028817163,-0.005815058815371946,-0.007418381826027937,-0.005068660060541422,-0.0049702124308341296,-0.00672801049997516,-0.007805438827340258,-0.006796502360291301,-0.007219805029658654,-0.006588369835680515,-0.008276208780791189,-0.0056117557431248815,-0.0054166726821686904,-0.005435675581080715,-0.006742692296093563,-0.009487830667086373,-0.007400288274155355,-0.006895716910480614,-0.011167034171656183,-0.012163765760917981,-0.008950924165041988,-0.008545916841010812,-0.009676433112812969,-0.009301445252542945,-0.011513656860955832,-0.009578216944989334,-0.011301013513742953,-0.008242951339245045,-0.007546720892179937,-0.009005929049429498,-0.005391131013367238
+52.338799,4.94873,-0.0002518335133377637,-0.0009768785056312236,-0.001070012778529941,-0.0003791231833100001,-0.0015611345500992386,-0.0017225350383452084,-0.0026249967151487598,-0.0017055583603693182,0.0011682681833389038,-0.0013283402120744697,-0.0018629614792395307,0.000634008879848297,-0.0013107380414714652,0.0008638251135104406,-0.0005764003955090352,0.0010822032437012765,-9.223882924331238e-05,-0.00016341498926393348,0.0015910633458811954,0.0008202161104161028,0.000490659821810673,-0.0024490414217577575,0.0030551022395917606,-0.0015353142623756293,-0.002158105950089501,0.0019135209277554215,-0.0010954506867263264,-0.002195663302791548,-0.001847930502899461,-0.0009156502881716296,-0.0020150588153719463,-0.003618381826027936,-0.0006686600605414213,-0.0023702124308341292,-0.00462801049997516,-0.006905438827340259,-0.004596502360291301,-0.0034198050296586546,-0.0029883698356805155,-0.0016762087807911886,-0.001611755743124881,-0.0028166726821686906,6.432441891928483e-05,-0.0034426922960935627,-0.005187830667086374,-0.002200288274155355,-0.0026957169104806144,-0.004567034171656184,-0.00526376576091798,-0.0017509241650419875,-4.591684101081135e-05,-0.0009764331128129695,-0.00030144525254294577,-0.001613656860955831,-0.003578216944989335,-0.0026010135137429545,-0.0019429513392450453,-0.001946720892179937,-0.0035059290494294988,0.00030886898663276194
+52.338786,4.948746,-0.004251833513337764,-0.005576878505631224,-0.004070012778529941,-0.0037791231833100005,-0.007061134550099239,-0.005722535038345209,-0.00552499671514876,-0.006105558360369318,-0.002331731816661096,-0.005328340212074469,-0.005562961479239531,-0.0031659911201517028,-0.0065107380414714654,-0.0031361748864895595,-0.002476400395509035,-0.0012177967562987235,-0.006492238829243313,-0.004163414989263934,-0.0017089366541188046,-0.001579783889583897,-0.0028093401781893266,-0.004749041421757757,-0.0002448977604082394,-0.003735314262375629,-0.003458105950089501,-0.0003864790722445787,-0.0035954506867263264,-0.005795663302791547,-0.006047930502899461,-0.00441565028817163,-0.0060150588153719455,-0.007618381826027936,-0.005068660060541422,-0.005570212430834129,-0.00672801049997516,-0.009405438827340257,-0.006796502360291301,-0.007619805029658654,-0.0062883698356805155,-0.007076208780791189,-0.005911755743124881,-0.0054166726821686904,-0.003935675581080715,-0.004942692296093562,-0.007987830667086374,-0.004300288274155355,-0.004595716910480614,-0.009367034171656184,-0.00846376576091798,-0.004350924165041988,-0.002945916841010812,-0.007076433112812969,-0.004701445252542945,-0.007013656860955831,-0.0065782169449893355,-0.006801013513742955,-0.006142951339245046,-0.006546720892179937,-0.007805929049429498,-0.004891131013367239
+52.338842,4.948074,-0.002951833513337764,-0.0070768785056312235,-0.006170012778529941,-0.00707912318331,-0.006361134550099239,-0.006122535038345208,-0.00872499671514876,-0.011505558360369319,-0.005131731816661097,-0.00792834021207447,-0.010762961479239531,-0.008665991120151702,-0.011010738041471466,-0.012636174886489559,-0.009576400395509036,-0.009817796756298723,-0.007992238829243312,-0.012863414989263933,-0.009908936654118804,-0.011879783889583898,-0.008909340178189328,-0.006349041421757758,-0.007244897760408238,-0.01013531426237563,-0.0125581059500895,-0.004586479072244579,-0.008795450686726327,-0.011695663302791547,-0.012747930502899461,-0.00951565028817163,-0.008415058815371947,-0.013118381826027935,-0.010068660060541421,-0.007170212430834129,-0.011628010499975161,-0.01140543882734026,-0.0110965023602913,-0.016119805029658655,-0.013088369835680515,-0.009976208780791189,-0.01191175574312488,-0.012916672682168692,-0.010235675581080716,-0.010242692296093562,-0.012487830667086374,-0.012400288274155355,-0.010295716910480614,-0.015067034171656184,-0.01796376576091798,-0.013650924165041987,-0.009445916841010812,-0.01067643311281297,-0.008101445252542945,-0.01051365686095583,-0.011278216944989334,-0.011201013513742954,-0.013242951339245045,-0.009246720892179938,-0.011505929049429498,-0.010191131013367239
+52.338736,4.948715,-0.0018518335133377638,-0.004176878505631224,-0.003170012778529941,-0.00157912318331,-0.004461134550099239,-0.0018225350383452086,-0.00422499671514876,-0.0022055583603693184,-0.0005317318166610961,-0.00432834021207447,-0.0017629614792395308,-0.0005659911201517031,-0.0010107380414714651,-0.0015361748864895595,-0.0009764003955090352,0.00028220324370127647,-0.0007922388292433125,-0.0009634149892639335,9.106334588119544e-05,-0.0004797838895838972,-0.0013093401781893272,-0.0039490414217577575,-0.00014489776040823958,-0.0019353142623756295,-0.002258105950089501,0.0005135209277554215,-0.0012954506867263265,-0.0041956633027915476,-0.005347930502899461,-0.00211565028817163,-0.005515058815371946,-0.006118381826027936,-0.004568660060541422,-0.0037702124308341294,-0.00582801049997516,-0.006605438827340259,-0.004096502360291301,-0.0037198050296586545,-0.0032883698356805154,-0.005376208780791189,-0.002411755743124881,-0.0027166726821686903,-0.004135675581080715,-0.0050426922960935625,-0.0059878306670863735,-0.003300288274155355,-0.0029957169104806143,-0.006567034171656183,-0.00726376576091798,-0.0022509241650419875,-0.0011459168410108114,-0.0033764331128129693,-0.0028014452525429454,-0.0065136568609558305,-0.0052782169449893356,-0.006301013513742955,-0.007142951339245046,-0.005846720892179937,-0.007505929049429498,-0.0033911310133672382
+52.338739,4.948634,-0.002351833513337764,-0.004476878505631224,-0.0037700127785299407,-0.00297912318331,-0.004361134550099239,-0.004022535038345209,-0.00552499671514876,-0.005005558360369318,-0.0009317318166610963,-0.00522834021207447,-0.00406296147923953,-0.0005659911201517031,-0.003710738041471465,-0.0025361748864895593,-0.002776400395509035,-0.0013177967562987235,-0.0027922388292433123,-0.0031634149892639336,-0.0019089366541188042,-0.0013797838895838973,-0.0025093401781893267,-0.004549041421757757,-0.0011448977604082396,-0.004835314262375629,-0.004958105950089501,-0.0003864790722445787,-0.0038954506867263264,-0.005895663302791548,-0.005547930502899461,-0.004215650288171629,-0.004815058815371946,-0.006818381826027935,-0.003368660060541421,-0.0035702124308341293,-0.007128010499975161,-0.008305438827340259,-0.006596502360291301,-0.007619805029658654,-0.005588369835680515,-0.006676208780791188,-0.005211755743124881,-0.00501667268216869,-0.005435675581080715,-0.0053426922960935624,-0.0062878306670863734,-0.004700288274155355,-0.004495716910480614,-0.007967034171656184,-0.00916376576091798,-0.004650924165041988,-0.003245916841010812,-0.0052764331128129695,-0.005901445252542946,-0.005913656860955831,-0.005178216944989335,-0.007101013513742955,-0.009442951339245045,-0.007446720892179937,-0.008505929049429498,-0.006291131013367238
+52.33881,4.947988,-0.007251833513337763,-0.005476878505631224,-0.004170012778529941,-0.00487912318331,-0.006361134550099239,-0.006422535038345208,-0.00742499671514876,-0.005305558360369318,-0.0028317318166610965,-0.0061283402120744694,-0.00666296147923953,-0.004465991120151703,-0.006110738041471465,-0.0069361748864895595,-0.0071764003955090356,-0.004917796756298724,-0.005892238829243312,-0.006363414989263933,-0.004608936654118805,-0.0065797838895838975,-0.007009340178189326,-0.007149041421757757,-0.0036448977604082397,-0.0075353142623756295,-0.0077581059500895005,-0.005386479072244578,-0.007895450686726327,-0.010695663302791548,-0.010647930502899462,-0.00801565028817163,-0.006615058815371946,-0.011118381826027935,-0.00896866006054142,-0.00817021243083413,-0.008828010499975161,-0.011005438827340258,-0.0107965023602913,-0.010919805029658655,-0.010588369835680516,-0.011676208780791189,-0.01001175574312488,-0.013316672682168691,-0.009435675581080716,-0.009042692296093563,-0.011687830667086374,-0.010500288274155355,-0.008895716910480614,-0.010667034171656183,-0.01456376576091798,-0.009450924165041986,-0.007745916841010812,-0.00957643311281297,-0.0068014452525429455,-0.01001365686095583,-0.010278216944989335,-0.010301013513742954,-0.011542951339245044,-0.012346720892179938,-0.0164059290494295,-0.009291131013367239
+52.338739,4.948551,-0.003651833513337764,-0.006676878505631224,-0.007870012778529941,-0.00297912318331,-0.004161134550099239,-0.004322535038345209,-0.00742499671514876,-0.006205558360369318,-0.0025317318166610966,-0.005728340212074469,-0.00566296147923953,-0.003265991120151703,-0.0072107380414714655,-0.00473617488648956,-0.003776400395509035,-0.0045177967562987234,-0.004592238829243312,-0.007863414989263934,-0.004508936654118805,-0.0055797838895838975,-0.005709340178189327,-0.0062490414217577575,-0.00374489776040824,-0.004535314262375629,-0.006258105950089501,-0.0027864790722445785,-0.006495450686726327,-0.007095663302791547,-0.007047930502899461,-0.00431565028817163,-0.006115058815371946,-0.010518381826027936,-0.006068660060541422,-0.00467021243083413,-0.008228010499975161,-0.008805438827340258,-0.007796502360291301,-0.0070198050296586545,-0.006888369835680515,-0.008076208780791188,-0.005511755743124881,-0.0031166726821686905,-0.006635675581080715,-0.004742692296093563,-0.007187830667086373,-0.005600288274155355,-0.006895716910480614,-0.010867034171656183,-0.01056376576091798,-0.008250924165041987,-0.004545916841010812,-0.008376433112812968,-0.007401445252542946,-0.008113656860955831,-0.007178216944989335,-0.007701013513742955,-0.013042951339245044,-0.012046720892179938,-0.009905929049429498,-0.005591131013367238
+52.338756,4.947869,-0.004951833513337764,-0.007576878505631224,-0.004870012778529941,-0.00437912318331,-0.008161134550099237,-0.008822535038345208,-0.00702499671514876,-0.005905558360369318,-0.007431731816661097,-0.00722834021207447,-0.005862961479239531,-0.004965991120151703,-0.006710738041471465,-0.0006361748864895595,-0.007376400395509035,-0.0032177967562987235,-0.003992238829243312,-0.007063414989263933,-0.005508936654118805,-0.004979783889583897,-0.004509340178189327,-0.010549041421757758,-0.005044897760408239,-0.00743531426237563,-0.007258105950089501,-0.002586479072244579,-0.006495450686726327,-0.009295663302791548,-0.015647930502899463,-0.007015650288171629,-0.008815058815371946,-0.009918381826027936,-0.00906866006054142,-0.007770212430834129,-0.00732801049997516,-0.01350543882734026,-0.0096965023602913,-0.010819805029658656,-0.011588369835680516,-0.014276208780791189,-0.00821175574312488,-0.00731667268216869,-0.002735675581080715,-0.010042692296093562,-0.011687830667086374,-0.007600288274155355,-0.009595716910480613,-0.014467034171656184,-0.014263765760917979,-0.008850924165041987,-0.006145916841010812,-0.011376433112812969,-0.008801445252542945,-0.012613656860955832,-0.011678216944989335,-0.015401013513742953,-0.016042951339245045,-0.012346720892179938,-0.010605929049429499,-0.007491131013367238
+52.338681,4.948394,-0.0010518335133377639,-0.0028768785056312233,-0.0016700127785299408,-0.0008791231833100003,-0.002161134550099239,-2.253503834520848e-05,-0.00432499671514876,-0.0009055583603693183,0.0005682681833389038,-0.0038283402120744695,-0.002862961479239531,-0.000865991120151703,-0.002810738041471465,-0.0031361748864895595,-0.0009764003955090352,-0.0012177967562987235,-0.0008922388292433124,-0.002663414989263933,-0.0013089366541188044,-0.0011797838895838972,-0.0013093401781893272,-0.0009490414217577575,0.0016551022395917604,-0.002635314262375629,-0.003258105950089501,0.00011352092775542152,-0.0029954506867263266,-0.003095663302791548,-0.0012479305028994612,-0.00151565028817163,-0.0007150588153719464,-0.0029183818260279364,-0.0008686600605414214,0.0008297875691658705,-0.0029280104999751602,-0.004105438827340258,-0.001096502360291301,-0.0020198050296586544,-0.0019883698356805155,-0.005476208780791188,-0.000511755743124881,-0.0025166726821686906,-0.001535675581080715,-0.0021426922960935627,-0.0049878306670863735,-0.0035002882741553554,-0.0027957169104806143,-0.003867034171656184,-0.00706376576091798,-0.003550924165041987,-0.0013459168410108115,-0.0009764331128129695,-0.0021014452525429453,-0.003213656860955831,-0.003278216944989335,-0.0035010135137429547,-0.003942951339245045,-0.002246720892179937,-0.004105929049429498,-0.001591131013367238
+52.33866,4.948367,-0.0021518335133377635,-0.0034768785056312236,-0.003870012778529941,-0.0021791231833100002,-0.004861134550099239,-0.0028225350383452087,-0.00422499671514876,-0.0029055583603693185,-0.002331731816661096,-0.004428340212074469,-0.003462961479239531,-0.002465991120151703,-0.004310738041471466,-0.0059361748864895595,-0.002976400395509035,-0.0017177967562987237,-0.003992238829243312,-0.003263414989263934,-0.0033089366541188044,-0.003279783889583897,-0.004309340178189327,-0.0035490414217577574,-0.0006448977604082396,-0.004535314262375629,-0.003658105950089501,-8.647907224457857e-05,-0.0040954506867263265,-0.005195663302791548,-0.005147930502899461,-0.0018156502881716298,-0.004715058815371946,-0.0069183818260279365,-0.004368660060541422,-0.0034702124308341295,-0.006528010499975161,-0.0075054388273402585,-0.005996502360291301,-0.005419805029658654,-0.004888369835680515,-0.007676208780791189,-0.003111755743124881,-0.004216672682168691,-0.004935675581080715,-0.004842692296093563,-0.006987830667086374,-0.005900288274155355,-0.004495716910480614,-0.009267034171656184,-0.00906376576091798,-0.005150924165041988,-0.004545916841010812,-0.0071764331128129685,-0.007001445252542945,-0.007713656860955831,-0.006178216944989335,-0.008101013513742953,-0.007142951339245046,-0.005746720892179937,-0.008205929049429498,-0.005391131013367238
+52.338623,4.948252,-0.0010518335133377639,-0.0031768785056312233,-0.001770012778529941,-0.0001791231833100002,-0.00026113455009923873,-0.0021225350383452086,-0.00242499671514876,-0.001805558360369318,0.004168268183338904,-0.0024283402120744693,-0.00496296147923953,-0.0011659911201517032,-0.003410738041471465,-0.0038361748864895596,-0.005676400395509035,-0.0018177967562987235,-0.005192238829243313,-0.0047634149892639335,-0.005108936654118805,-0.006279783889583897,-0.0051093401781893266,-0.004849041421757757,-0.00274489776040824,-0.0009353142623756294,-0.005058105950089501,0.0007135209277554214,-0.0038954506867263264,-0.004795663302791547,-0.005047930502899461,-0.0004156502881716296,-0.0007150588153719464,-0.003118381826027936,-0.0005686600605414215,-0.0004702124308341295,-0.0021280104999751607,-0.004805438827340259,-0.0022965023602913013,-0.0017198050296586545,-0.00018836983568051554,-0.0006762087807911886,-0.004111755743124881,-0.003916672682168691,-0.001935675581080715,-0.011142692296093562,-0.009187830667086373,-0.004900288274155355,-0.0015957169104806144,-0.006967034171656184,-0.00726376576091798,-0.0003509241650419875,0.0010540831589891885,-0.0036764331128129693,-0.0008014452525429458,-0.005213656860955831,-0.0036782169449893353,-0.002401013513742955,-0.0027429513392450452,-0.004146720892179937,-0.0033059290494294987,-0.0014911310133672382
+52.338633,4.948105,-0.0027518335133377633,-0.004376878505631224,-0.002670012778529941,-0.0001791231833100002,-0.0028611345500992383,-0.0015225350383452085,-0.00552499671514876,-0.0025055583603693183,-0.0011317318166610964,-0.0048283402120744695,-0.002662961479239531,-0.001765991120151703,-0.003010738041471465,-0.00433617488648956,-0.0011764003955090352,-0.0016177967562987234,-0.0025922388292433122,-0.002963414989263933,-0.0010089366541188045,-0.001279783889583897,-0.0008093401781893272,-0.006749041421757758,-0.0009448977604082395,-0.004135314262375629,-0.003358105950089501,0.0028135209277554214,-0.0023954506867263268,-0.004995663302791548,-0.007847930502899461,-0.00271565028817163,-0.0050150588153719455,-0.007618381826027936,-0.0031686600605414215,-0.0031702124308341296,-0.0014280104999751604,-0.006705438827340259,-0.0035965023602913013,-0.0033198050296586543,-0.004388369835680516,-0.007676208780791189,-0.0015117557431248811,-0.0028166726821686906,-0.004435675581080715,-0.006142692296093562,-0.006787830667086374,-0.003100288274155355,-0.002595716910480614,-0.008567034171656183,-0.00806376576091798,-0.0033509241650419874,0.0010540831589891885,-0.005676433112812969,-0.0038014452525429454,-0.0055136568609558305,-0.0036782169449893353,-0.006401013513742955,-0.006142951339245046,-0.006046720892179937,-0.007605929049429498,-0.0033911310133672382
+52.338685,4.947564,-0.004851833513337764,-0.008576878505631224,-0.006770012778529941,-0.00557912318331,-0.006061134550099239,-0.009022535038345209,-0.00702499671514876,-0.005405558360369318,-0.004831731816661097,-0.01052834021207447,-0.007562961479239531,-0.007165991120151704,-0.008710738041471466,-0.006436174886489559,-0.012076400395509036,-0.010517796756298723,-0.010592238829243312,-0.010163414989263932,-0.009108936654118804,-0.008079783889583898,-0.008609340178189328,-0.011549041421757758,-0.0067448977604082395,-0.00743531426237563,-0.0102581059500895,-0.005386479072244578,-0.007695450686726326,-0.007895663302791548,-0.008347930502899462,-0.009015650288171629,-0.009415058815371946,-0.013418381826027935,-0.01016866006054142,-0.008970212430834129,-0.010228010499975161,-0.012605438827340259,-0.0121965023602913,-0.010619805029658655,-0.010888369835680516,-0.012176208780791188,-0.00931175574312488,-0.011616672682168691,-0.012335675581080716,-0.011642692296093562,-0.012987830667086373,-0.012500288274155355,-0.010495716910480615,-0.015467034171656183,-0.01736376576091798,-0.006350924165041988,-0.009045916841010812,-0.01017643311281297,-0.010101445252542945,-0.013913656860955831,-0.008878216944989335,-0.008501013513742954,-0.008042951339245045,-0.011046720892179937,-0.013005929049429498,-0.008291131013367238
+52.338676,4.947556,-0.0044518335133377634,-0.007476878505631224,-0.006570012778529941,-0.005779123183310001,-0.0062611345500992385,-0.007922535038345209,-0.006924996715148761,-0.004705558360369318,-0.0039317318166610955,-0.00872834021207447,-0.007262961479239531,-0.006165991120151703,-0.008310738041471465,-0.005836174886489559,-0.010076400395509036,-0.010117796756298723,-0.009292238829243312,-0.008863414989263933,-0.008608936654118805,-0.008179783889583897,-0.008109340178189327,-0.011349041421757758,-0.0067448977604082395,-0.0075353142623756295,-0.010058105950089501,-0.004686479072244579,-0.006695450686726326,-0.007995663302791547,-0.007847930502899461,-0.008715650288171629,-0.008915058815371945,-0.012218381826027936,-0.00926866006054142,-0.00887021243083413,-0.00922801049997516,-0.011605438827340258,-0.012596502360291301,-0.010019805029658655,-0.010088369835680516,-0.011976208780791189,-0.00891175574312488,-0.01141667268216869,-0.012735675581080715,-0.011542692296093563,-0.012687830667086373,-0.012200288274155355,-0.011195716910480614,-0.013467034171656183,-0.01686376576091798,-0.004650924165041988,-0.007845916841010811,-0.009976433112812969,-0.009301445252542945,-0.014413656860955831,-0.0075782169449893355,-0.007001013513742955,-0.006342951339245046,-0.011546720892179937,-0.012705929049429498,-0.008591131013367238
+52.338558,4.948075,4.816648666223621e-05,-0.0021768785056312237,2.998722147005907e-05,0.0008208768166899998,-0.0010611345500992388,-0.0006225350383452085,-0.00252499671514876,-0.0014055583603693183,0.002068268183338904,-0.0013283402120744697,-0.0010629614792395307,0.000134008879848297,-0.00041073804147146516,-0.0021361748864895595,-0.00017640039550903517,0.0011822032437012763,-0.0003922388292433124,-0.0003634149892639335,-0.0013089366541188044,0.0003202161104161028,-0.0006093401781893271,-0.0035490414217577574,0.0007551022395917604,-0.0017353142623756294,-0.001558105950089501,0.0017135209277554214,-0.0008954506867263266,-0.004395663302791547,-0.0034479305028994613,-0.0007156502881716295,-0.0033150588153719462,-0.002418381826027936,-0.002368660060541421,-0.0004702124308341295,-0.0027280104999751606,-0.0055054388273402585,-0.001996502360291301,-0.004119805029658655,-0.0016883698356805156,-0.004576208780791189,-0.0012117557431248812,-0.0007166726821686905,-0.001835675581080715,-0.0015426922960935627,-0.0049878306670863735,-0.002700288274155355,-0.0013957169104806143,-0.007767034171656184,-0.00516376576091798,-0.0011509241650419872,-4.591684101081135e-05,-0.002976433112812969,-0.002701445252542946,-0.004913656860955831,-0.002778216944989335,-0.005001013513742955,-0.0032429513392450452,-0.002146720892179937,-0.003905929049429499,-0.000891131013367238
+52.338499,4.947611,-0.003951833513337764,-0.007576878505631224,-0.003570012778529941,-0.006579123183310001,-0.00766113455009924,-0.006922535038345209,-0.00772499671514876,-0.006505558360369318,-0.0037317318166610962,-0.00722834021207447,-0.00596296147923953,-0.0033659911201517033,-0.004910738041471466,-0.005236174886489559,-0.0054764003955090354,-0.003917796756298724,-0.006792238829243313,-0.004963414989263934,-0.006908936654118805,-0.004979783889583897,-0.003609340178189327,-0.0072490414217577575,-0.004844897760408239,-0.006135314262375629,-0.0081581059500895,-0.0015864790722445784,-0.0031954506867263267,-0.008795663302791547,-0.006647930502899461,-0.0049156502881716295,-0.008715058815371947,-0.009518381826027936,-0.007568660060541421,-0.00567021243083413,-0.008228010499975161,-0.012805438827340258,-0.007596502360291301,-0.006919805029658654,-0.006588369835680515,-0.009876208780791188,-0.005811755743124881,-0.006816672682168691,-0.005135675581080715,-0.007842692296093563,-0.011587830667086374,-0.007700288274155355,-0.007995716910480614,-0.007167034171656184,-0.01066376576091798,-0.004550924165041987,-0.005845916841010812,-0.008276433112812969,-0.004701445252542945,-0.011513656860955832,-0.010278216944989335,-0.008901013513742954,-0.010442951339245044,-0.010346720892179938,-0.010105929049429498,-0.009091131013367238
+52.338474,4.947547,-0.0032518335133377638,-0.007376878505631224,-0.004170012778529941,-0.00227912318331,-0.0025611345500992384,-0.0030225350383452083,-0.00532499671514876,-0.003105558360369318,-0.002931731816661096,-0.004028340212074469,-0.002962961479239531,-0.001265991120151703,-0.003310738041471465,-0.004836174886489559,-0.001376400395509035,-0.0017177967562987237,-0.0036922388292433125,-0.0021634149892639336,-0.0011089366541188047,-0.002079783889583897,-0.0007093401781893269,-0.005449041421757758,-0.0022448977604082395,-0.002635314262375629,-0.004858105950089501,0.0026135209277554214,-0.0036954506867263267,-0.0067956633027915474,-0.007447930502899461,-0.0020156502881716297,-0.006615058815371946,-0.005718381826027937,-0.0046686600605414215,-0.004470212430834129,-0.008228010499975161,-0.008405438827340258,-0.0051965023602913015,-0.0057198050296586546,-0.004588369835680515,-0.008076208780791188,-0.002011755743124881,-0.0051166726821686905,-0.006835675581080714,-0.005742692296093563,-0.0062878306670863734,-0.005100288274155355,-0.002595716910480614,-0.014467034171656184,-0.009363765760917981,-0.0022509241650419875,-0.0024459168410108116,-0.007376433112812969,-0.0009014452525429456,-0.008013656860955832,-0.004778216944989335,-0.009001013513742953,-0.006742951339245046,-0.007046720892179937,-0.008805929049429497,-0.005691131013367238
+52.338373,4.947132,-0.0051518335133377635,-0.008076878505631224,-0.004170012778529941,-0.0040791231833100005,-0.006661134550099239,-0.005622535038345209,-0.0065249967151487604,-0.004905558360369318,-0.007831731816661096,-0.00842834021207447,-0.006262961479239531,-0.002365991120151703,-0.004710738041471465,-0.006436174886489559,-0.006976400395509035,-0.0045177967562987234,-0.005192238829243313,-0.004363414989263933,-0.0034089366541188043,-0.002579783889583897,-0.002909340178189327,-0.010849041421757757,-0.005444897760408239,-0.005535314262375629,-0.005558105950089501,-0.0021864790722445787,-0.004495450686726327,-0.010495663302791548,-0.01104793050289946,-0.00341565028817163,-0.009615058815371946,-0.007018381826027936,-0.004268660060541421,-0.005170212430834129,-0.01182801049997516,-0.010505438827340258,-0.007596502360291301,-0.007219805029658654,-0.005788369835680516,-0.010376208780791188,-0.005211755743124881,-0.00471667268216869,-0.005835675581080715,-0.008342692296093563,-0.006787830667086374,-0.0058002882741553545,-0.0056957169104806145,-0.014167034171656184,-0.01016376576091798,-0.0055509241650419875,-0.0026459168410108112,-0.008276433112812969,-0.007901445252542945,-0.00971365686095583,-0.008678216944989334,-0.012701013513742953,-0.009142951339245045,-0.007946720892179937,-0.010105929049429498,-0.011091131013367238
+52.338293,4.947097,0.002148166486662236,-0.0010768785056312236,-0.002770012778529941,-0.00457912318331,-0.002061134550099239,-0.0035225350383452083,-0.0026249967151487598,-0.0019055583603693183,-0.0011317318166610964,-0.006028340212074469,-0.005562961479239531,-0.006965991120151703,-0.004710738041471465,-0.006436174886489559,-0.006676400395509035,-0.006817796756298723,-0.008292238829243312,-0.004863414989263934,-0.005508936654118805,-0.003779783889583897,-0.002309340178189327,-0.005849041421757757,-0.00014489776040823958,-0.004435314262375629,-0.007258105950089501,-0.0023864790722445783,-0.0028954506867263268,-0.004995663302791548,-0.008647930502899462,-0.00271565028817163,-0.005515058815371946,-0.005118381826027936,-0.006568660060541422,-0.005470212430834129,-0.004828010499975161,-0.006805438827340258,-0.006296502360291301,-0.0030198050296586544,-0.008788369835680515,-0.010076208780791188,-0.0043117557431248815,-0.00671667268216869,-0.003835675581080715,-0.006542692296093562,-0.009387830667086374,-0.004900288274155355,-0.005795716910480614,-0.010767034171656184,-0.00836376576091798,-0.004850924165041988,-0.002945916841010812,-0.00407643311281297,-0.0036014452525429458,-0.005413656860955831,-0.003878216944989335,-0.0049010135137429545,-0.0016429513392450454,-0.0025467208921799373,-0.0015059290494294985,0.000608868986632762
+52.33831,4.9469,-0.003951833513337764,-0.007776878505631224,-0.004470012778529941,-0.0023791231833100003,-0.0036611345500992386,-0.0036225350383452086,-0.00392499671514876,-0.003405558360369318,-0.001031731816661096,-0.00522834021207447,-0.003862961479239531,-0.000365991120151703,-0.003210738041471465,-0.0046361748864895596,-0.006676400395509035,-0.0029177967562987236,-0.003892238829243312,-0.0024634149892639335,-0.0023089366541188044,-0.002479783889583897,-0.0025093401781893267,-0.0072490414217577575,-0.0015448977604082394,-0.004535314262375629,-0.004758105950089501,-0.0007864790722445785,-0.0029954506867263266,-0.009895663302791548,-0.0069479305028994605,-0.00471565028817163,-0.006715058815371946,-0.0069183818260279365,-0.005468660060541422,-0.0038702124308341293,-0.009028010499975161,-0.008305438827340259,-0.005896502360291301,-0.007419805029658654,-0.0042883698356805154,-0.010776208780791188,-0.0035117557431248807,-0.0030166726821686906,-0.008435675581080715,-0.008242692296093562,-0.007887830667086374,-0.008300288274155356,-0.005595716910480614,-0.011167034171656183,-0.00946376576091798,-0.005350924165041987,-0.0036459168410108113,-0.009976433112812969,-0.006601445252542946,-0.007313656860955831,-0.0065782169449893355,-0.006701013513742955,-0.008742951339245044,-0.007846720892179937,-0.008705929049429498,-0.0037911310133672384
+52.338284,4.946248,-0.0031518335133377635,-0.004176878505631224,-0.005270012778529941,-0.00487912318331,-0.004961134550099239,-0.0032225350383452084,-0.00402499671514876,-0.004205558360369318,-0.0015317318166610965,-0.005028340212074469,-0.005862961479239531,-0.0030659911201517034,-0.004710738041471465,-0.005836174886489559,-0.005976400395509035,-0.0045177967562987234,-0.005292238829243312,-0.004163414989263934,-0.004208936654118805,-0.003479783889583897,-0.0035093401781893267,-0.007149041421757757,-0.0022448977604082395,-0.00633531426237563,-0.006658105950089501,-0.0026864790722445782,-0.004495450686726327,-0.010295663302791547,-0.005747930502899461,-0.004215650288171629,-0.004515058815371946,-0.007918381826027936,-0.006468660060541422,-0.005170212430834129,-0.008528010499975161,-0.008705438827340258,-0.0064965023602913015,-0.007819805029658655,-0.007588369835680515,-0.00907620878079119,-0.005911755743124881,-0.008016672682168692,-0.006735675581080715,-0.009042692296093563,-0.008187830667086374,-0.0068002882741553545,-0.007195716910480614,-0.008967034171656185,-0.01076376576091798,-0.006350924165041988,-0.005645916841010811,-0.0068764331128129685,-0.007701445252542946,-0.009213656860955832,-0.012678216944989334,-0.007501013513742954,-0.006842951339245045,-0.007146720892179937,-0.008405929049429498,-0.006091131013367238
+52.338236,4.945889,-0.005751833513337763,-0.007876878505631223,-0.004570012778529941,-0.00617912318331,-0.007161134550099239,-0.006822535038345208,-0.01112499671514876,-0.006705558360369318,-0.004031731816661097,-0.009228340212074469,-0.00596296147923953,-0.009865991120151702,-0.0062107380414714655,-0.015636174886489558,-0.005576400395509036,-0.005817796756298723,-0.003992238829243312,-0.005263414989263934,-0.0024089366541188042,-0.002979783889583897,-0.004009340178189327,-0.010049041421757757,-0.008044897760408239,-0.00713531426237563,-0.007258105950089501,-0.0011864790722445786,-0.007895450686726327,-0.008995663302791548,-0.006747930502899461,-0.00891565028817163,-0.012515058815371946,-0.013118381826027935,-0.010568660060541421,-0.006170212430834129,-0.01202801049997516,-0.015005438827340258,-0.0115965023602913,-0.010319805029658655,-0.007588369835680515,-0.011976208780791189,-0.008411755743124881,-0.008016672682168692,-0.011535675581080715,-0.013142692296093562,-0.008787830667086374,-0.008000288274155356,-0.017695716910480615,-0.010167034171656184,-0.014863765760917979,-0.008750924165041987,-0.0067459168410108124,-0.00727643311281297,-0.010701445252542945,-0.009613656860955831,-0.009278216944989334,-0.017701013513742953,-0.010642951339245045,-0.009746720892179938,-0.009505929049429498,-0.009891131013367239
+52.338091,4.946313,-0.004951833513337764,-0.0070768785056312235,-0.002670012778529941,-0.00397912318331,-0.006661134550099239,-0.007322535038345209,-0.00632499671514876,-0.004405558360369318,-0.0024317318166610963,-0.00492834021207447,-0.004162961479239531,0.000534008879848297,-0.004710738041471465,-0.0027361748864895598,-0.002776400395509035,-0.0009177967562987235,-0.0030922388292433127,-0.003963414989263933,-0.005208936654118805,-0.005879783889583897,-0.002009340178189327,-0.006749041421757758,-0.0004448977604082395,-0.004835314262375629,-0.004158105950089501,-0.0017864790722445785,-0.004395450686726326,-0.007195663302791548,-0.0072479305028994604,-0.00441565028817163,-0.006315058815371946,-0.010218381826027936,-0.005168660060541422,-0.00507021243083413,-0.007428010499975161,-0.008805438827340258,-0.0080965023602913,-0.010419805029658655,-0.006488369835680515,-0.00847620878079119,-0.006411755743124882,-0.004216672682168691,-0.005335675581080715,-0.008542692296093562,-0.004287830667086373,-0.002900288274155355,-0.0012957169104806142,-0.009367034171656184,-0.00776376576091798,-0.004950924165041988,-0.0031459168410108117,-0.007076433112812969,-0.006001445252542945,-0.006913656860955831,-0.007378216944989336,-0.008901013513742954,-0.006442951339245046,-0.0069467208921799375,-0.010605929049429499,-0.006291131013367238
+52.337853,4.945201,-0.0032518335133377638,-0.007176878505631224,-0.003170012778529941,-0.00537912318331,-0.0075611345500992385,-0.005522535038345208,-0.00792499671514876,-0.006305558360369318,-0.002931731816661096,-0.007628340212074469,-0.0054629614792395306,-0.0031659911201517028,-0.003810738041471465,-0.00823617488648956,-0.004576400395509036,-0.0036177967562987237,-0.0027922388292433123,-0.0027634149892639334,-0.0024089366541188042,-0.0016797838895838972,-0.0025093401781893267,-0.009649041421757758,-0.00464489776040824,-0.0042353142623756295,-0.005158105950089501,-0.0023864790722445783,-0.005895450686726326,-0.009095663302791547,-0.009547930502899461,-0.005515650288171629,-0.007415058815371946,-0.010218381826027936,-0.006668660060541422,-0.00697021243083413,-0.010728010499975162,-0.010905438827340259,-0.0090965023602913,-0.009619805029658654,-0.007988369835680516,-0.013176208780791189,-0.006911755743124881,-0.0054166726821686904,-0.010035675581080716,-0.009942692296093562,-0.010287830667086374,-0.007100288274155355,-0.008095716910480614,-0.013167034171656183,-0.01066376576091798,-0.006950924165041988,-0.005645916841010811,-0.010576433112812969,-0.010101445252542945,-0.011813656860955831,-0.010378216944989334,-0.013001013513742953,-0.012242951339245045,-0.012146720892179937,-0.0157059290494295,-0.010191131013367239
+52.337813,4.945156,-0.0038518335133377636,-0.007176878505631224,-0.0029700127785299408,-0.0034791231833099998,-0.006061134550099239,-0.005722535038345209,-0.006924996715148761,-0.005205558360369318,-0.003231731816661096,-0.007428340212074469,-0.00536296147923953,-0.003965991120151703,-0.005110738041471465,-0.00903617488648956,-0.006376400395509035,-0.005317796756298723,-0.006492238829243313,-0.004163414989263934,-0.0022089366541188046,-0.004379783889583897,-0.004809340178189327,-0.010349041421757757,-0.006544897760408239,-0.00433531426237563,-0.0070581059500895,-0.0027864790722445785,-0.005395450686726326,-0.0074956633027915475,-0.00884793050289946,-0.00531565028817163,-0.007415058815371946,-0.009418381826027935,-0.006168660060541422,-0.00567021243083413,-0.00802801049997516,-0.009805438827340258,-0.0096965023602913,-0.009919805029658654,-0.006788369835680516,-0.012676208780791188,-0.007311755743124882,-0.004516672682168691,-0.010835675581080716,-0.009642692296093562,-0.007987830667086374,-0.016100288274155355,-0.004295716910480614,-0.011767034171656183,-0.011063765760917981,-0.005150924165041988,-0.005145916841010812,-0.009676433112812969,-0.007601445252542945,-0.012413656860955831,-0.008878216944989335,-0.009701013513742954,-0.010442951339245044,-0.012646720892179938,-0.007905929049429498,-0.006891131013367238
+52.337807,4.945127,-0.006051833513337763,-0.006276878505631224,-0.005070012778529941,-0.00457912318331,-0.007461134550099239,-0.0072225350383452085,-0.00802499671514876,-0.005205558360369318,-0.004631731816661096,-0.00422834021207447,-0.0067629614792395305,-0.004265991120151703,-0.006710738041471465,-0.00913617488648956,-0.0041764003955090355,-0.0022177967562987235,-0.003892238829243312,-0.0044634149892639335,-0.0025089366541188045,-0.005779783889583897,-0.004509340178189327,-0.009549041421757758,-0.00274489776040824,-0.00563531426237563,-0.0078581059500895,-0.004386479072244579,-0.006795450686726327,-0.007695663302791547,-0.006547930502899461,-0.0049156502881716295,-0.007915058815371946,-0.009418381826027935,-0.0069686600605414215,-0.006570212430834129,-0.00722801049997516,-0.01080543882734026,-0.0081965023602913,-0.010519805029658656,-0.007088369835680516,-0.010376208780791188,-0.006911755743124881,-0.009616672682168691,-0.009735675581080716,-0.009542692296093563,-0.009387830667086374,-0.008400288274155355,-0.006495716910480614,-0.013067034171656184,-0.01016376576091798,-0.0071509241650419865,-0.0060459168410108115,-0.00847643311281297,-0.008301445252542946,-0.009213656860955832,-0.009978216944989335,-0.013301013513742953,-0.011542951339245044,-0.010946720892179938,-0.010705929049429498,-0.008991131013367239
+52.337872,4.944572,-0.004751833513337763,-0.005676878505631224,-0.005270012778529941,-0.0036791231833100003,-0.006461134550099239,-0.006522535038345208,-0.006924996715148761,-0.005505558360369318,-0.003031731816661096,-0.01052834021207447,-0.006562961479239531,-0.006865991120151704,-0.0062107380414714655,-0.00793617488648956,-0.0061764003955090355,-0.0042177967562987235,-0.007192238829243313,-0.006263414989263934,-0.004808936654118805,-0.005179783889583897,-0.004309340178189327,-0.009849041421757758,-0.00524489776040824,-0.00463531426237563,-0.007558105950089501,-0.0028864790722445788,-0.007195450686726326,-0.008895663302791547,-0.00824793050289946,-0.005515650288171629,-0.008415058815371947,-0.011618381826027936,-0.007568660060541421,-0.00697021243083413,-0.00492801049997516,-0.010905438827340259,-0.0088965023602913,-0.010419805029658655,-0.010288369835680515,-0.011276208780791188,-0.00821175574312488,-0.008916672682168692,-0.007535675581080715,-0.009842692296093563,-0.010887830667086373,-0.010100288274155355,-0.0076957169104806145,-0.014567034171656184,-0.01346376576091798,-0.011150924165041987,-0.008145916841010811,-0.00817643311281297,-0.009201445252542946,-0.012613656860955832,-0.010178216944989335,-0.010301013513742954,-0.011742951339245045,-0.011046720892179937,-0.009405929049429497,-0.012191131013367239
+52.337805,4.945014,-0.0034518335133377634,-0.005376878505631224,-0.003870012778529941,-0.00457912318331,-0.008161134550099237,-0.004522535038345208,-0.0028249967151487603,-0.006305558360369318,-0.003331731816661096,-0.00452834021207447,-0.0054629614792395306,-0.005065991120151703,-0.004410738041471465,-0.00773617488648956,-0.0074764003955090355,-0.005017796756298723,-0.004892238829243312,-0.0047634149892639335,-0.0036089366541188048,-0.004079783889583897,-0.005009340178189327,-0.007649041421757758,-0.00614489776040824,-0.0075353142623756295,-0.008858105950089502,-0.005386479072244578,-0.006995450686726326,-0.005695663302791547,-0.005047930502899461,-0.0036156502881716296,-0.0070150588153719455,-0.011318381826027936,-0.005568660060541422,-0.00467021243083413,-0.00732801049997516,-0.009905438827340258,-0.0086965023602913,-0.007819805029658655,-0.008688369835680516,-0.011576208780791188,-0.007711755743124881,-0.00941667268216869,-0.008935675581080715,-0.009742692296093562,-0.011487830667086373,-0.009200288274155356,-0.008595716910480614,-0.012167034171656184,-0.011463765760917979,-0.007350924165041987,-0.006445916841010812,-0.00987643311281297,-0.005201445252542946,-0.00991365686095583,-0.011978216944989335,-0.007801013513742954,-0.009042951339245044,-0.009146720892179936,-0.010405929049429498,-0.0064911310133672386
+52.337825,4.944593,-0.004651833513337764,-0.0031768785056312233,-0.006170012778529941,-0.0047791231833100006,-0.006661134550099239,-0.006922535038345209,-0.00942499671514876,-0.005805558360369318,-0.008831731816661097,-0.00902834021207447,-0.00536296147923953,-0.004465991120151703,-0.006010738041471465,-0.00983617488648956,-0.005576400395509036,-0.0031177967562987232,-0.005192238829243313,-0.008463414989263934,-0.0053089366541188045,-0.004679783889583897,-0.005009340178189327,-0.012249041421757758,-0.01274489776040824,-0.006035314262375629,-0.008258105950089502,-0.003886479072244579,-0.006295450686726326,-0.009995663302791547,-0.005647930502899461,-0.005115650288171629,-0.012515058815371946,-0.010918381826027935,-0.01036866006054142,-0.008970212430834129,-0.0025280104999751605,-0.014905438827340259,-0.0087965023602913,-0.012919805029658655,-0.008688369835680516,-0.012876208780791189,-0.007311755743124882,-0.007816672682168692,-0.005535675581080715,-0.016342692296093562,-0.008187830667086374,-0.009200288274155356,-0.005895716910480614,-0.011667034171656184,-0.01116376576091798,-0.007450924165041986,-0.0060459168410108115,-0.01457643311281297,-0.013101445252542945,-0.014413656860955831,-0.011278216944989334,-0.015001013513742953,-0.014842951339245045,-0.012046720892179938,-0.0174059290494295,-0.014391131013367238
+52.337764,4.944823,-0.0038518335133377636,-0.007976878505631224,-0.005770012778529941,-0.00537912318331,-0.008661134550099238,-0.00782253503834521,-0.00732499671514876,-0.00850555836036932,-0.0038317318166610965,-0.00872834021207447,-0.00886296147923953,-0.007565991120151703,-0.007310738041471466,-0.00903617488648956,-0.006376400395509035,-0.007017796756298723,-0.007492238829243313,-0.005363414989263933,-0.0053089366541188045,-0.005179783889583897,-0.004709340178189327,-0.009649041421757758,-0.006044897760408239,-0.00773531426237563,-0.009158105950089502,-0.0055864790722445785,-0.006495450686726327,-0.008195663302791548,-0.009847930502899461,-0.00831565028817163,-0.008115058815371947,-0.012318381826027935,-0.008268660060541421,-0.00817021243083413,-0.010728010499975162,-0.010405438827340258,-0.0089965023602913,-0.010519805029658656,-0.009088369835680515,-0.011876208780791188,-0.008111755743124881,-0.007916672682168691,-0.009635675581080715,-0.009942692296093562,-0.011087830667086374,-0.010100288274155355,-0.008595716910480614,-0.012267034171656184,-0.01286376576091798,-0.009650924165041987,-0.009145916841010812,-0.010376433112812968,-0.009101445252542946,-0.011613656860955831,-0.011278216944989334,-0.010201013513742955,-0.010842951339245045,-0.012046720892179938,-0.012305929049429499,-0.008691131013367239
+52.337746,4.944894,-0.0034518335133377634,-0.006176878505631224,-0.003270012778529941,-0.00317912318331,-0.005961134550099239,-0.004322535038345209,-0.00662499671514876,-0.005105558360369318,-0.003631731816661096,-0.005728340212074469,-0.00466296147923953,-0.002065991120151703,-0.003210738041471465,-0.00573617488648956,-0.002676400395509035,-0.0006177967562987236,-0.0056922388292433125,-0.004263414989263934,-0.004108936654118805,-0.004779783889583897,-0.002709340178189327,-0.007749041421757758,-0.0029448977604082396,-0.0032353142623756295,-0.005558105950089501,-0.0018864790722445787,-0.004195450686726326,-0.007195663302791548,-0.006747930502899461,-0.00441565028817163,-0.006515058815371946,-0.008718381826027936,-0.006068660060541422,-0.00537021243083413,-0.008228010499975161,-0.008805438827340258,-0.007196502360291302,-0.008219805029658654,-0.006588369835680515,-0.010376208780791188,-0.006111755743124881,-0.0061166726821686905,-0.009435675581080716,-0.009442692296093562,-0.007587830667086374,-0.007200288274155355,-0.006995716910480614,-0.010867034171656183,-0.01136376576091798,-0.005750924165041988,-0.005645916841010811,-0.008576433112812969,-0.006201445252542946,-0.008113656860955831,-0.009878216944989335,-0.008901013513742954,-0.008942951339245045,-0.008546720892179937,-0.010105929049429498,-0.007691131013367238
+52.337756,4.944775,-0.0032518335133377638,-0.007176878505631224,-0.005570012778529941,-0.0040791231833100005,-0.006961134550099239,-0.0062225350383452085,-0.00702499671514876,-0.006605558360369318,-0.003031731816661096,-0.0068283402120744695,-0.00596296147923953,-0.006765991120151703,-0.0065107380414714654,-0.00913617488648956,-0.0064764003955090355,-0.005417796756298723,-0.007092238829243313,-0.006163414989263934,-0.007608936654118804,-0.005979783889583897,-0.004409340178189327,-0.007649041421757758,-0.006644897760408238,-0.00593531426237563,-0.007558105950089501,-0.003586479072244579,-0.005895450686726326,-0.008595663302791547,-0.008147930502899461,-0.00621565028817163,-0.007915058815371946,-0.008918381826027937,-0.007168660060541422,-0.00737021243083413,-0.00862801049997516,-0.00960543882734026,-0.0078965023602913,-0.008419805029658655,-0.007488369835680515,-0.012376208780791188,-0.007311755743124882,-0.006916672682168691,-0.008835675581080714,-0.009742692296093562,-0.008987830667086374,-0.010300288274155354,-0.008495716910480615,-0.012567034171656184,-0.01116376576091798,-0.007750924165041986,-0.005345916841010811,-0.00897643311281297,-0.006901445252542946,-0.010613656860955832,-0.008278216944989335,-0.011601013513742955,-0.009842951339245044,-0.011446720892179936,-0.010705929049429498,-0.008091131013367238
+52.337793,4.944285,-0.0027518335133377633,-0.003976878505631224,-0.000970012778529941,-0.00617912318331,-0.008261134550099239,-0.005522535038345208,-0.0052249967151487605,-0.001805558360369318,-0.0043317318166610965,-0.00452834021207447,-0.00436296147923953,-0.003565991120151703,-0.0052107380414714655,-0.00663617488648956,-0.005676400395509035,-0.0025177967562987234,-0.006292238829243312,-0.006463414989263934,-0.0050089366541188046,-0.004979783889583897,-0.003909340178189327,-0.009149041421757757,-0.005044897760408239,-0.005835314262375629,-0.007958105950089502,-0.003286479072244579,-0.005695450686726326,-0.008795663302791547,-0.002347930502899461,-0.0019156502881716296,-0.011015058815371946,-0.010818381826027935,-0.006268660060541421,-0.008970212430834129,-0.009928010499975161,-0.012605438827340259,-0.0081965023602913,-0.009419805029658656,-0.007688369835680516,-0.013476208780791189,-0.00791175574312488,-0.0071166726821686906,-0.003335675581080715,-0.012242692296093562,-0.007287830667086374,-0.009100288274155354,-0.0066957169104806145,-0.014767034171656184,-0.01186376576091798,-0.007450924165041986,-0.005445916841010812,-0.0017764331128129695,-0.007901445252542945,-0.00851365686095583,-0.009178216944989335,-0.0072010135137429545,-0.010742951339245044,-0.010946720892179938,-0.010905929049429499,-0.010291131013367238
+52.337719,4.944707,-0.0014518335133377636,-0.0050768785056312235,-0.001470012778529941,-0.0037791231833100005,-0.005061134550099239,-0.0032225350383452084,-0.00452499671514876,-0.0035055583603693184,-0.0034317318166610963,-0.006028340212074469,-0.00536296147923953,-0.004465991120151703,-0.006410738041471465,-0.00563617488648956,-0.005776400395509035,-0.004117796756298723,-0.005192238829243313,-0.0047634149892639335,-0.003908936654118805,-0.005279783889583897,-0.004309340178189327,-0.007649041421757758,-0.0035448977604082394,-0.005435314262375629,-0.0067581059500895005,-0.0013864790722445787,-0.006395450686726326,-0.006395663302791547,-0.005847930502899461,-0.003115650288171629,-0.005415058815371946,-0.008518381826027936,-0.005068660060541422,-0.0039702124308341295,-0.007628010499975161,-0.00850543882734026,-0.0083965023602913,-0.006119805029658654,-0.006688369835680516,-0.009676208780791189,-0.005811755743124881,-0.00731667268216869,-0.008035675581080716,-0.008942692296093563,-0.009487830667086373,-0.008800288274155355,-0.009295716910480614,-0.010467034171656184,-0.012763765760917981,-0.004350924165041988,-0.003945916841010812,-0.00897643311281297,-0.005001445252542945,-0.008913656860955832,-0.009478216944989334,-0.010201013513742955,-0.010042951339245045,-0.007846720892179937,-0.010805929049429498,-0.004791131013367238
+52.33776,4.944125,-0.004951833513337764,-0.0040768785056312234,-0.001170012778529941,-0.0060791231833100005,-0.006961134550099239,-0.004822535038345208,-0.0062249967151487605,-0.0078055583603693175,-0.004931731816661096,-0.008928340212074469,-0.00536296147923953,-0.003965991120151703,-0.0052107380414714655,-0.008036174886489559,-0.005776400395509035,-0.0025177967562987234,-0.003892238829243312,-0.004163414989263934,-0.004608936654118805,-0.0035797838895838974,-0.005409340178189327,-0.010949041421757757,-0.007344897760408239,-0.0062353142623756295,-0.0093581059500895,-0.002986479072244578,-0.006895450686726326,-0.011995663302791547,-0.007347930502899461,-0.005215650288171629,-0.009015058815371946,-0.009018381826027936,-0.007468660060541422,-0.009270212430834129,-0.00942801049997516,-0.01010543882734026,-0.0087965023602913,-0.010019805029658655,-0.009188369835680516,-0.012276208780791189,-0.007311755743124882,-0.006516672682168691,-0.006835675581080714,-0.006942692296093562,-0.008487830667086374,-0.008400288274155355,-0.008195716910480615,-0.015367034171656184,-0.01236376576091798,-0.009150924165041987,-0.005945916841010812,-0.011176433112812969,-0.008501445252542945,-0.01051365686095583,-0.008178216944989335,-0.010901013513742954,-0.009142951339245045,-0.009946720892179937,-0.010205929049429498,-0.008691131013367239
+52.337693,4.94465,-0.0027518335133377633,-0.008376878505631223,-0.004670012778529941,-0.0040791231833100005,-0.006561134550099239,-0.004722535038345209,-0.0072249967151487605,-0.005305558360369318,-0.0034317318166610963,-0.00722834021207447,-0.005862961479239531,-0.004965991120151703,-0.0052107380414714655,-0.00883617488648956,-0.006076400395509035,-0.0035177967562987234,-0.005892238829243312,-0.005263414989263934,-0.005808936654118805,-0.0045797838895838975,-0.004509340178189327,-0.010249041421757758,-0.007644897760408239,-0.00493531426237563,-0.007658105950089501,-0.003886479072244579,-0.005895450686726326,-0.008895663302791547,-0.008647930502899462,-0.00541565028817163,-0.009115058815371946,-0.009018381826027936,-0.007468660060541422,-0.00637021243083413,-0.00802801049997516,-0.01240543882734026,-0.0086965023602913,-0.009319805029658654,-0.007888369835680515,-0.011476208780791189,-0.007511755743124882,-0.007216672682168691,-0.009435675581080716,-0.010642692296093562,-0.008787830667086374,-0.007000288274155355,-0.007495716910480614,-0.012967034171656185,-0.011563765760917982,-0.007250924165041988,-0.005945916841010812,-0.01107643311281297,-0.007401445252542946,-0.012413656860955831,-0.008578216944989335,-0.010901013513742954,-0.010542951339245045,-0.008246720892179937,-0.009905929049429498,-0.007091131013367238
+52.33767,4.944533,-0.0044518335133377634,-0.007976878505631224,-0.003270012778529941,-0.00497912318331,-0.006861134550099239,-0.0052225350383452085,-0.00682499671514876,-0.008705558360369318,-0.003031731816661096,-0.00552834021207447,-0.006562961479239531,-0.009065991120151703,-0.006010738041471465,-0.006436174886489559,-0.010476400395509036,-0.0052177967562987235,-0.010292238829243312,-0.008063414989263933,-0.009708936654118806,-0.009479783889583898,-0.007509340178189327,-0.008949041421757757,-0.003944897760408239,-0.010235314262375629,-0.0157581059500895,-0.013386479072244578,-0.008495450686726327,-0.010095663302791548,-0.009247930502899461,-0.004215650288171629,-0.007415058815371946,-0.007118381826027935,-0.007568660060541421,-0.006870212430834129,-0.00942801049997516,-0.01080543882734026,-0.008596502360291301,-0.007819805029658655,-0.010188369835680515,-0.010976208780791188,-0.007511755743124882,-0.011216672682168692,-0.009535675581080715,-0.009842692296093563,-0.011887830667086374,-0.013500288274155356,-0.014895716910480614,-0.012667034171656183,-0.01666376576091798,-0.012050924165041986,-0.010745916841010813,-0.009476433112812968,-0.008501445252542945,-0.009513656860955831,-0.010078216944989334,-0.010001013513742954,-0.012742951339245044,-0.007346720892179937,-0.011905929049429498,-0.009291131013367239
+52.337653,4.944405,-0.002051833513337764,-0.0070768785056312235,-0.001770012778529941,-0.00297912318331,-0.004761134550099239,-0.004322535038345209,-0.00682499671514876,-0.005105558360369318,-0.0025317318166610966,-0.006628340212074469,-0.0047629614792395305,-0.006665991120151703,-0.006110738041471465,-0.00773617488648956,-0.0054764003955090354,-0.004917796756298724,-0.008492238829243312,-0.006263414989263934,-0.006708936654118805,-0.007179783889583897,-0.003609340178189327,-0.008549041421757757,-0.00434489776040824,-0.005735314262375629,-0.006658105950089501,-0.0024864790722445786,-0.005395450686726326,-0.007795663302791548,-0.007347930502899461,-0.0039156502881716295,-0.0060150588153719455,-0.007718381826027937,-0.0056686600605414215,-0.006570212430834129,-0.006528010499975161,-0.009205438827340259,-0.005896502360291301,-0.006919805029658654,-0.008488369835680515,-0.012176208780791188,-0.006411755743124882,-0.008016672682168692,-0.008135675581080715,-0.007642692296093562,-0.010587830667086373,-0.009700288274155354,-0.006795716910480614,-0.011567034171656184,-0.01076376576091798,-0.005350924165041987,-0.006245916841010812,-0.007776433112812968,-0.006001445252542945,-0.007813656860955831,-0.008378216944989334,-0.008101013513742953,-0.008742951339245044,-0.008946720892179938,-0.009205929049429499,-0.005891131013367239
+52.337639,4.944362,-0.004251833513337764,-0.009876878505631223,-0.004070012778529941,-0.0040791231833100005,-0.005961134550099239,-0.005422535038345208,-0.00822499671514876,-0.004505558360369318,-0.006431731816661096,-0.007728340212074469,-0.005862961479239531,-0.007665991120151702,-0.007710738041471465,-0.011236174886489559,-0.007976400395509035,-0.006717796756298723,-0.008992238829243313,-0.007163414989263934,-0.010308936654118805,-0.007579783889583897,-0.0064093401781893265,-0.011849041421757758,-0.009144897760408239,-0.00893531426237563,-0.010958105950089501,-0.005886479072244578,-0.008995450686726325,-0.008895663302791547,-0.008147930502899461,-0.004815650288171629,-0.008215058815371946,-0.008318381826027937,-0.007068660060541422,-0.00537021243083413,-0.007428010499975161,-0.011605438827340258,-0.006696502360291301,-0.008719805029658655,-0.006688369835680516,-0.013976208780791189,-0.008711755743124881,-0.007216672682168691,-0.007935675581080714,-0.010142692296093563,-0.010687830667086373,-0.012200288274155355,-0.010695716910480614,-0.013467034171656183,-0.01526376576091798,-0.008850924165041987,-0.006845916841010812,-0.01017643311281297,-0.008601445252542946,-0.01111365686095583,-0.012578216944989335,-0.010301013513742954,-0.009042951339245044,-0.007146720892179937,-0.010105929049429498,-0.009291131013367239
+52.33763,4.944317,-0.004651833513337764,-0.009876878505631223,-0.004570012778529941,-0.00447912318331,-0.007861134550099238,-0.006322535038345209,-0.0075249967151487605,-0.008005558360369319,-0.0063317318166610966,-0.00992834021207447,-0.007862961479239532,-0.008165991120151702,-0.007810738041471465,-0.012036174886489559,-0.009276400395509036,-0.007817796756298723,-0.011292238829243312,-0.007963414989263933,-0.009708936654118806,-0.008879783889583898,-0.007409340178189327,-0.011449041421757757,-0.00824489776040824,-0.00833531426237563,-0.0102581059500895,-0.006686479072244579,-0.008895450686726326,-0.010195663302791548,-0.010347930502899462,-0.007515650288171629,-0.008815058815371946,-0.010418381826027936,-0.007468660060541422,-0.00707021243083413,-0.010228010499975161,-0.01240543882734026,-0.0111965023602913,-0.010519805029658656,-0.011388369835680515,-0.014976208780791188,-0.00881175574312488,-0.010116672682168691,-0.012135675581080715,-0.011642692296093562,-0.011487830667086373,-0.012500288274155355,-0.009795716910480614,-0.015367034171656184,-0.01476376576091798,-0.009650924165041987,-0.009145916841010812,-0.012076433112812968,-0.010401445252542945,-0.012413656860955831,-0.012078216944989334,-0.011001013513742953,-0.011342951339245044,-0.011246720892179938,-0.012505929049429498,-0.010991131013367239
+52.337675,4.943956,-0.0021518335133377635,-0.0007768785056312236,-0.001470012778529941,0.00232087681669,-0.0052611345500992385,-0.0038225350383452083,-0.00552499671514876,-0.005205558360369318,-0.0009317318166610963,-0.00812834021207447,-0.00436296147923953,-0.003965991120151703,-0.0052107380414714655,-0.00633617488648956,-0.005776400395509035,-0.0032177967562987235,-0.005292238829243312,-0.004963414989263934,-0.0034089366541188043,-0.004779783889583897,-0.0034093401781893273,-0.008349041421757757,-0.006544897760408239,-0.006735314262375629,-0.006658105950089501,-0.003586479072244579,-0.005595450686726326,-0.008595663302791547,-0.009247930502899461,-0.0039156502881716295,-0.013515058815371945,-0.007918381826027936,-0.0049686600605414214,-0.008070212430834129,-0.00462801049997516,-0.005605438827340259,-0.005996502360291301,-0.008419805029658655,-0.007588369835680515,-0.011576208780791188,-0.007211755743124882,-0.007216672682168691,-0.0037356755810807147,-0.010742692296093563,-0.007387830667086374,-0.006900288274155355,-0.007595716910480614,-0.017867034171656183,-0.01016376576091798,-0.007750924165041986,-0.005245916841010812,-0.00637643311281297,-0.006701445252542945,-0.01051365686095583,-0.011078216944989335,-0.006501013513742954,5.7048660754954745e-05,-0.006846720892179937,-0.009605929049429498,-0.003591131013367238
+52.337607,4.944249,-0.003351833513337763,-0.007176878505631224,-0.0036700127785299413,-0.00317912318331,-0.005561134550099239,-0.0031225350383452086,-0.00662499671514876,-0.005805558360369318,-0.003231731816661096,-0.007328340212074469,-0.00696296147923953,-0.010265991120151703,-0.007810738041471465,-0.01053617488648956,-0.009176400395509035,-0.009017796756298723,-0.012192238829243312,-0.010463414989263934,-0.011208936654118805,-0.012179783889583897,-0.011309340178189327,-0.013349041421757758,-0.00994489776040824,-0.009935314262375629,-0.0113581059500895,-0.006686479072244579,-0.008995450686726325,-0.010095663302791548,-0.01084793050289946,-0.005515650288171629,-0.009115058815371946,-0.010418381826027936,-0.009468660060541421,-0.008670212430834129,-0.01012801049997516,-0.011705438827340257,-0.0098965023602913,-0.010219805029658654,-0.008988369835680516,-0.014276208780791189,-0.00851175574312488,-0.012916672682168692,-0.010135675581080715,-0.012442692296093563,-0.013387830667086374,-0.015600288274155355,-0.011895716910480615,-0.015867034171656184,-0.01776376576091798,-0.012250924165041987,-0.010745916841010813,-0.01247643311281297,-0.009501445252542946,-0.01201365686095583,-0.010778216944989335,-0.011501013513742954,-0.009642951339245044,-0.010646720892179938,-0.010905929049429499,-0.008091131013367238
+52.337595,4.944175,-0.0025518335133377637,-0.006576878505631224,-0.001570012778529941,-0.0021791231833100002,-0.0052611345500992385,-0.0030225350383452083,-0.00442499671514876,-0.004305558360369318,-0.002931731816661096,-0.00822834021207447,-0.005262961479239531,-0.005265991120151703,-0.006310738041471466,-0.01043617488648956,-0.0054764003955090354,-0.004717796756298723,-0.006892238829243312,-0.007263414989263934,-0.005908936654118805,-0.0065797838895838975,-0.006509340178189328,-0.009449041421757757,-0.00874489776040824,-0.00663531426237563,-0.008858105950089502,-0.004086479072244579,-0.005895450686726326,-0.006895663302791548,-0.00914793050289946,-0.00571565028817163,-0.008915058815371945,-0.008218381826027936,-0.006768660060541422,-0.00637021243083413,-0.00922801049997516,-0.00900543882734026,-0.0089965023602913,-0.008819805029658656,-0.007688369835680516,-0.013076208780791188,-0.006211755743124881,-0.009316672682168691,-0.010835675581080716,-0.012842692296093562,-0.009787830667086373,-0.012400288274155355,-0.008195716910480615,-0.013467034171656183,-0.013863765760917982,-0.006950924165041988,-0.006845916841010812,-0.010376433112812968,-0.007101445252542946,-0.00971365686095583,-0.008578216944989335,-0.010401013513742953,-0.008842951339245045,-0.008546720892179937,-0.008405929049429498,-0.006691131013367239
+52.337574,4.944315,-0.0028518335133377636,-0.010876878505631224,-0.0024700127785299408,-0.00327912318331,-0.0062611345500992385,-0.0032225350383452084,-0.00542499671514876,-0.0039055583603693177,-0.0031317318166610964,-0.0068283402120744695,-0.0030629614792395308,-0.002165991120151703,-0.003010738041471465,-0.005536174886489559,-0.0030764003955090348,-0.0016177967562987234,-0.0033922388292433126,-0.003663414989263933,-0.0043089366541188045,-0.0031797838895838973,-0.0005093401781893273,-0.008049041421757757,-0.003444897760408239,-0.00593531426237563,-0.005958105950089501,-0.0009864790722445786,-0.0029954506867263266,-0.0074956633027915475,-0.006347930502899461,-0.00371565028817163,-0.006315058815371946,-0.009418381826027935,-0.0059686600605414215,-0.004570212430834129,-0.009928010499975161,-0.008205438827340258,-0.007296502360291301,-0.008219805029658654,-0.005588369835680515,-0.010376208780791188,-0.0038117557431248806,-0.0041166726821686905,-0.005035675581080715,-0.008742692296093563,-0.005887830667086373,-0.004700288274155355,-0.003995716910480614,-0.010467034171656184,-0.009363765760917981,-0.002850924165041988,-0.003245916841010812,-0.008076433112812968,-0.007401445252542946,-0.00991365686095583,-0.006478216944989335,-0.010901013513742954,-0.0076429513392450455,-0.0072467208921799375,-0.008605929049429499,-0.007491131013367238
+52.337557,4.94428,-0.001251833513337764,-0.0032768785056312235,-0.001070012778529941,-0.00197912318331,-0.006161134550099239,-0.0015225350383452085,-0.00272499671514876,-0.004505558360369318,-0.0014317318166610963,-0.0034283402120744693,-0.00466296147923953,-0.0034659911201517027,-0.004910738041471466,-0.00473617488648956,-0.004676400395509035,-0.0032177967562987235,-0.004292238829243312,-0.0038634149892639337,-0.0016089366541188043,-0.002079783889583897,-0.0011093401781893271,-0.008049041421757757,-0.0002448977604082394,0.0027646857376243707,-0.0060581059500895,-0.0021864790722445787,-0.005795450686726327,-0.0064956633027915475,-0.004447930502899461,-0.00401565028817163,-0.005715058815371946,-0.010218381826027936,-0.0049686600605414214,-0.004770212430834129,-0.00582801049997516,-0.006705438827340259,-0.006896502360291301,-0.0050198050296586545,-0.008188369835680515,-0.007776208780791188,-0.0053117557431248815,-0.011516672682168692,-0.004435675581080715,-0.007242692296093562,-0.006987830667086374,-0.005300288274155355,-0.004895716910480614,-0.007967034171656184,-0.010263765760917979,-0.005250924165041988,-0.0031459168410108117,-0.00487643311281297,-0.006101445252542945,-0.007813656860955831,-0.005778216944989335,-0.007401013513742955,-0.006442951339245046,-0.008546720892179937,-0.0072059290494294985,-0.004291131013367238
+52.337577,4.944097,-0.0018518335133377638,-0.005976878505631224,-0.001870012778529941,-0.00397912318331,-0.005161134550099239,-0.004622535038345209,-0.00452499671514876,-0.005005558360369318,-0.002031731816661096,-0.005928340212074469,-0.0047629614792395305,-0.006665991120151703,-0.005810738041471465,-0.007136174886489559,-0.007776400395509035,-0.005617796756298724,-0.007692238829243313,-0.0057634149892639335,-0.007208936654118805,-0.008079783889583898,-0.0051093401781893266,-0.008349041421757757,-0.005144897760408239,-0.006835314262375629,-0.0087581059500895,-0.0036864790722445783,-0.005895450686726326,-0.006395663302791547,-0.005647930502899461,-0.0029156502881716295,-0.006415058815371946,-0.007918381826027936,-0.005268660060541421,-0.004470212430834129,-0.00732801049997516,-0.008305438827340259,-0.007596502360291301,-0.007219805029658654,-0.006588369835680515,-0.010476208780791188,-0.005211755743124881,-0.006816672682168691,-0.007935675581080714,-0.008742692296093563,-0.010087830667086373,-0.010900288274155356,-0.012095716910480614,-0.009167034171656183,-0.01226376576091798,-0.008250924165041987,-0.011645916841010812,-0.009776433112812968,-0.004701445252542945,-0.003513656860955831,-0.010278216944989335,0.0008989864862570453,-0.009842951339245044,-0.007946720892179937,-0.009105929049429497,-0.006591131013367238
+52.337581,4.943641,-0.0011518335133377637,-0.009876878505631223,-0.001770012778529941,-0.0026791231833100003,-0.005361134550099239,-0.003722535038345209,-0.0052249967151487605,-0.004405558360369318,-0.002031731816661096,-0.0027283402120744696,-0.003162961479239531,-0.005065991120151703,-0.0039107380414714656,-0.0069361748864895595,-0.003676400395509035,-0.0019177967562987233,-0.0049922388292433124,-0.0037634149892639334,-0.005408936654118805,-0.003079783889583897,-0.002609340178189327,-0.0072490414217577575,-0.00434489776040824,-0.005035314262375629,-0.0078581059500895,-0.003986479072244578,-0.008295450686726326,-0.007395663302791547,-0.0072479305028994604,-0.00371565028817163,-0.006115058815371946,-0.007218381826027936,-0.004568660060541422,-0.00507021243083413,-0.008428010499975162,-0.0062054388273402586,-0.0083965023602913,-0.0006198050296586544,-0.0072883698356805155,-0.008276208780791189,-0.0053117557431248815,-0.0041166726821686905,-0.008635675581080715,-0.009242692296093563,-0.0025878306670863733,-0.008000288274155356,-0.006395716910480615,-0.011067034171656184,-0.010963765760917982,-0.004550924165041987,-0.004445916841010812,-0.007976433112812969,-0.010801445252542945,-0.00881365686095583,-0.007878216944989335,-0.009501013513742954,-0.008642951339245045,-0.008946720892179938,-0.008205929049429498,-0.006691131013367239
+52.337524,4.944014,-0.0031518335133377635,-0.0033768785056312233,-0.000670012778529941,-0.0018791231833100003,-0.004861134550099239,-0.0030225350383452083,-0.00442499671514876,-0.002405558360369318,-0.0021317318166610964,-0.005428340212074469,-0.0016629614792395308,-0.002965991120151703,-0.0017107380414714652,-0.0038361748864895596,-0.0016764003955090352,0.0013822032437012764,-0.0022922388292433123,-0.0008634149892639334,-0.0009089366541188045,-0.0006797838895838971,0.000490659821810673,-0.006149041421757757,-0.0017448977604082399,0.0037646857376243707,-0.004058105950089501,-0.0015864790722445784,-0.0029954506867263266,-0.005395663302791547,-0.006847930502899461,-0.0017156502881716296,-0.004715058815371946,-0.006718381826027936,-0.004068660060541422,-0.0025702124308341293,-0.007128010499975161,-0.008205438827340258,-0.005096502360291301,-0.004819805029658654,-0.004188369835680515,-0.007576208780791188,-0.004411755743124882,-0.0023166726821686905,-0.010135675581080715,-0.006642692296093562,-0.004287830667086373,-0.004600288274155355,-0.0022957169104806142,-0.007967034171656184,-0.00826376576091798,-0.002850924165041988,-0.0001459168410108114,-0.006176433112812969,-0.004801445252542945,-0.00881365686095583,-0.004778216944989335,-0.009001013513742953,-0.009742951339245045,-0.008746720892179937,-0.009605929049429498,-0.004591131013367238
+52.337423,4.943701,-0.0008518335133377638,-0.005876878505631224,0.0012299872214700592,-0.00247912318331,-0.004661134550099239,-0.0032225350383452084,-0.0032249967151487596,-0.004605558360369318,-0.003231731816661096,-0.0038283402120744695,-0.00406296147923953,-0.004365991120151703,-0.004110738041471465,-0.00533617488648956,-0.004076400395509035,-0.0008177967562987235,-0.004792238829243313,-0.0028634149892639337,-0.0026089366541188043,-0.001979783889583897,-0.0035093401781893267,-0.0038490414217577573,-0.00274489776040824,-0.0065353142623756294,-0.005958105950089501,-0.0026864790722445782,-0.004395450686726326,-0.005295663302791548,-0.007147930502899461,-0.0030156502881716297,-0.004015058815371946,-0.007218381826027936,-0.004468660060541422,-0.0026702124308341296,-0.00922801049997516,-0.008705438827340258,-0.005896502360291301,-0.006519805029658654,-0.006488369835680515,-0.010276208780791189,-0.004211755743124881,-0.00531667268216869,-0.007535675581080715,-0.005942692296093562,-0.006087830667086374,-0.006400288274155355,-0.005395716910480615,-0.009167034171656183,-0.01136376576091798,-0.004150924165041987,-0.004145916841010812,-0.007076433112812969,-0.0039014452525429457,-0.009613656860955831,-0.006378216944989336,-0.006701013513742955,-0.006442951339245046,-0.004646720892179937,-0.006405929049429498,-0.004791131013367238
+52.337359,4.943452,-0.0005518335133377638,0.0029231214943687767,0.003029987221470059,0.00042087681668999985,-0.0008611345500992387,0.0022774649616547917,-0.00072499671514876,0.0007944416396306818,0.004868268183338903,0.0009716597879255303,-0.0005629614792395308,3.400887984829695e-05,-0.00021073804147146515,-0.0034361748864895594,-7.640039550903516e-05,0.003182203243701277,-0.0008922388292433124,-0.00016341498926393348,-0.0006089366541188046,0.0006202161104161028,0.001790659821810673,-0.0020490414217577573,0.0012551022395917604,-0.0004353142623756294,-0.001658105950089501,0.0017135209277554214,-0.0005954506867263265,0.002304336697208452,-0.0009479305028994612,0.0013843497118283703,0.0020849411846280536,-0.002618381826027936,0.0005313399394585786,-0.0003702124308341295,0.00357198950002484,-0.006105438827340258,-0.0027965023602913013,-0.0030198050296586544,-0.0013883698356805156,-0.006176208780791189,0.0006882442568751189,-0.0007166726821686905,0.0015643244189192849,-0.004242692296093562,-0.0016878306670863733,-0.002000288274155355,-0.0002957169104806143,-0.002967034171656184,-0.00566376576091798,4.9075834958012656e-05,0.00025408315898918857,-0.004776433112812969,0.0005985547474570543,-0.002013656860955831,-0.0006782169449893352,0.0030989864862570452,-0.0043429513392450455,-0.001946720892179937,-0.0031059290494294986,0.000808868986632762
+52.336868,4.941974,0.0013481664866622362,-7.687850563122355e-05,0.003729987221470059,0.0013208768166899998,-0.0006611345500992386,0.0018774649616547915,-0.00132499671514876,-0.0005055583603693183,0.0018682681833389037,-0.0014283402120744695,-0.0012629614792395308,-0.0005659911201517031,-0.0006107380414714651,-0.0038361748864895596,-0.0014764003955090351,0.003182203243701277,-0.0010922388292433124,-0.0011634149892639336,-0.0012089366541188046,-0.0007797838895838971,0.0011906598218106728,-0.0028490414217577573,0.0004551022395917605,-0.0004353142623756294,-0.001158105950089501,0.0022135209277554216,-0.00019545068672632664,0.0015043366972084522,0.0007520694971005388,0.0029843497118283704,0.0022849411846280537,-0.0013183818260279361,0.0010313399394585787,0.0011297875691658706,0.0028719895000248394,-0.002005438827340259,-9.6502360291301e-05,-0.00021980502965865438,-0.0007883698356805156,-0.002676208780791189,0.000788244256875119,0.00018332731783130945,0.000464324418919285,-0.0009426922960935626,-8.783066708637345e-05,-0.001400288274155355,-0.0006957169104806144,-0.000867034171656184,-0.00506376576091798,0.00024907583495801253,0.0003540831589891885,2.3566887187030693e-05,0.0010985547474570542,-0.0015136568609558309,-0.0008782169449893352,-0.0018010135137429544,-0.0005429513392450453,-0.0006467208921799373,-0.00040592904942949844,0.002408868986632762
+52.336356,4.940358,-0.005251833513337764,-0.006476878505631224,-0.001470012778529941,-0.0037791231833100005,-0.004861134550099239,-0.00782253503834521,-0.00822499671514876,-0.007005558360369318,-0.004631731816661096,-0.00722834021207447,-0.00666296147923953,-0.005765991120151703,-0.005910738041471466,-0.00633617488648956,-0.0064764003955090355,-0.005317796756298723,-0.005892238829243312,-0.005563414989263934,-0.0036089366541188048,-0.003779783889583897,-0.001409340178189327,-0.007649041421757758,-0.0032448977604082395,-0.006835314262375629,-0.008358105950089501,-0.007086479072244578,-0.006995450686726326,-0.0074956633027915475,-0.00884793050289946,-0.00821565028817163,-0.006715058815371946,-0.012118381826027936,-0.005768660060541422,-0.006870212430834129,-0.00752801049997516,-0.010305438827340259,-0.008596502360291301,-0.010919805029658655,-0.010888369835680516,-0.010076208780791188,-0.01061175574312488,-0.009516672682168692,-0.009735675581080716,-0.011142692296093562,-0.006987830667086374,-0.009200288274155356,-0.008695716910480614,-0.009867034171656184,-0.01246376576091798,-0.007950924165041987,-0.0067459168410108124,-0.01047643311281297,-0.011601445252542945,-0.01221365686095583,-0.011178216944989335,-0.014101013513742953,-0.012142951339245044,-0.011946720892179937,-0.011705929049429499,-0.011491131013367238
+52.336327,4.940278,-0.0051518335133377635,-0.003976878505631224,0.0003299872214700591,-0.00447912318331,-0.0072611345500992385,-0.006322535038345209,-0.008324996715148759,-0.004505558360369318,-0.002631731816661096,-0.00552834021207447,-0.00636296147923953,-0.005565991120151703,-0.005710738041471465,-0.0072361748864895594,-0.004076400395509035,-0.005117796756298723,-0.0032922388292433123,-0.006563414989263934,-0.0043089366541188045,-0.003279783889583897,-0.003709340178189327,-0.010349041421757757,-0.01244489776040824,-0.006835314262375629,-0.005858105950089501,-0.005886479072244578,-0.004195450686726326,-0.008095663302791548,-0.009247930502899461,-0.0049156502881716295,-0.008115058815371947,-0.008318381826027937,-0.005568660060541422,-0.00877021243083413,-0.010228010499975161,-0.011005438827340258,-0.0089965023602913,-0.009419805029658656,-0.008488369835680515,-0.010076208780791188,-0.007011755743124882,-0.0061166726821686905,-0.006635675581080715,-0.010142692296093563,-0.009487830667086373,-0.008400288274155355,-0.006395716910480615,-0.006867034171656183,-0.00956376576091798,-0.002950924165041987,-0.0057459168410108116,-0.0068764331128129685,-0.009801445252542946,-0.006213656860955831,-0.008178216944989335,-0.011801013513742954,-0.011742951339245045,-0.011346720892179937,-0.012505929049429498,-0.008891131013367238
+52.402378,4.952657,-0.0018518335133377638,-0.0038768785056312234,-0.002070012778529941,-0.0006791231833100002,-0.0028611345500992383,-0.0009225350383452085,-0.00342499671514876,-0.0022055583603693184,-0.0025317318166610966,-0.00452834021207447,-0.0010629614792395307,-0.001765991120151703,-0.0005107380414714651,-0.0009361748864895595,-0.002176400395509035,-0.0035177967562987234,-0.0027922388292433123,0.0005365850107360666,0.0007910633458811955,-0.0003797838895838972,0.0021906598218106726,0.00015095857824224258,0.0017551022395917606,0.0017646857376243706,-0.000858105950089501,0.0024135209277554213,0.0021045493132736733,0.0015043366972084522,-0.002247930502899461,0.0020843497118283702,-0.0018150588153719464,-0.0020183818260279362,-0.0014686600605414214,0.0005297875691658706,-0.0031280104999751603,-0.004805438827340259,-0.0012965023602913009,-0.0014198050296586546,-0.0022883698356805154,-0.003376208780791189,-0.0007117557431248811,-0.0033166726821686906,-0.0037356755810807147,-0.0017426922960935625,-0.004287830667086373,-0.0032002882741553555,-0.0032957169104806143,-0.003067034171656184,-0.00306376576091798,0.00024907583495801253,0.0025540831589891885,0.00042356688718703055,-0.002401445252542946,-0.004713656860955831,-0.0007782169449893352,-0.0012010135137429546,-0.0017429513392450452,-0.0018467208921799372,-0.0016059290494294986,-0.0033911310133672382
+52.402364,4.952665,0.00014816648666223626,-0.004276878505631224,-0.002070012778529941,0.00012087681668999993,-0.004161134550099239,-0.0004225350383452085,-0.00342499671514876,-0.0005055583603693183,-0.00023173181666109616,-0.0032283402120744696,-0.0015629614792395307,-0.000765991120151703,-0.00031073804147146517,-0.0009361748864895595,-0.0005764003955090352,-0.0007177967562987234,-0.0032922388292433123,-6.341498926393349e-05,-0.0003089366541188046,-0.00027978388958389724,0.0012906598218106729,5.0958578242242536e-05,0.0022551022395917606,0.0019646857376243703,-0.000258105950089501,0.0019135209277554215,0.0010045493132736735,0.0008043366972084521,-0.003047930502899461,0.0010843497118283702,-0.0030150588153719463,-0.002118381826027936,-0.0017686600605414213,-0.0001702124308341295,-0.00502801049997516,-0.0034054388273402586,-0.001596502360291301,-0.0021198050296586547,-0.0028883698356805157,-0.003376208780791189,-0.001811755743124881,-0.0032166726821686903,-0.002835675581080715,-0.0020426922960935625,-0.005087830667086374,-0.004500288274155355,-0.0031957169104806144,-0.004767034171656184,-0.00356376576091798,-5.092416504198739e-05,0.00025408315898918857,0.0003235668871870306,-0.0028014452525429454,-0.004313656860955831,-0.002078216944989335,0.0005989864862570454,-0.0027429513392450452,-0.004346720892179937,-0.0024059290494294985,-0.001991131013367238
+52.402333,4.952761,0.002648166486662236,-0.0011768785056312236,0.0004299872214700591,0.0009208768166899999,0.0005388654499007613,-0.00032253503834520845,7.500328485123995e-05,0.0010944416396306818,0.0016682681833389038,-0.0025283402120744695,0.00013703852076046917,-0.001765991120151703,-0.0007107380414714652,-0.0013361748864895596,-0.001976400395509035,-0.0022177967562987235,-0.003892238829243312,-0.0010634149892639335,-0.0033089366541188044,-0.002279783889583897,0.000490659821810673,-0.0009490414217577575,0.0022551022395917606,-0.0002353142623756295,-0.002358105950089501,0.0017135209277554214,0.0013045493132736734,-0.001995663302791548,-0.00024793050289946116,0.0018843497118283703,-0.0035150588153719463,-0.0015183818260279362,-0.0017686600605414213,-0.0011702124308341293,-0.004528010499975161,-0.0034054388273402586,-0.0022965023602913013,-0.0028198050296586548,-0.0020883698356805157,-0.004976208780791189,8.824425687511896e-05,-0.0051166726821686905,-0.005435675581080715,-0.0014426922960935626,-0.004487830667086374,-0.0028002882741553553,-0.003595716910480614,-0.002467034171656184,-0.006263765760917981,-0.0014509241650419876,-0.0005459168410108114,0.0010235668871870305,-0.00020144525254294572,-0.001413656860955831,-0.0014782169449893351,-0.0019010135137429547,-0.003342951339245045,-0.004446720892179937,-0.004005929049429498,-0.003291131013367238
+52.402341,4.952685,-0.0014518335133377636,-0.0034768785056312236,-0.0008700127785299409,-0.0006791231833100002,-0.0025611345500992384,-0.0020225350383452083,-0.00302499671514876,-0.002105558360369318,0.00026826818333890385,-0.0023283402120744695,-0.0017629614792395308,-0.0018659911201517028,-0.00021073804147146515,-0.0014361748864895594,-0.0016764003955090352,-0.0042177967562987235,-0.0024922388292433124,-0.0014634149892639335,-0.0009089366541188045,-0.0010797838895838974,0.000990659821810673,-0.0022490414217577574,0.0008551022395917604,-0.0007353142623756295,-0.0025581059500895008,0.0006135209277554215,-0.0007954506867263266,-0.003195663302791548,-0.004747930502899461,-0.0001156502881716297,-0.0037150588153719464,-0.0046183818260279366,-0.0026686600605414215,-0.0017702124308341294,-0.004828010499975161,-0.0042054388273402585,-0.0022965023602913013,-0.0034198050296586546,-0.0034883698356805155,-0.0031762087807911885,-0.0009117557431248812,-0.0025166726821686906,-0.0017356755810807151,-0.0017426922960935625,-0.005787830667086374,-0.0028002882741553553,-0.0046957169104806145,-0.004867034171656184,-0.00416376576091798,0.00014907583495801248,-0.0006459168410108114,0.0014235668871870307,-0.00030144525254294577,-0.004113656860955831,-0.002478216944989335,-0.0039010135137429545,-0.003442951339245045,-0.002746720892179937,-0.0016059290494294986,-0.002591131013367238
+52.40225,4.952867,-5.1833513337763834e-05,-0.0018768785056312237,0.001429987221470059,0.00022087681668999976,-0.00016113455009923868,-0.0002225350383452084,-0.0016249967151487602,9.444163963068177e-05,0.002768268183338904,-0.0021283402120744694,-0.0005629614792395308,-0.001065991120151703,-0.0005107380414714651,-0.0004361748864895596,0.0001235996044909648,-0.002717796756298724,-0.0018922388292433126,-0.0003634149892639335,-0.00010893665411880449,-0.0009797838895838971,0.0008906598218106728,-0.0019490414217577575,0.0005551022395917605,-0.00033531426237562955,-0.001758105950089501,0.0015135209277554215,-0.0002954506867263266,-0.0010956633027915477,-0.0007479305028994612,0.00288434971182837,-0.0030150588153719463,-0.001218381826027936,-0.0012686600605414213,-0.0014702124308341295,-0.00392801049997516,-0.0038054388273402588,-0.000896502360291301,-0.0019198050296586543,-0.0017883698356805156,-0.002476208780791189,-0.0009117557431248812,-0.0019166726821686904,-0.001535675581080715,-0.0027426922960935626,-0.0035878306670863733,-0.002200288274155355,-0.0022957169104806142,-0.0035670341716561842,-0.00416376576091798,-0.0019509241650419876,5.408315898918848e-05,-0.0015764331128129694,-0.0029014452525429456,-0.0055136568609558305,-0.003878216944989335,-0.0013010135137429546,-0.0012429513392450452,-0.002846720892179937,-0.0031059290494294986,-0.001591131013367238
+52.4022,4.952935,0.001248166486662236,-0.0016768785056312237,-0.00037001277852994095,-0.0001791231833100002,-0.0009611345500992387,-0.0005225350383452085,-0.00192499671514876,-0.00040555836036931824,0.0028682681833389037,-0.0006283402120744695,0.0005370385207604691,0.0009340088798482969,0.0005892619585285349,0.0011638251135104405,-0.002376400395509035,-0.0012177967562987235,7.761170756687662e-06,0.0018365850107360663,0.0021910633458811953,0.0013202161104161028,0.0028906598218106727,0.00015095857824224258,0.0033551022395917605,0.0018646857376243705,0.0004418940499104991,0.003213520927755421,0.0011045493132736733,0.00010433669720845212,-0.0029479305028994613,0.0015843497118283702,-0.00041505881537194634,-0.002118381826027936,-6.866006054142139e-05,0.0008297875691658705,-0.0023280104999751604,-0.0017054388273402587,-0.000596502360291301,-0.0027198050296586545,-0.0012883698356805154,-0.0001762087807911886,-0.0014117557431248809,0.0019833273178313095,-0.000535675581080715,-0.0006426922960935626,-0.002187830667086373,-0.0006002882741553551,-0.0024957169104806143,-0.0036670341716561836,-0.00446376576091798,0.0008490758349580126,-0.00044591684101081153,-0.0001764331128129694,-0.0006014452525429457,-0.006013656860955831,2.1783055010664797e-05,-0.004501013513742954,-0.002542951339245045,-0.0018467208921799372,-0.00020592904942949854,-0.0020911310133672383
+52.402114,4.953157,0.0014481664866622362,-0.005276878505631224,0.0005299872214700591,-7.912318331000016e-05,-0.0018611345500992385,-0.0015225350383452085,-0.0029249967151487597,-0.0026055583603693186,-0.0012317318166610962,-0.005328340212074469,-0.003162961479239531,-0.003865991120151703,-0.004610738041471466,-0.004536174886489559,-0.005376400395509035,-0.0052177967562987235,-0.004392238829243313,-0.0031634149892639336,-0.0026089366541188043,-0.003779783889583897,-0.002009340178189327,-0.0038490414217577573,-0.0012448977604082394,-0.0015353142623756293,-0.0025581059500895008,-0.0012864790722445785,-0.0027954506867263265,-0.003095663302791548,-0.004147930502899461,-0.0014156502881716296,-0.0017150588153719464,-0.003018381826027936,-0.0022686600605414213,-0.0018702124308341294,-0.0024280104999751606,-0.004305438827340259,-0.003496502360291301,-0.005119805029658654,-0.0030883698356805153,-0.006676208780791188,-0.002211755743124881,-0.0041166726821686905,-0.005235675581080715,-0.0031426922960935627,-0.006787830667086374,-0.004600288274155355,-0.0056957169104806145,-0.005367034171656184,-0.00666376576091798,-0.0025509241650419874,-0.0033459168410108113,-0.0007764331128129695,-0.003001445252542946,-0.004713656860955831,-0.0055782169449893355,-0.008101013513742953,-0.005442951339245046,-0.004846720892179937,-0.005605929049429498,-0.006691131013367239
+52.402042,4.953237,-0.0027518335133377633,-0.004976878505631224,-0.000970012778529941,-0.00177912318331,-0.0029611345500992385,-0.0015225350383452085,-0.00302499671514876,-0.0006055583603693181,-0.0009317318166610963,-0.00432834021207447,0.0007370385207604692,-0.0030659911201517034,0.0008892619585285349,-0.0014361748864895594,-0.0017764003955090353,-0.002017796756298724,-0.004392238829243313,-0.0035634149892639338,-0.0036089366541188048,-0.003479783889583897,0.0008906598218106728,-0.0021490414217577576,0.0026551022395917604,-0.0006353142623756295,-0.001258105950089501,0.0020135209277554215,-0.0014954506867263266,-0.0041956633027915476,-0.002847930502899461,0.0013843497118283703,-0.0030150588153719463,-0.003318381826027936,-0.0014686600605414214,-0.0017702124308341294,-0.00522801049997516,-0.005005438827340258,-0.001196502360291301,-0.0025198050296586544,-0.0022883698356805154,-0.005276208780791189,-0.0035117557431248807,-0.0013166726821686905,-0.003335675581080715,-0.006242692296093562,-0.002787830667086374,-0.0035002882741553554,-0.006195716910480614,-0.006567034171656183,-0.00666376576091798,-0.0025509241650419874,-0.0024459168410108116,-0.0011764331128129692,-0.003301445252542946,-0.005113656860955831,-0.003878216944989335,-0.002201013513742955,-0.003442951339245045,-0.0062467208921799374,-0.005005929049429498,-0.0034911310133672385
+52.402011,4.953287,0.00014816648666223626,-0.0030768785056312234,0.0011299872214700591,0.00012087681668999993,-0.0017611345500992387,-0.00032253503834520845,-0.0026249967151487598,-0.0005055583603693183,0.0015682681833389038,-0.004728340212074469,0.00023703852076046921,-0.00026599112015170297,-0.0008107380414714651,-0.0017361748864895595,-0.001976400395509035,-0.002417796756298723,-0.0021922388292433125,-0.0004634149892639335,0.0007910633458811955,2.0216110416102786e-05,0.001890659821810673,-0.0010490414217577575,0.0013551022395917604,0.0007646857376243705,-0.001058105950089501,0.0018135209277554214,0.0007045493132736734,-0.0007956633027915479,-0.0014479305028994613,0.0010843497118283702,-0.0006150588153719463,-0.003018381826027936,-0.00016866006054142143,0.0009297875691658705,-0.0027280104999751606,-0.0037054388273402585,-0.000596502360291301,-0.0031198050296586547,-0.0011883698356805156,-0.004476208780791189,-0.0017117557431248808,-0.0010166726821686904,-0.003935675581080715,-0.0017426922960935625,-0.005187830667086374,-0.0025002882741553554,-0.0012957169104806142,-0.002867034171656184,-0.0034637657609179803,0.0006490758349580126,0.0011540831589891885,0.0017235668871870306,0.0011985547474570543,-0.0010136568609558309,-0.0001782169449893352,9.898648625704542e-05,0.00015704866075495476,0.0009532791078200628,0.0006940709505705015,-0.00039113101336723816
+52.401945,4.953413,-0.0013518335133377638,-0.0040768785056312234,-0.001070012778529941,-0.0001791231833100002,-0.002161134550099239,-0.0022225350383452084,-0.0036249967151487598,-0.0028055583603693183,-0.000331731816661096,-0.0024283402120744693,-0.0010629614792395307,0.000534008879848297,0.0011892619585285348,-0.00013617488648955947,-0.0002764003955090352,-0.0005177967562987236,-0.00019223882924331243,-0.00016341498926393348,0.0028910633458811954,-0.0004797838895838972,0.002090659821810673,-0.0023490414217577577,-0.00034489776040823967,0.0005646857376243705,-0.000958105950089501,0.0006135209277554215,-0.0015954506867263268,-0.001395663302791548,-0.002747930502899461,-0.0017156502881716296,-0.003615058815371946,-0.0042183818260279355,-0.002868660060541421,-0.0012702124308341294,-0.005628010499975161,-0.004105438827340258,-0.003396502360291301,-0.004019805029658654,-0.0032883698356805154,-0.004876208780791189,-0.0015117557431248811,-0.0028166726821686906,-0.003335675581080715,-0.004242692296093562,-0.0038878306670863732,-0.004100288274155355,-0.002895716910480614,-0.005967034171656184,-0.0061637657609179795,-0.0011509241650419872,-0.0003459168410108115,-0.0004764331128129693,-0.0015014452525429457,-0.003713656860955831,-0.0042782169449893355,-0.0023010135137429546,-0.0015429513392450453,-0.0013467208921799372,-0.0016059290494294986,-0.003291131013367238
+52.401901,4.953493,0.0010481664866622362,-0.0006768785056312236,0.002529987221470059,0.00202087681669,0.0004388654499007613,-0.0011225350383452085,-0.00122499671514876,-0.00020555836036931826,0.0018682681833389037,-0.0013283402120744697,0.0011370385207604692,0.000434008879848297,0.00038926195852853477,-0.0004361748864895596,-0.0009764003955090352,-0.0007177967562987234,-0.0009922388292433124,-0.0009634149892639335,0.0009910633458811956,-7.978388958389715e-05,0.002990659821810673,-0.0011490414217577574,0.0034551022395917603,0.0010646857376243705,-0.0005581059500895009,0.0018135209277554214,0.00020454931327367338,-0.002195663302791548,-0.002047930502899461,0.0008843497118283702,-0.0009150588153719463,-0.003118381826027936,-0.0008686600605414214,0.0004297875691658705,-0.0030280104999751605,-0.003005438827340259,-0.001696502360291301,-0.0028198050296586548,-0.0028883698356805157,-0.0030762087807911886,-0.001311755743124881,-0.0021166726821686905,-0.0014356755810807152,-0.0015426922960935627,-0.0038878306670863732,-0.002700288274155355,-0.0024957169104806143,-0.0032670341716561843,-0.00356376576091798,0.0011490758349580125,0.00045408315898918855,0.0022235668871870306,0.0010985547474570542,-0.001813656860955831,-0.001278216944989335,-0.0003010135137429545,-0.0012429513392450452,-0.0003467208921799372,-0.0009059290494294986,-0.0007911310133672381
+52.401882,4.953534,-5.1833513337763834e-05,-0.0024768785056312236,0.001329987221470059,0.0008208768166899998,-0.0011611345500992386,-0.0006225350383452085,-0.00172499671514876,-0.001505558360369318,0.002268268183338904,-0.00332834021207447,-0.0012629614792395308,-0.001965991120151703,-0.001910738041471465,-0.0015361748864895595,-0.0012764003955090353,-0.0031177967562987232,0.0005077611707566877,3.6585010736066444e-05,-0.0003089366541188046,0.001020216110416103,0.002490659821810673,0.0006509585782422426,0.003955102239591761,-0.00033531426237562955,-0.0007581059500895009,0.0018135209277554214,-0.0009954506867263266,-0.0010956633027915477,-0.004747930502899461,0.0016843497118283703,-0.0016150588153719463,-0.003918381826027936,-0.0018686600605414211,0.0009297875691658705,-0.0027280104999751606,-0.0016054388273402586,-0.000396502360291301,-0.0014198050296586546,-0.0027883698356805154,-0.0019762087807911888,-0.002211755743124881,-0.0017166726821686905,-0.0012356755810807151,-0.0006426922960935626,-0.0036878306670863736,-0.002700288274155355,-0.0017957169104806142,-0.005467034171656184,-0.00636376576091798,-0.0016509241650419872,-0.005245916841010812,0.0022235668871870306,-0.0007014452525429457,-0.000513656860955831,-0.004378216944989336,-0.0036010135137429546,-0.002342951339245045,-0.003246720892179937,-0.0036059290494294986,-0.001991131013367238
+52.40186,4.95358,-0.0004518335133377638,-0.0015768785056312234,0.002729987221470059,0.0009208768166899999,-0.0005611345500992388,-0.0008225350383452084,-0.00192499671514876,-0.0007055583603693182,0.0014682681833389037,-0.0018283402120744694,-6.29614792395308e-05,-0.001065991120151703,-0.00031073804147146517,-0.0009361748864895595,-0.001376400395509035,-0.0011177967562987236,-0.005292238829243312,0.004736585010736066,0.0005910633458811955,2.0216110416102786e-05,-0.0038093401781893266,0.0011509585782422426,0.004255102239591761,0.0036646857376243704,0.002041894049910499,0.003913520927755421,0.0015045493132736735,-0.0002956633027915479,-0.00044793050289946114,0.00218434971182837,0.0003849411846280536,-0.001218381826027936,0.0007313399394585785,0.0019297875691658705,-0.0016280104999751605,-0.0016054388273402586,0.001003497639708699,-0.00021980502965865438,-0.0009883698356805155,-0.0012762087807911887,0.001188244256875119,0.0005833273178313095,0.00036432441891928475,-0.0009426922960935626,-0.0002878306670863733,0.0012997117258446449,0.0028042830895193857,-0.001567034171656184,-0.0015637657609179803,0.002849075834958013,0.0020540831589891885,0.0035235668871870305,0.0018985547474570544,0.001786343139044169,-0.0004782169449893352,0.0002989864862570454,0.0016570486607549546,0.0018532791078200628,-0.00040592904942949844,0.00030886898663276194
+52.401815,4.953666,0.0004481664866622362,-0.0020768785056312234,0.0020299872214700593,-7.912318331000016e-05,-0.0005611345500992388,-0.0008225350383452084,-0.00082499671514876,0.00019444163963068176,0.0012682681833389039,-0.0034283402120744693,-0.002462961479239531,-0.002465991120151703,-0.001910738041471465,-0.0013361748864895596,-0.0012764003955090353,-0.0008177967562987235,-0.0015922388292433124,-0.0014634149892639335,0.0007910633458811955,-0.0014797838895838971,0.0006906598218106728,-0.0026490414217577576,0.00015510223959176034,6.468573762437053e-05,-0.001658105950089501,0.0005135209277554215,-0.0014954506867263266,-0.0022956633027915478,-0.0024479305028994613,0.0005843497118283702,-0.0014150588153719462,-0.0025183818260279362,-0.0007686600605414214,0.0015297875691658706,-0.0024280104999751606,-0.0019054388273402586,-9.6502360291301e-05,-0.0026198050296586542,-0.0017883698356805156,-0.004076208780791188,-0.001111755743124881,-0.0017166726821686905,-0.002835675581080715,-0.0012426922960935625,-0.0025878306670863733,-0.003300288274155355,-0.0022957169104806142,-0.004667034171656184,-0.00566376576091798,-0.0023509241650419874,0.0007540831589891886,0.00042356688718703055,-0.0017014452525429458,-0.0055136568609558305,-0.004778216944989335,-0.002701013513742955,-0.0022429513392450452,-0.002746720892179937,-0.0008059290494294985,0.002108868986632762
+52.401763,4.953727,-0.0011518335133377637,-0.0029768785056312236,-0.000570012778529941,-0.0011791231833100002,-0.002461134550099239,-0.0026225350383452086,-0.00342499671514876,-0.0012055583603693182,0.002568268183338904,-0.0038283402120744695,-0.0013629614792395306,0.000434008879848297,-0.002110738041471465,-0.0024361748864895594,-0.0014764003955090351,-0.003917796756298724,-0.0014922388292433124,-0.0005634149892639335,0.0006910633458811954,-0.0001797838895838972,0.002790659821810673,-0.0016490414217577574,-0.00014489776040823958,-0.0004353142623756294,-0.001458105950089501,0.00041352092775542144,0.0005045493132736734,-0.002495663302791548,-0.0024479305028994613,-0.0009156502881716296,-0.002115058815371946,-0.003818381826027936,-0.0015686600605414212,-0.0015702124308341295,-0.0040280104999751605,-0.0023054388273402587,-0.001496502360291301,-0.0026198050296586542,-0.0027883698356805154,-0.0027762087807911887,-0.0012117557431248812,-0.0004166726821686905,-0.001535675581080715,-0.0013426922960935626,-0.0033878306670863736,-0.0042002882741553555,-0.00039571691048061435,-0.005067034171656184,-0.00416376576091798,-0.0009509241650419876,-0.0019459168410108113,-0.0006764331128129694,-0.0021014452525429453,-0.0036136568609558307,-0.005878216944989335,0.0003989864862570454,-0.004142951339245046,-0.0035467208921799373,-0.004705929049429498,-0.002991131013367238
+52.401749,4.95379,-0.0007518335133377639,-0.0028768785056312233,0.0012299872214700592,-7.912318331000016e-05,-0.0016611345500992388,-0.0017225350383452084,-0.00242499671514876,-0.00040555836036931824,0.0015682681833389038,-0.0017283402120744696,-0.0007629614792395308,3.400887984829695e-05,-0.0006107380414714651,-0.0004361748864895596,0.00042359960449096475,-0.0006177967562987236,-0.0006922388292433124,0.0005365850107360666,-0.0011089366541188047,-0.0009797838895838971,0.005490659821810673,-0.0012490414217577574,0.006955102239591761,-0.0008353142623756296,0.0024418940499104994,0.004113520927755422,-9.545068672632659e-05,-0.001395663302791548,0.0003520694971005389,-0.0009156502881716296,-0.0020150588153719463,-0.002818381826027936,-0.0018686600605414211,0.0030297875691658706,-0.0028280104999751604,0.0006945611726597413,0.001903497639708699,-0.003919805029658654,-0.0036883698356805156,-0.007376208780791189,-0.003111755743124881,0.0017833273178313096,0.0034643244189192846,-0.006442692296093563,-0.0002878306670863733,0.000599711725844645,4.283089519385657e-06,-0.002867034171656184,-0.00786376576091798,0.0016490758349580125,0.0048540831589891885,0.0017235668871870306,-0.0022014452525429455,-0.000713656860955831,-0.0005782169449893352,0.0002989864862570454,0.0005570486607549546,0.0005532791078200628,-0.0007059290494294985,-0.000491131013367238
+52.401732,4.953858,0.0009481664866622362,-0.0036768785056312233,0.003529987221470059,0.0009208768166899999,-0.0004611345500992387,-0.00032253503834520845,-0.0026249967151487598,-0.00010555836036931822,-0.0005317318166610961,-0.0035283402120744696,0.0012370385207604692,0.000734008879848297,-0.0008107380414714651,-0.0002361748864895595,0.0015235996044909647,-0.0025177967562987234,-0.0019922388292433124,0.0011365850107360664,0.0012910633458811955,2.0216110416102786e-05,0.002690659821810673,0.0006509585782422426,0.0002551022395917606,0.0009646857376243705,-0.000258105950089501,0.0025135209277554215,-0.0010954506867263264,-0.0015956633027915477,-0.0012479305028994612,0.0025843497118283702,8.494118462805365e-05,-0.0006183818260279361,-0.0002686600605414215,0.0018297875691658705,-0.0011280104999751603,-0.0026054388273402587,0.000603497639708699,-0.0008198050296586544,0.00011163016431948449,-0.0016762087807911886,0.0005882442568751189,0.00028332731783130944,-0.000935675581080715,-0.0022426922960935626,1.2169332913626596e-05,-0.002400288274155355,-0.004995716910480614,-0.003167034171656184,-0.005963765760917981,0.0006490758349580126,0.0011540831589891885,-7.643311281296935e-05,-0.0032014452525429456,-0.001613656860955831,-0.0036782169449893353,-0.0013010135137429546,-0.00024295133924504526,-4.67208921799372e-05,0.0018940709505705013,-0.0006911310133672381
+52.401724,4.953807,-0.0019518335133377636,-0.004276878505631224,0.0011299872214700591,-0.0018791231833100003,-0.003861134550099239,-0.0022225350383452084,-0.00182499671514876,-0.0032055583603693184,0.0009682681833389037,-0.0038283402120744695,-0.002262961479239531,-0.0016659911201517032,-0.003710738041471465,-0.0013361748864895596,0.0005235996044909648,-0.0045177967562987234,-0.0036922388292433125,-0.0023634149892639332,-0.0009089366541188045,-0.0026797838895838972,-0.0003093401781893272,-0.0033490414217577577,-0.0009448977604082395,-0.0008353142623756296,-0.003458105950089501,-0.0003864790722445787,-0.0026954506867263267,-0.003995663302791548,-0.004347930502899461,-0.0008156502881716298,-0.0027150588153719464,-0.003318381826027936,-0.004168660060541422,-0.0016702124308341294,-0.00532801049997516,-0.004105438827340258,-0.000996502360291301,-0.0027198050296586545,-0.0035883698356805153,-0.003676208780791189,-0.002711755743124881,-0.0021166726821686905,-0.001135675581080715,-0.0029426922960935627,-0.002787830667086374,-0.002300288274155355,-0.0022957169104806142,-0.005367034171656184,-0.0068637657609179805,-0.003250924165041987,-0.0023459168410108113,-0.0007764331128129695,-0.004001445252542945,-0.0045136568609558305,-0.004778216944989335,-0.0031010135137429545,-0.002442951339245045,-0.004546720892179937,-0.0011059290494294985,-0.003991131013367238
+52.401672,4.953951,-0.001251833513337764,-0.0031768785056312233,0.001429987221470059,0.00102087681669,-0.002761134550099239,-0.0009225350383452085,-0.00182499671514876,-0.0013055583603693182,-3.173181666109607e-05,-0.0038283402120744695,-0.0004629614792395308,0.000134008879848297,-0.0007107380414714652,-0.0009361748864895595,-0.002876400395509035,-0.0035177967562987234,-0.0008922388292433124,0.0001365850107360665,0.0009910633458811956,-0.0006797838895838971,0.0008906598218106728,-0.0022490414217577574,-0.00014489776040823958,-0.0008353142623756296,-0.002958105950089501,0.0012135209277554216,-0.0014954506867263266,-0.0022956633027915478,-0.0034479305028994613,-0.0009156502881716296,-0.0022150588153719464,-0.005018381826027936,-0.0022686600605414213,-0.0009702124308341295,-0.0027280104999751606,-0.004005438827340259,-0.003196502360291301,-0.0025198050296586544,-0.0030883698356805153,-0.004076208780791188,-0.002711755743124881,-0.0022166726821686903,-0.001935675581080715,-0.0027426922960935626,-0.0029878306670863735,-0.0032002882741553555,-0.003895716910480614,-0.006467034171656184,-0.00396376576091798,-0.0024509241650419876,-0.0005459168410108114,0.0020235668871870305,-0.003301445252542946,-0.003513656860955831,-0.004078216944989336,-0.0011010135137429545,0.001957048660754955,0.0004532791078200628,-0.004205929049429498,0.00030886898663276194
+52.401608,4.954002,-0.0013518335133377638,-0.0034768785056312236,0.003229987221470059,-0.00077912318331,-0.0032611345500992385,-0.004822535038345208,-0.0035249967151487604,-0.0019055583603693183,-0.0014317318166610963,-0.00492834021207447,-0.003862961479239531,-0.0011659911201517032,-0.002910738041471465,-0.00433617488648956,-0.003576400395509035,-0.0045177967562987234,-0.002892238829243312,-0.0025634149892639338,-0.0015089366541188045,-0.0026797838895838972,-0.0016093401781893271,-0.004449041421757757,-0.002144897760408239,-0.0024353142623756295,-0.0044581059500895005,0.00011352092775542152,-0.0026954506867263267,-0.004095663302791547,-0.0049479305028994605,-0.0020156502881716297,-0.0018150588153719464,-0.005918381826027936,-0.0025686600605414212,0.0007297875691658704,-0.0038280104999751604,-0.0062054388273402586,-0.004296502360291301,-0.005119805029658654,-0.005588369835680515,-0.006076208780791188,-0.0019117557431248809,-0.0034166726821686904,-0.004235675581080715,-0.003942692296093562,-0.004387830667086374,-0.005400288274155355,-0.0032957169104806143,-0.003067034171656184,-0.00636376576091798,-0.00045092416504198735,0.00045408315898918855,0.00022356688718703057,-0.0008014452525429458,-0.008013656860955832,-0.001278216944989335,-0.003701013513742955,-0.0003429513392450452,-0.004346720892179937,-0.004805929049429498,-0.012091131013367238
+52.401589,4.954117,-0.0027518335133377633,-0.004176878505631224,0.0003299872214700591,-0.00077912318331,-0.0014611345500992387,-0.0012225350383452086,-0.00222499671514876,-0.0013055583603693182,0.0009682681833389037,-0.0037283402120744692,-0.002462961479239531,-0.0013659911201517028,-0.001410738041471465,-0.0009361748864895595,-0.0012764003955090353,-0.003717796756298723,-0.0030922388292433127,-0.0009634149892639335,0.0017910633458811955,0.00022021611041610282,0.0007906598218106729,-0.0023490414217577577,-0.0004448977604082395,-0.0011353142623756296,-0.002358105950089501,-0.0012864790722445785,-0.0011954506867263267,-0.004595663302791548,-0.001647930502899461,-0.0022156502881716294,-0.0009150588153719463,-0.006318381826027937,-0.0029686600605414214,-0.0008702124308341294,-0.0020280104999751605,-0.004605438827340259,-0.001696502360291301,-0.004519805029658654,-0.0037883698356805154,-0.0034762087807911884,-0.002311755743124881,-0.0025166726821686906,-0.003435675581080715,0.005357307703906438,-0.004887830667086373,-0.003000288274155355,-0.0014957169104806143,-0.005667034171656184,-0.006563765760917981,-0.0023509241650419874,-0.002545916841010812,-0.0014764331128129696,-0.0034014452525429452,-0.005613656860955831,-0.005378216944989336,-0.0009010135137429544,-0.002542951339245045,-0.003146720892179937,-0.0021059290494294986,-0.0021911310133672377
+52.40159,4.954067,-0.002651833513337764,0.0068231214943687765,0.001529987221470059,2.0876816689999883e-05,-0.0023611345500992387,-0.0021225350383452086,-0.00422499671514876,0.0009944416396306817,-0.0011317318166610964,-0.005328340212074469,0.00043703852076046914,0.001234008879848297,0.0006892619585285348,-0.0004361748864895596,-0.002076400395509035,-0.003417796756298723,0.0015077611707566875,0.0028365850107360665,0.0018910633458811953,0.0011202161104161027,0.001890659821810673,-0.00014904142175775755,0.00405510223959176,-0.00013531426237562945,-0.000958105950089501,0.0013135209277554214,0.0005045493132736734,-0.001195663302791548,0.0003520694971005389,-0.0005156502881716299,-0.002115058815371946,-0.003918381826027936,-0.0012686600605414213,0.0013297875691658705,-0.0026280104999751603,-0.005005438827340258,-0.003196502360291301,-0.003519805029658654,-0.004388369835680516,-0.0027762087807911887,-0.0014117557431248809,-0.0011166726821686904,-0.004935675581080715,-0.0040426922960935625,-0.0022878306670863734,-0.003700288274155355,-0.0027957169104806143,-0.0035670341716561842,-0.006563765760917981,-0.0019509241650419876,-0.002945916841010812,-0.0001764331128129694,-0.0012014452525429457,0.000586343139044169,-0.0016782169449893352,-0.0031010135137429545,-0.0016429513392450454,-0.0038467208921799372,-0.0009059290494294986,-0.004091131013367238
+52.401529,4.954135,-0.0021518335133377635,-0.0026768785056312232,-0.001070012778529941,-0.00177912318331,-0.0028611345500992383,-0.0028225350383452087,-0.00242499671514876,-0.0017055583603693182,6.826818333890376e-05,-0.00422834021207447,-0.002762961479239531,-0.000865991120151703,-0.003210738041471465,-0.0025361748864895593,-0.002776400395509035,-0.005617796756298724,-0.00019223882924331243,-0.0028634149892639337,0.0010910633458811954,2.0216110416102786e-05,-0.0001093401781893271,-0.0019490414217577575,0.00035510223959176043,0.0009646857376243705,-0.0038581059500895007,0.00021352092775542134,-0.0029954506867263266,-0.003495663302791548,-0.0049479305028994605,-0.003115650288171629,-0.0037150588153719464,-0.005118381826027936,-0.0025686600605414212,0.0008297875691658705,-0.0040280104999751605,-0.005005438827340258,-0.005696502360291301,-0.004119805029658655,-0.0042883698356805154,-0.0041762087807911885,-0.0009117557431248812,-0.0018166726821686905,-0.004535675581080715,-0.004942692296093562,-0.003487830667086374,-0.0038002882741553553,-0.0034957169104806144,-0.006167034171656184,-0.0061637657609179795,-0.0017509241650419875,-0.0013459168410108115,-0.0017764331128129695,-0.003001445252542946,-0.003213656860955831,-0.003978216944989336,-0.0033010135137429546,-0.0016429513392450454,-0.002246720892179937,-0.0020059290494294987,-0.0009911310133672382
+52.401484,4.954279,0.0007481664866622362,-0.0024768785056312236,0.0023299872214700592,0.0016208768166899997,-0.0019611345500992385,-0.0010225350383452085,-0.00202499671514876,9.444163963068177e-05,0.0012682681833389039,-0.00332834021207447,-0.0005629614792395308,0.003734008879848297,0.002489261958528535,-0.00033617488648955956,0.002523599604490965,-0.0029177967562987236,0.0017077611707566876,0.0018365850107360663,0.0033910633458811954,0.0017202161104161026,0.003690659821810673,0.0011509585782422426,0.0051551022395917604,0.0023646857376243705,0.0016418940499104992,0.0036135209277554214,0.0018045493132736734,-0.0003956633027915479,-0.0012479305028994612,0.0017843497118283703,0.0013849411846280537,-0.0007183818260279362,0.0019313399394585784,0.00422978756916587,-0.00022801049997516046,-0.0007054388273402587,-0.000196502360291301,0.0009801949703413457,-0.0006883698356805155,0.0001237912192088113,0.0004882442568751189,0.0007833273178313093,-0.002135675581080715,-0.0016426922960935625,-0.005087830667086374,0.000599711725844645,0.0010042830895193857,-0.002867034171656184,-0.0018637657609179802,0.0020490758349580125,0.0027540831589891886,0.0036235668871870304,0.002498554747457054,0.001086343139044169,-0.0004782169449893352,0.0025989864862570452,0.002757048660754955,0.002353279107820063,-0.0001059290494294985,0.0004088689866327619
+52.401504,4.953804,0.00034816648666223613,-7.687850563122355e-05,0.005229987221470059,0.0021208768166899998,0.0006388654499007614,-0.0004225350383452085,-0.00122499671514876,-0.0006055583603693181,0.0018682681833389037,-0.0030283402120744696,-0.0001629614792395308,-0.001065991120151703,-0.0015107380414714651,-0.0017361748864895595,-0.0007764003955090351,-0.0022177967562987235,-0.006292238829243312,-0.0016634149892639336,9.106334588119544e-05,-0.0021797838895838972,0.0003906598218106729,-0.0023490414217577577,0.0002551022395917606,-0.00033531426237562955,-0.0018581059500895009,0.0016135209277554213,-0.0007954506867263266,-0.003195663302791548,-0.003347930502899461,0.0013843497118283703,-0.00021505881537194633,-0.0015183818260279362,0.0008313399394585786,0.0023297875691658705,-0.00042801049997516044,-0.0021054388273402586,-0.000396502360291301,-0.0016198050296586544,-0.0011883698356805156,-0.0030762087807911886,0.00038824425687511893,-0.0015166726821686904,-0.0014356755810807152,-0.0025426922960935625,-0.0020878306670863737,-0.002300288274155355,-0.0004957169104806144,-0.005067034171656184,-0.0061637657609179795,-0.0017509241650419875,-0.0018459168410108115,-0.0009764331128129695,-0.0021014452525429453,-0.0036136568609558307,-0.002578216944989335,-0.0020010135137429547,-0.002142951339245045,-0.0009467208921799372,-0.0012059290494294986,-0.001091131013367238
+52.401267,4.954586,-0.004651833513337764,-0.0037768785056312235,0.0023299872214700592,-0.0027791231833100005,-0.007861134550099238,-0.007622535038345209,-0.0026249967151487598,-0.0038055583603693183,0.0007682681833389039,-0.0032283402120744696,-0.003462961479239531,0.001434008879848297,-0.001910738041471465,-0.0006361748864895595,0.0010235996044909647,-0.004117796756298723,-0.0004922388292433125,-0.0031634149892639336,0.0075910633458811955,0.003920216110416102,0.00029065982181067287,-0.0016490414217577574,0.0031551022395917604,-0.0013353142623756292,-0.001458105950089501,-0.0052864790722445786,-0.004895450686726326,-0.007995663302791547,-0.003947930502899461,-0.00401565028817163,-0.0020150588153719463,-0.009118381826027935,-0.004068660060541422,-0.0019702124308341295,-0.0060280104999751605,-0.00850543882734026,-0.005096502360291301,-0.007619805029658654,-0.0072883698356805155,-0.006576208780791189,-0.002811755743124881,-0.0041166726821686905,-0.00043567558108071496,-0.005642692296093562,-0.004387830667086374,-0.004300288274155355,-0.0022957169104806142,-0.007067034171656184,-0.00826376576091798,-0.004750924165041987,-0.003545916841010812,-0.0023764331128129693,-0.004101445252542945,-0.006813656860955831,-0.005678216944989336,-0.005401013513742955,-0.012442951339245044,-0.005746720892179937,-0.008305929049429499,-0.008391131013367237
+52.401256,4.954599,-0.0028518335133377636,-0.0033768785056312233,0.002629987221470059,-0.0016791231833100002,-0.005561134550099239,-0.004122535038345208,-0.00182499671514876,-0.005005558360369318,0.00026826818333890385,-0.005028340212074469,-0.002462961479239531,0.0034340088798482968,-0.0026107380414714648,-0.0010361748864895597,0.002923599604490965,-0.0005177967562987236,0.0014077611707566876,-0.0017634149892639334,0.0023910633458811953,0.0024202161104161027,0.0012906598218106729,-0.004549041421757757,0.0017551022395917606,0.00046468573762437055,4.189404991049913e-05,-0.0020864790722445784,-0.0022954506867263265,-0.007695663302791547,0.0001520694971005388,-0.004515650288171629,-0.0011150588153719463,-0.008618381826027937,-0.003368660060541421,-0.0021702124308341296,-0.0063280104999751605,-0.008005438827340259,-0.003996502360291301,-0.006119805029658654,-0.006188369835680515,-0.005676208780791189,-0.0037117557431248813,-0.0009166726821686906,0.002664324418919285,-0.004642692296093562,-0.0020878306670863737,-0.0005002882741553551,-0.0010957169104806143,-0.004367034171656184,-0.00566376576091798,-0.0021509241650419873,-0.0012459168410108112,-0.0012764331128129695,-0.006301445252542946,-0.005813656860955831,-0.003478216944989335,-0.005801013513742955,-0.004842951339245045,-0.0039467208921799375,-0.006905929049429499,-0.0014911310133672382
+52.400934,4.955185,-0.0011518335133377637,-0.0031768785056312233,0.0003299872214700591,-0.0001791231833100002,-0.0013611345500992387,-0.0004225350383452085,-0.00172499671514876,-0.00010555836036931822,0.0011682681833389038,-0.0017283402120744696,0.00043703852076046914,0.002334008879848297,0.001389261958528535,-0.00013617488648955947,0.0003235996044909648,0.0019822032437012763,0.0009077611707566876,0.0013365850107360665,0.0022910633458811955,0.002020216110416103,0.004190659821810673,-0.0008490414217577574,0.0029551022395917603,0.0020646857376243706,0.0005418940499104989,0.0029135209277554213,0.00030454931327367343,-0.003895663302791548,-0.0037479305028994612,0.0017843497118283703,-0.0014150588153719462,-0.003318381826027936,-0.00046866006054142146,0.00032978756916587047,-0.0033280104999751604,-0.002005438827340259,0.001203497639708699,-0.0019198050296586543,-0.0004883698356805156,-0.0019762087807911888,-0.0012117557431248812,0.0008833273178313094,-0.0008356755810807151,-0.0018426922960935626,0.0008121693329136265,0.0015997117258446448,0.0014042830895193857,-0.001067034171656184,-0.00226376576091798,0.0027490758349580126,0.0022540831589891886,0.0019235668871870307,0.00019855474745705435,-0.001413656860955831,2.1783055010664797e-05,-0.0005010135137429547,-0.0007429513392450453,-0.00014672089217993717,-0.0023059290494294987,-0.0007911310133672381
+52.40087,4.955284,0.0004481664866622362,-0.0020768785056312234,-0.0002700127785299409,-0.0033791231833100004,-0.0007611345500992386,-0.0027225350383452084,-0.00402499671514876,-0.0026055583603693186,-0.0035317318166610966,-0.00422834021207447,-0.006262961479239531,-0.009265991120151702,-0.005710738041471465,-0.0018361748864895596,0.003423599604490965,-0.012017796756298724,-0.010792238829243312,-0.008463414989263934,-0.009408936654118806,-0.011479783889583898,0.008490659821810673,-0.008649041421757757,-0.006544897760408239,-0.0065353142623756294,-0.006858105950089501,-0.004086479072244579,-0.004595450686726326,-0.007395663302791547,-0.010747930502899461,-0.0035156502881716293,-0.008215058815371946,-0.006618381826027937,-0.006568660060541422,-0.004170212430834129,-0.007128010499975161,-0.01080543882734026,-0.0074965023602913015,-0.006319805029658654,-0.005588369835680515,-0.010476208780791188,-0.0063117557431248816,-0.011216672682168692,-0.007935675581080714,-0.010142692296093563,-0.011487830667086373,-0.013700288274155354,-0.011195716910480614,-0.016467034171656184,-0.014863765760917979,-0.009350924165041987,-0.009945916841010812,-0.010276433112812969,-0.0055014452525429455,-0.007813656860955831,-0.009878216944989335,-0.006101013513742955,-0.004842951339245045,-0.005746720892179937,-0.007105929049429498,-0.006391131013367238
+52.400782,4.955441,-0.0007518335133377639,-0.004276878505631224,-0.001870012778529941,-0.0026791231833100003,-0.002761134550099239,-0.0039225350383452085,-0.00642499671514876,-0.005305558360369318,-0.006031731816661097,-0.008928340212074469,-0.00636296147923953,-0.010065991120151704,-0.008310738041471465,-0.00953617488648956,-0.010376400395509036,-0.012117796756298723,-0.013092238829243312,-0.010963414989263932,-0.012008936654118806,-0.012379783889583898,-0.008509340178189329,-0.008649041421757757,-0.009144897760408239,-0.008835314262375629,-0.0102581059500895,-0.005186479072244579,-0.007595450686726327,-0.007895663302791548,-0.009247930502899461,-0.004515650288171629,-0.006915058815371946,-0.007718381826027937,-0.00866866006054142,-0.006570212430834129,-0.00812801049997516,-0.008305438827340259,-0.0090965023602913,-0.007819805029658655,-0.007088369835680516,-0.012776208780791188,-0.00831175574312488,-0.01281667268216869,-0.010635675581080715,-0.010942692296093562,-0.016887830667086372,-0.013100288274155355,-0.016295716910480613,-0.014667034171656183,-0.01646376576091798,-0.012350924165041986,-0.012345916841010812,-0.01307643311281297,-0.007201445252542946,-0.01311365686095583,-0.009478216944989334,-0.006501013513742954,-0.008442951339245044,-0.007446720892179937,-0.008705929049429498,-0.006691131013367239
+52.400767,4.955271,-0.0024518335133377634,-0.00027687850563122356,0.00022998722147005908,-0.00257912318331,-0.006561134550099239,-0.0049225350383452085,-0.0029249967151487597,-0.003005558360369318,-0.001631731816661096,-0.007628340212074469,-0.01406296147923953,-0.007065991120151703,-0.0052107380414714655,-0.00793617488648956,-0.007976400395509035,-0.009117796756298722,-0.008392238829243313,-0.007363414989263933,-0.0073089366541188045,-0.009979783889583899,-0.008309340178189328,-0.009149041421757757,-0.00524489776040824,-0.004535314262375629,-0.008258105950089502,-0.004086479072244579,-0.006295450686726326,-0.011395663302791547,-0.009847930502899461,-0.009015650288171629,-0.007315058815371946,-0.007218381826027936,-0.007268660060541421,-0.00597021243083413,-0.00552801049997516,-0.007105438827340258,-0.006996502360291301,-0.008219805029658654,-0.006588369835680515,-0.010576208780791189,-0.006211755743124881,-0.008316672682168692,-0.010035675581080716,-0.010942692296093562,-0.009387830667086374,-0.010600288274155354,-0.011195716910480614,-0.009467034171656183,-0.012563765760917979,-0.008250924165041987,-0.008745916841010812,-0.005876433112812969,-0.006601445252542946,-0.00941365686095583,-0.005778216944989335,-0.007001013513742955,-0.008942951339245045,-0.006446720892179937,-0.0062059290494294985,-0.007091131013367238
+52.400697,4.955597,-0.00015183351333776388,-0.0011768785056312236,-0.0019700127785299408,0.00022087681668999976,-0.0014611345500992387,-0.0021225350383452086,-0.0038249967151487603,-0.0019055583603693183,-0.002731731816661096,-0.00722834021207447,-0.003662961479239531,-0.004865991120151703,-0.006410738041471465,-0.01183617488648956,-0.006276400395509036,-0.006417796756298723,-0.008992238829243313,-0.006863414989263934,-0.007508936654118805,-0.008579783889583898,-0.004909340178189327,-0.006549041421757757,-0.004244897760408239,-0.004835314262375629,-0.0067581059500895005,-0.002986479072244578,-0.0036954506867263267,-0.006195663302791548,-0.006647930502899461,-0.0005156502881716299,-0.007115058815371946,-0.005318381826027936,-0.0031686600605414215,-0.0033702124308341293,-0.00672801049997516,-0.006105438827340258,-0.002696502360291301,-0.004519805029658654,-0.004488369835680515,-0.00787620878079119,-0.0037117557431248813,-0.0074166726821686905,-0.005735675581080716,-0.006442692296093563,-0.013587830667086374,-0.0007002882741553552,-0.007795716910480614,-0.009667034171656184,-0.01136376576091798,-0.004950924165041988,-0.006245916841010812,-0.006176433112812969,-0.005901445252542946,-0.008013656860955832,-0.006678216944989336,-0.0013010135137429546,-0.0018429513392450453,-0.004146720892179937,-0.0018059290494294986,-0.0012911310133672381
+52.400621,4.955724,0.003948166486662236,0.0011231214943687763,0.002429987221470059,0.00272087681669,0.0030388654499007616,0.0024774649616547914,0.00027500328485124004,0.0022944416396306817,0.001968268183338904,-0.0025283402120744695,0.0005370385207604691,-0.0005659911201517031,0.002089261958528535,-0.0038361748864895596,-0.0002764003955090352,-0.0035177967562987234,-0.0035922388292433122,-0.0017634149892639334,-0.0021089366541188043,-0.002979783889583897,0.00019065982181067282,-0.0023490414217577577,0.0010551022395917605,-0.0013353142623756292,-0.001758105950089501,0.0014135209277554215,0.00030454931327367343,-0.0005956633027915479,-0.0014479305028994613,0.0020843497118283702,-0.0020150588153719463,-0.00041838182602793616,0.00043133993945857857,0.0008297875691658705,-0.0008280104999751603,-0.0015054388273402586,-0.000396502360291301,-0.0010198050296586544,-0.0004883698356805156,-0.0020762087807911886,-0.00021175574312488107,-0.0028166726821686906,-0.004935675581080715,-0.0017426922960935625,-0.005587830667086373,-0.006400288274155355,-0.0032957169104806143,-0.004767034171656184,-0.00716376576091798,-0.0011509241650419872,-0.0036459168410108113,0.0010235668871870305,0.0004985547474570544,-0.004713656860955831,-0.002078216944989335,0.0003989864862570454,-0.00014295133924504527,-0.0005467208921799372,-0.0001059290494294985,-0.001091131013367238
+52.400559,4.955782,-0.0028518335133377636,-0.005876878505631224,-0.003370012778529941,-0.0027791231833100005,-0.0035611345500992393,-0.0031225350383452086,-0.00552499671514876,-0.0032055583603693184,-0.0031317318166610964,-0.00802834021207447,-0.004862961479239531,-0.004565991120151703,-0.005410738041471465,-0.0059361748864895595,-0.0064764003955090355,-0.007917796756298723,-0.007292238829243312,-0.006463414989263934,-0.007008936654118805,-0.006279783889583897,-0.004809340178189327,-0.007949041421757758,-0.00584489776040824,-0.00593531426237563,-0.007158105950089501,-0.004686479072244579,-0.005395450686726326,-0.008795663302791547,-0.00944793050289946,-0.003815650288171629,-0.008715058815371947,-0.008118381826027936,-0.006468660060541422,-0.004770212430834129,-0.00752801049997516,-0.008405438827340258,-0.006096502360291301,-0.008419805029658655,-0.006688369835680516,-0.009376208780791189,-0.005211755743124881,-0.00851667268216869,-0.010235675581080716,-0.009642692296093562,-0.010487830667086374,-0.011100288274155354,-0.007895716910480615,-0.010767034171656184,-0.01136376576091798,-0.006150924165041987,-0.007045916841010812,-0.0068764331128129685,-0.0058014452525429454,-0.00831365686095583,-0.006378216944989336,-0.005201013513742954,-0.006142951339245046,-0.006346720892179937,-0.0059059290494294986,-0.005591131013367238
+52.400521,4.955692,-0.0021518335133377635,-0.009876878505631223,-0.0037700127785299407,-0.00227912318331,-0.005061134550099239,-0.0029225350383452085,-0.004924996715148761,-0.0036055583603693177,-0.004131731816661096,-0.00792834021207447,-0.006462961479239531,-0.0060659911201517034,-0.005910738041471466,-0.00963617488648956,-0.008376400395509036,-0.009417796756298724,-0.008092238829243313,-0.013263414989263932,-0.006608936654118805,-0.009079783889583897,-0.006509340178189328,-0.006849041421757757,-0.007444897760408239,-0.006435314262375629,-0.0084581059500895,-0.003586479072244579,-0.007995450686726326,-0.010095663302791548,-0.01164793050289946,-0.0036156502881716296,-0.007815058815371947,-0.007618381826027936,-0.007268660060541421,-0.00607021243083413,-0.00942801049997516,-0.007605438827340259,-0.005896502360291301,-0.009219805029658655,-0.007888369835680515,-0.007376208780791189,-0.00851175574312488,-0.00911667268216869,-0.010035675581080716,-0.010542692296093562,-0.010787830667086374,-0.009000288274155355,-0.010195716910480615,-0.012767034171656184,-0.014963765760917982,-0.008450924165041987,-0.010045916841010812,-0.009176433112812969,-0.008301445252542946,-0.008913656860955832,-0.008778216944989335,-0.006601013513742955,-0.007942951339245045,-0.007746720892179938,-0.009605929049429498,-0.010091131013367238
+52.400497,4.955868,-0.0006518335133377637,-0.0031768785056312233,-0.001170012778529941,-0.0016791231833100002,-0.0015611345500992386,-0.0025225350383452083,-0.00192499671514876,-0.0026055583603693186,-0.002631731816661096,-0.0068283402120744695,-0.003462961479239531,-0.0031659911201517028,-0.004910738041471466,-0.006136174886489559,-0.006976400395509035,-0.007717796756298724,-0.005892238829243312,-0.005063414989263933,-0.0024089366541188042,-0.005279783889583897,-0.0008093401781893272,-0.005049041421757758,-0.0032448977604082395,-0.0035353142623756294,-0.0063581059500895,-0.0017864790722445785,-0.004195450686726326,-0.007195663302791548,-0.006847930502899461,-0.003115650288171629,-0.005915058815371946,-0.007618381826027936,-0.004268660060541421,-0.0024702124308341295,-0.006828010499975161,-0.007105438827340258,-0.004896502360291301,-0.007819805029658655,-0.005688369835680516,-0.007576208780791188,-0.005211755743124881,-0.009816672682168692,-0.007835675581080715,-0.010842692296093562,-0.009287830667086374,-0.008900288274155356,-0.009495716910480614,-0.010567034171656184,-0.01126376576091798,-0.006950924165041988,-0.0067459168410108124,-0.00667643311281297,-0.006701445252542945,-0.011013656860955831,-0.005878216944989335,-0.004401013513742955,-0.005942951339245045,-0.0069467208921799375,-0.007605929049429498,-0.005291131013367238
+52.400464,4.955943,-0.002951833513337764,-0.0033768785056312233,-0.0036700127785299413,-0.0036791231833100003,-0.0025611345500992384,-0.0028225350383452087,-0.005924996715148761,-0.004405558360369318,-0.0025317318166610966,-0.007428340212074469,-0.00466296147923953,-0.004265991120151703,-0.005110738041471465,-0.00563617488648956,-0.007276400395509036,-0.007817796756298723,-0.008092238829243313,-0.006963414989263934,-0.009108936654118804,-0.007379783889583898,-0.006709340178189326,-0.005449041421757758,-0.00414489776040824,-0.006435314262375629,-0.004958105950089501,-0.004186479072244578,-0.0038954506867263264,-0.008495663302791548,-0.010447930502899461,-0.0033156502881716296,-0.008015058815371946,-0.007918381826027936,-0.008068660060541421,-0.006870212430834129,-0.007728010499975161,-0.009705438827340259,-0.0090965023602913,-0.007519805029658654,-0.0062883698356805155,-0.011376208780791187,-0.0076117557431248815,-0.01081667268216869,-0.009835675581080715,-0.009742692296093562,-0.010087830667086373,-0.010400288274155355,-0.010595716910480614,-0.010367034171656183,-0.01246376576091798,-0.009150924165041987,-0.008145916841010811,-0.00727643311281297,-0.006601445252542946,-0.010613656860955832,-0.007678216944989336,-0.008201013513742954,-0.007342951339245046,-0.007046720892179937,-0.007905929049429498,-0.008291131013367238
+52.400463,4.955879,-0.0028518335133377636,-0.0025768785056312234,-0.002370012778529941,-0.00257912318331,-0.004161134550099239,-0.0029225350383452085,-0.0038249967151487603,-0.002405558360369318,-0.003031731816661096,-0.006728340212074469,-0.005162961479239531,-0.004565991120151703,-0.004310738041471466,-0.0072361748864895594,-0.006076400395509035,-0.008917796756298724,-0.007192238829243313,-0.0044634149892639335,-0.007108936654118805,-0.007479783889583897,-0.004309340178189327,-0.004749041421757757,-0.005044897760408239,-0.00713531426237563,-0.008258105950089502,-0.0030864790722445784,-0.006895450686726326,-0.007195663302791548,-0.00624793050289946,-0.0036156502881716296,-0.005515058815371946,-0.009618381826027936,-0.0056686600605414215,-0.0018702124308341294,-0.00582801049997516,-0.0065054388273402585,-0.0089965023602913,-0.008019805029658655,-0.007788369835680516,-0.010976208780791188,-0.007111755743124881,-0.01051667268216869,-0.010435675581080715,-0.007642692296093562,-0.013287830667086374,-0.010300288274155354,-0.010395716910480614,-0.013567034171656184,-0.01226376576091798,-0.009450924165041986,-0.007945916841010812,-0.009476433112812968,-0.008501445252542945,-0.01081365686095583,-0.009978216944989335,-0.007001013513742955,-0.006442951339245046,-0.006846720892179937,-0.008305929049429499,-0.004991131013367238
+52.400417,4.956003,-0.004551833513337764,-0.006876878505631224,-0.003870012778529941,-0.00357912318331,-0.006161134550099239,-0.005122535038345208,-0.006924996715148761,-0.005105558360369318,-0.005231731816661096,-0.00792834021207447,-0.00496296147923953,-0.002865991120151703,-0.0039107380414714656,-0.006136174886489559,-0.006576400395509036,-0.007817796756298723,-0.006292238829243312,-0.0054634149892639336,-0.006508936654118805,-0.005279783889583897,-0.005809340178189327,-0.009149041421757757,-0.004544897760408239,-0.005735314262375629,-0.007158105950089501,-0.004686479072244579,-0.006195450686726326,-0.009195663302791547,-0.00974793050289946,-0.00661565028817163,-0.010215058815371946,-0.008918381826027937,-0.008568660060541421,-0.005570212430834129,-0.010728010499975162,-0.009405438827340257,-0.0095965023602913,-0.010419805029658655,-0.008788369835680515,-0.010576208780791189,-0.007011755743124882,-0.009916672682168691,-0.009135675581080716,-0.010242692296093562,-0.010087830667086373,-0.009800288274155355,-0.008295716910480614,-0.009467034171656183,-0.01406376576091798,-0.008450924165041987,-0.007645916841010812,-0.006576433112812969,-0.009601445252542945,-0.013013656860955831,-0.009578216944989334,-0.009701013513742954,-0.010642951339245045,-0.010146720892179937,-0.009105929049429497,-0.011791131013367238
+52.400431,4.955856,-0.005751833513337763,-0.008376878505631223,-0.005070012778529941,-0.00667912318331,-0.006061134550099239,-0.008622535038345208,-0.009524996715148759,-0.007605558360369319,-0.009231731816661096,-0.010428340212074469,-0.007862961479239532,-0.008365991120151704,-0.010710738041471466,-0.00763617488648956,-0.009276400395509036,-0.011817796756298724,-0.011392238829243312,-0.013263414989263932,-0.011408936654118806,-0.007079783889583897,-0.008409340178189327,-0.010449041421757758,-0.007444897760408239,-0.00773531426237563,-0.009758105950089501,-0.0075864790722445785,-0.011495450686726326,-0.012495663302791548,-0.010747930502899461,-0.006415650288171629,-0.010815058815371946,-0.011018381826027936,-0.009368660060541422,-0.007470212430834129,-0.008528010499975161,-0.012805438827340258,-0.0086965023602913,-0.009219805029658655,-0.014888369835680516,-0.011676208780791189,-0.010411755743124881,-0.012016672682168692,-0.009635675581080715,-0.014242692296093562,-0.013287830667086374,-0.014000288274155354,-0.013995716910480615,-0.012967034171656185,-0.01826376576091798,-0.012950924165041988,-0.012245916841010812,-0.01327643311281297,-0.012601445252542946,-0.012913656860955832,-0.012978216944989334,-0.011801013513742954,-0.011042951339245044,-0.010646720892179938,-0.009805929049429498,-0.011991131013367238
+52.400365,4.95616,-0.00035183351333776375,-0.0035768785056312234,-0.0016700127785299408,-0.00047912318331000013,-0.0017611345500992387,-0.0021225350383452086,-0.00222499671514876,-0.0032055583603693184,-0.0028317318166610965,-0.004728340212074469,-0.003162961479239531,-0.002665991120151703,-0.0026107380414714648,-0.0027361748864895598,-0.002376400395509035,-0.0045177967562987234,-0.006892238829243312,-0.004163414989263934,-0.004608936654118805,-0.006179783889583897,-0.0035093401781893267,-0.005049041421757758,-0.0017448977604082399,-0.003135314262375629,-0.005158105950089501,-0.0024864790722445786,-0.0024954506867263266,-0.003795663302791548,-0.005147930502899461,-0.0022156502881716294,-0.006115058815371946,-0.005718381826027937,-0.0038686600605414216,-0.0028702124308341292,-0.00442801049997516,-0.006705438827340259,-0.004596502360291301,-0.006219805029658654,-0.005888369835680515,-0.00847620878079119,-0.0046117557431248814,-0.00631667268216869,-0.010035675581080716,-0.006742692296093563,-0.007787830667086373,-0.007900288274155355,-0.006095716910480615,-0.009167034171656183,-0.00996376576091798,-0.005350924165041987,-0.004845916841010812,-0.00517643311281297,-0.005201445252542946,-0.007713656860955831,-0.006478216944989335,-0.005401013513742955,-0.007142951339245046,-0.005546720892179937,-0.006805929049429498,-0.006291131013367238
+52.400283,4.956254,-0.0034518335133377634,-0.006776878505631224,-0.005070012778529941,-0.00547912318331,-0.0042611345500992385,-0.004522535038345208,-0.009224996715148759,-0.003705558360369318,-0.005431731816661097,-0.009228340212074469,-0.003762961479239531,-0.006365991120151703,-0.0062107380414714655,-0.01243617488648956,-0.0041764003955090355,-0.008417796756298723,-0.008392238829243313,-0.007463414989263934,-0.006408936654118805,-0.008579783889583898,-0.0051093401781893266,-0.006649041421757758,-0.005144897760408239,-0.00713531426237563,-0.0113581059500895,-0.003286479072244579,-0.006795450686726327,-0.005695663302791547,-0.007047930502899461,-0.00801565028817163,-0.009915058815371946,-0.012118381826027936,-0.007968660060541422,-0.00567021243083413,-0.009928010499975161,-0.012305438827340257,-0.0092965023602913,-0.009819805029658655,-0.008888369835680516,-0.013376208780791187,-0.009511755743124881,-0.009916672682168691,-0.010235675581080716,-0.012142692296093563,-0.014487830667086374,-0.010100288274155355,-0.009995716910480614,-0.013267034171656185,-0.01586376576091798,-0.009550924165041988,-0.009645916841010812,-0.004176433112812969,-0.008401445252542945,-0.007013656860955831,-0.008878216944989335,0.0006989864862570454,-0.011642951339245044,-0.006146720892179937,-0.008805929049429497,-0.004691131013367238
+52.40024,4.956419,0.006348166486662236,0.003923121494368776,0.005929987221470059,0.00602087681669,0.005038865449900761,0.004977464961654791,0.0030750032848512396,0.004994441639630682,0.0062682681833389035,0.0023716597879255303,0.00523703852076047,0.005634008879848297,0.004489261958528535,0.00386382511351044,0.003323599604490965,0.0024822032437012767,0.0026077611707566875,0.0041365850107360665,0.004191063345881195,0.0029202161104161027,0.003990659821810673,0.0027509585782422427,0.00535510223959176,0.00416468573762437,0.003341894049910499,0.006413520927755422,0.0045045493132736735,0.0018043366972084521,0.0018520694971005387,0.00548434971182837,0.0022849411846280537,0.0022816181739720638,0.0033313399394585786,0.00522978756916587,0.0020719895000248395,0.0003945611726597414,0.003603497639708699,0.0024801949703413453,0.0031116301643194844,0.00022379121920881135,0.003588244256875119,0.0012833273178313096,0.0006643244189192851,0.0009573077039064374,0.00041216933291362656,0.0006997117258446448,0.0017042830895193856,-6.703417165618395e-05,-0.0024637657609179802,0.002849075834958013,0.0024540831589891883,0.0030235668871870305,0.003298554747457054,-1.3656860955830953e-05,0.0012217830550106646,0.0027989864862570453,0.0016570486607549546,0.002353279107820063,0.0021940709505705014,0.002808868986632762
+52.400174,4.956437,-0.003351833513337763,-0.0033768785056312233,-0.002670012778529941,-0.00257912318331,-0.0039611345500992386,-0.0031225350383452086,-0.00512499671514876,-0.004005558360369318,-0.0019317318166610959,-0.00462834021207447,-0.003762961479239531,0.000134008879848297,-0.004410738041471465,-0.0034361748864895594,-0.004376400395509035,-0.005717796756298723,-0.0026922388292433125,-0.0047634149892639335,-0.007508936654118805,-0.003979783889583897,0.0067906598218106734,-0.006949041421757758,-0.0038448977604082393,-0.0032353142623756295,-0.005358105950089501,-0.002986479072244578,-0.004295450686726326,-0.010295663302791547,-0.00964793050289946,-0.004515650288171629,-0.006515058815371946,-0.007518381826027936,-0.0069686600605414215,-0.00407021243083413,-0.00832801049997516,-0.00850543882734026,-0.007396502360291301,-0.007319805029658654,-0.006988369835680516,-0.009276208780791188,-0.0066117557431248815,-0.00821667268216869,-0.010235675581080716,-0.011142692296093562,-0.009387830667086374,-0.008800288274155355,-0.006395716910480615,-0.0075670341716561835,-0.010863765760917979,-0.005850924165041987,-0.005545916841010812,-0.00577643311281297,-0.006401445252542945,-0.00881365686095583,-0.008078216944989334,-0.007801013513742954,-0.008842951339245045,-0.006146720892179937,-0.009305929049429498,-0.009991131013367238
+52.399456,4.957488,-0.0054518335133377635,-0.009676878505631224,-0.002270012778529941,-0.00357912318331,-0.0062611345500992385,-0.005722535038345209,-0.00672499671514876,-0.006405558360369318,-0.003331731816661096,-0.00942834021207447,-0.00736296147923953,-0.005465991120151703,-0.007410738041471465,-0.00783617488648956,-0.007776400395509035,-0.008817796756298723,-0.007492238829243313,-0.007463414989263934,-0.005808936654118805,-0.0055797838895838975,-0.0068093401781893275,-0.011749041421757757,-0.006244897760408239,-0.006735314262375629,-0.007558105950089501,-0.006786479072244578,-0.006695450686726326,-0.009495663302791547,-0.01174793050289946,-0.006415650288171629,-0.007615058815371946,-0.007818381826027936,-0.007568660060541421,-0.0052702124308341295,-0.008528010499975161,-0.011705438827340257,-0.0081965023602913,-0.008919805029658655,-0.009188369835680516,-0.013276208780791188,-0.00941175574312488,-0.00881667268216869,-0.016235675581080716,-0.012242692296093562,-0.012487830667086374,-0.014600288274155354,-0.009295716910480614,-0.014267034171656184,-0.015563765760917982,-0.010050924165041986,-0.011245916841010811,-0.011176433112812969,-0.009801445252542946,-0.010913656860955832,-0.010678216944989334,-0.010501013513742954,-0.013942951339245044,-0.011046720892179937,-0.011705929049429499,-0.012691131013367237
+52.399463,4.957445,-0.00015183351333776388,0.00022312149436877645,-0.000970012778529941,-0.00107912318331,-0.0011611345500992386,-0.0012225350383452086,-0.00202499671514876,0.00019444163963068176,-0.000831731816661096,-0.0037283402120744692,-0.003162961479239531,-0.001565991120151703,-0.002710738041471465,-0.00533617488648956,-0.004976400395509035,-0.0036177967562987237,-0.0004922388292433125,-0.0018634149892639334,0.0012910633458811955,-0.0007797838895838971,0.000990659821810673,-0.0039490414217577575,0.0024551022395917603,-0.0014353142623756295,-0.004858105950089501,-8.647907224457857e-05,-0.00019545068672632664,-0.0009956633027915478,-0.0031479305028994614,-0.00151565028817163,-0.002615058815371946,-0.0049183818260279365,-0.0019686600605414214,-0.0010702124308341295,7.198950002483952e-05,-0.0039054388273402586,-0.002196502360291301,-0.0028198050296586548,-0.0022883698356805154,-0.00047620878079118875,-0.002311755743124881,-0.0036166726821686905,-0.011135675581080716,-0.004542692296093563,-0.0039878306670863735,-0.006500288274155355,-0.002395716910480614,-0.00026703417165618393,-0.00646376576091798,-0.0021509241650419873,-0.002945916841010812,-0.003276433112812969,-0.002701445252542946,-0.01001365686095583,-0.003278216944989335,-0.0035010135137429547,-0.004442951339245046,-0.003746720892179937,-0.005005929049429498,-0.004191131013367239
+52.399414,4.957565,-0.0028518335133377636,-0.004576878505631224,-0.0024700127785299408,-0.00227912318331,-0.0036611345500992386,-0.0038225350383452083,-0.0065249967151487604,-0.003705558360369318,-0.0007317318166610962,-0.0061283402120744694,-0.0044629614792395305,-0.0030659911201517034,-0.004010738041471465,-0.0031361748864895595,-0.003976400395509035,-0.005017796756298723,-0.004892238829243312,-0.004163414989263934,-0.0022089366541188046,-0.0045797838895838975,-0.0025093401781893267,-0.006849041421757757,-0.0017448977604082399,-0.004135314262375629,-0.004858105950089501,-0.0030864790722445784,-0.005495450686726327,-0.007095663302791547,-0.006147930502899461,-0.004515650288171629,-0.005615058815371946,-0.008018381826027937,-0.005468660060541422,-0.0035702124308341293,-0.00582801049997516,-0.008905438827340259,-0.007196502360291302,-0.008519805029658656,-0.007988369835680516,-0.009876208780791188,-0.006911755743124881,-0.0054166726821686904,-0.008235675581080714,-0.014042692296093562,-0.009187830667086373,-0.007300288274155355,-0.006895716910480614,-0.007867034171656184,-0.01286376576091798,-0.006950924165041988,-0.009145916841010812,-0.00667643311281297,-0.008701445252542945,-0.009613656860955831,-0.008578216944989335,-0.006101013513742955,-0.008642951339245045,-0.009246720892179938,-0.008405929049429498,-0.006691131013367239
+52.39935,4.957656,-0.0009518335133377636,-0.0016768785056312237,-0.00017001277852994086,-0.00157912318331,-0.0023611345500992387,-0.0030225350383452083,-0.0035249967151487604,-0.002405558360369318,0.00046826818333890394,-0.0030283402120744696,-0.003962961479239531,-0.001965991120151703,-0.001910738041471465,-0.00033617488648955956,-0.007076400395509035,-0.004817796756298723,-0.0027922388292433123,-0.002963414989263933,-8.936654118804556e-06,-0.003279783889583897,0.00019065982181067282,-0.004949041421757758,0.0004551022395917605,-0.004735314262375629,-0.004858105950089501,-0.0003864790722445787,-0.0031954506867263267,-0.004095663302791547,-0.0029479305028994613,-0.0018156502881716298,-0.0038150588153719463,-0.005218381826027936,-0.0015686600605414212,-0.0003702124308341295,-0.00732801049997516,-0.0062054388273402586,-0.0037965023602913013,-0.005419805029658654,-0.005588369835680515,-0.007376208780791189,-0.0035117557431248807,-0.005216672682168691,-0.007135675581080716,-0.007642692296093562,-0.009087830667086374,-0.005300288274155355,-0.010495716910480615,-0.006467034171656184,-0.00916376576091798,-0.004050924165041988,-0.005945916841010812,-0.0071764331128129685,-0.005701445252542945,-0.007813656860955831,-0.005678216944989336,-0.0026010135137429545,-0.004442951339245046,-0.0062467208921799374,-0.005405929049429498,-0.0057911310133672384
+52.399247,4.957809,-0.0013518335133377638,-0.005276878505631224,-0.004570012778529941,-0.0008791231833100003,-0.002461134550099239,-0.0028225350383452087,-0.00452499671514876,-0.0036055583603693177,-0.003231731816661096,-0.0071283402120744695,-0.00436296147923953,-0.004565991120151703,-0.003810738041471465,-0.0059361748864895595,-0.006676400395509035,-0.007817796756298723,-0.006392238829243313,-0.006563414989263934,-0.005408936654118805,-0.006979783889583897,-0.004009340178189327,-0.007049041421757758,-0.0036448977604082397,-0.00633531426237563,-0.007558105950089501,-0.0031864790722445787,-0.0047954506867263266,-0.009395663302791547,-0.007547930502899461,-0.00441565028817163,-0.007915058815371946,-0.007418381826027937,-0.007568660060541421,-0.006570212430834129,-0.00952801049997516,-0.011005438827340258,-0.007396502360291301,-0.008419805029658655,-0.0072883698356805155,-0.011576208780791188,-0.006511755743124881,-0.009216672682168692,-0.010135675581080715,-0.010742692296093563,-0.010387830667086373,-0.009200288274155356,-0.008395716910480614,-0.006767034171656184,-0.011563765760917982,-0.006550924165041987,-0.007845916841010811,-0.00787643311281297,-0.005601445252542946,-0.01051365686095583,-0.008478216944989335,-0.009401013513742954,-0.007242951339245045,-0.006646720892179937,-0.008205929049429498,-0.008591131013367238
+52.399248,4.957489,-0.0002518335133377637,-0.0026768785056312232,-0.001870012778529941,0.0005208768166899998,-0.0012611345500992386,-0.0005225350383452085,-0.00272499671514876,-0.00020555836036931826,0.00046826818333890394,-0.004428340212074469,-0.0014629614792395307,-0.0009659911201517031,-0.002010738041471465,-0.0031361748864895595,-0.0025764003955090348,-0.0038177967562987233,-0.004092238829243313,-0.0030634149892639333,-0.0013089366541188044,-0.003679783889583897,-0.001409340178189327,-0.0039490414217577575,0.0004551022395917605,-0.0017353142623756294,-0.002358105950089501,0.0003135209277554214,-0.0010954506867263264,-0.003995663302791548,-0.003847930502899461,-0.0007156502881716295,-0.0035150588153719463,-0.003318381826027936,-0.0019686600605414214,-0.0008702124308341294,-0.0030280104999751605,-0.004405438827340258,-0.001996502360291301,-0.002919805029658654,-0.0019883698356805155,-0.005676208780791189,-0.003111755743124881,-0.0031166726821686905,-0.004635675581080715,-0.004842692296093563,-0.003787830667086374,-0.007400288274155355,-0.003095716910480614,-0.0035670341716561842,-0.00826376576091798,-0.009450924165041986,-0.002245916841010811,-0.00487643311281297,-0.0015014452525429457,-0.004213656860955831,-0.002478216944989335,-0.0010010135137429545,-0.002142951339245045,-0.001646720892179937,-0.0027059290494294984,-0.0034911310133672385
+52.39917,4.957847,-0.005051833513337763,0.0018231214943687764,-0.006370012778529941,-0.0034791231833099998,-0.004861134550099239,-0.0027225350383452084,-0.00452499671514876,-0.003105558360369318,-0.002931731816661096,-0.00622834021207447,-0.003762961479239531,-0.005965991120151703,-0.003010738041471465,-0.0027361748864895598,-0.0064764003955090355,-0.010017796756298724,-0.006792238829243313,-0.006563414989263934,-0.005908936654118805,-0.004179783889583897,-0.002309340178189327,-0.0042490414217577575,-0.0012448977604082394,-0.003735314262375629,-0.0038581059500895007,-0.0018864790722445787,-0.0026954506867263267,-0.005595663302791548,-0.00524793050289946,-0.0026156502881716295,-0.0060150588153719455,-0.0065183818260279355,-0.003668660060541421,-0.0028702124308341292,-0.00462801049997516,-0.007205438827340259,-0.004996502360291301,-0.006519805029658654,-0.005788369835680516,-0.007576208780791188,-0.006011755743124882,-0.006216672682168691,-0.005435675581080715,-0.0040426922960935625,-0.007687830667086374,-0.0068002882741553545,-0.0076957169104806145,-0.0052670341716561835,-0.00996376576091798,-0.005150924165041988,-0.0050459168410108115,-0.0015764331128129694,-0.0058014452525429454,-0.00911365686095583,-0.007278216944989336,-0.003201013513742955,-0.005842951339245045,-0.005046720892179937,-0.0038059290494294987,-0.008291131013367238
+52.399214,4.957412,-0.001251833513337764,-0.0024768785056312236,-0.001370012778529941,0.0008208768166899998,-0.002161134550099239,-0.0016225350383452086,-0.00222499671514876,-0.0010055583603693183,0.0014682681833389037,-0.0037283402120744692,-0.001962961479239531,0.002334008879848297,-0.002310738041471465,-0.0027361748864895598,-0.0025764003955090348,-0.0036177967562987237,0.0012077611707566876,-0.0019634149892639335,0.0008910633458811955,-0.0005797838895838973,-0.0003093401781893272,-0.004649041421757758,-0.0002448977604082394,-0.002135314262375629,-0.003958105950089501,-0.0009864790722445786,-0.0028954506867263268,-0.004795663302791547,-0.005547930502899461,-0.0026156502881716295,-0.005115058815371946,-0.005118381826027936,-0.0021686600605414215,-0.0004702124308341295,-0.004528010499975161,-0.005105438827340259,-0.0032965023602913013,-0.004019805029658654,-0.0035883698356805153,-0.0051762087807911885,-0.002411755743124881,-0.0021166726821686905,-0.005435675581080715,-0.004742692296093563,-0.0020878306670863737,-0.002300288274155355,-0.0013957169104806143,-0.004267034171656184,-0.00886376576091798,-0.003550924165041987,-0.0036459168410108113,-0.0031764331128129697,-0.003301445252542946,-0.005213656860955831,-0.002278216944989335,-0.0025010135137429547,-0.0032429513392450452,-0.003146720892179937,-0.0035059290494294988,-0.0030911310133672383
+52.399052,4.95803,-0.0014518335133377636,-0.005476878505631224,-0.0037700127785299407,-0.0018791231833100003,-0.002161134550099239,-0.0025225350383452083,-0.00392499671514876,-0.0016055583603693184,-0.0015317318166610965,-0.00432834021207447,-0.0010629614792395307,-0.001565991120151703,-0.001410738041471465,-0.004036174886489559,-0.002276400395509035,-0.0023177967562987237,-0.005392238829243313,-0.0044634149892639335,-0.0033089366541188044,-0.0031797838895838973,-0.0022093401781893268,-0.0030490414217577574,0.0015551022395917605,-0.0032353142623756295,-0.002058105950089501,0.0014135209277554215,-0.0013954506867263267,-0.005095663302791547,-0.004447930502899461,-0.00241565028817163,-0.003615058815371946,-0.005618381826027936,-0.0038686600605414216,-0.0035702124308341293,-0.00812801049997516,-0.006605438827340259,-0.004096502360291301,-0.005419805029658654,-0.004588369835680515,-0.00817620878079119,-0.005211755743124881,-0.00441667268216869,-0.0060356755810807156,-0.003842692296093563,-0.003787830667086374,-0.008500288274155355,-0.005595716910480614,-0.001967034171656184,-0.009363765760917981,-0.004450924165041987,-0.005945916841010812,-0.005876433112812969,-0.004701445252542945,-0.004413656860955831,-0.003078216944989335,-0.004301013513742955,-0.003942951339245045,-0.003646720892179937,-0.0021059290494294986,-0.002691131013367238
+52.398996,4.958098,-0.0027518335133377633,-0.004476878505631224,-0.0036700127785299413,-0.0008791231833100003,-0.0035611345500992393,-0.0033225350383452087,-0.00422499671514876,-0.002105558360369318,-0.001331731816661096,-0.00552834021207447,-0.002262961479239531,-0.00026599112015170297,-0.003310738041471465,-0.004036174886489559,-0.004576400395509036,-0.003917796756298724,-0.005292238829243312,-0.003963414989263933,-0.0029089366541188042,-0.004679783889583897,-0.0013093401781893272,-0.0039490414217577575,-0.0007448977604082394,-0.0039353142623756296,-0.0028581059500895007,0.0016135209277554213,-0.0021954506867263267,-0.004295663302791548,-0.005647930502899461,-0.0026156502881716295,-0.005415058815371946,-0.004818381826027936,-0.003368660060541421,-0.0031702124308341296,-0.00502801049997516,-0.005305438827340259,-0.004396502360291301,-0.0023198050296586543,-0.0034883698356805155,-0.007076208780791189,-0.002711755743124881,-0.0033166726821686906,-0.003435675581080715,-0.003942692296093562,-0.0036878306670863736,-0.003300288274155355,-0.005095716910480615,-0.005767034171656184,-0.011063765760917981,-0.003550924165041987,-0.0040459168410108114,-0.004276433112812969,-0.002301445252542946,-0.006213656860955831,-0.003778216944989335,-0.004001013513742955,-0.005242951339245045,-0.003646720892179937,-0.0031059290494294986,-0.005191131013367239
+52.398993,4.957748,-0.0013518335133377638,-0.0028768785056312233,-0.0012700127785299409,-0.00247912318331,-0.00036113455009923866,-0.00012253503834520847,-0.00452499671514876,0.0023944416396306815,0.004168268183338904,-0.00522834021207447,-0.0007629614792395308,0.000134008879848297,0.003089261958528535,-0.0025361748864895593,0.003723599604490965,-0.003917796756298724,-0.0023922388292433126,0.003336585010736066,-0.0005089366541188046,-0.0009797838895838971,0.0011906598218106728,-0.004449041421757757,0.0002551022395917606,-0.003435314262375629,-0.002358105950089501,0.004113520927755422,0.0004045493132736734,-0.001695663302791548,-0.003547930502899461,0.00288434971182837,-0.0034150588153719465,-0.0022183818260279363,0.0008313399394585786,0.0013297875691658705,-0.0016280104999751605,-0.0021054388273402586,0.0007034976397086991,-0.003219805029658654,0.0037116301643194847,-0.0019762087807911888,0.0002882442568751189,-0.00031667268216869056,-0.007235675581080715,-0.0040426922960935625,-0.0026878306670863735,-0.004100288274155355,-0.0018957169104806143,-0.0018670341716561841,-0.00546376576091798,-0.0025509241650419874,-0.0009459168410108113,0.0030235668871870305,-0.0034014452525429452,-0.004913656860955831,-0.003278216944989335,-0.0010010135137429545,-0.0013429513392450452,-0.0018467208921799372,-0.0014059290494294987,-0.005591131013367238
+52.398907,4.958224,-0.0025518335133377637,-0.003976878505631224,-0.002870012778529941,-0.0003791231833100001,-0.0019611345500992385,-0.0011225350383452085,-0.00312499671514876,-0.00010555836036931822,0.00046826818333890394,-0.004428340212074469,-0.003162961479239531,-0.002965991120151703,-0.002710738041471465,-0.0049361748864895595,-0.005876400395509036,-0.0036177967562987237,-0.005492238829243313,-0.010263414989263933,0.004891063345881195,-0.009779783889583898,-0.007309340178189326,-0.008949041421757757,-0.005444897760408239,-0.00713531426237563,-0.006958105950089501,-0.002986479072244578,-0.004695450686726326,-0.004995663302791548,-0.008947930502899461,-0.00711565028817163,-0.010515058815371946,-0.009918381826027936,-0.004768660060541422,-0.0049702124308341296,-0.007728010499975161,-0.00850543882734026,-0.0054965023602913015,-0.008119805029658655,-0.0062883698356805155,-0.009776208780791188,-0.007011755743124882,-0.00561667268216869,-0.005835675581080715,-0.006942692296093562,-0.014287830667086374,-0.014000288274155354,-0.008895716910480614,-0.004567034171656184,-0.01176376576091798,-0.005450924165041988,-0.004945916841010812,-0.0019764331128129696,-0.0021014452525429453,-0.005413656860955831,-0.004978216944989336,-0.0014010135137429544,-0.002142951339245045,-0.002446720892179937,-0.0020059290494294987,-0.0027911310133672384
+52.398684,4.958521,-0.0006518335133377637,-0.0032768785056312235,0.0007299872214700591,-0.0005791231833100002,-0.0015611345500992386,-0.0009225350383452085,-0.0032249967151487596,-0.0007055583603693182,0.002468268183338904,-0.0031283402120744694,0.0003370385207604692,0.0016340088798482968,-0.0007107380414714652,0.0008638251135104406,-0.008776400395509035,-0.0033177967562987238,0.0007077611707566875,0.0011365850107360664,0.0016910633458811952,2.0216110416102786e-05,0.002990659821810673,-0.0002490414217577574,0.004655102239591761,0.0009646857376243705,0.000741894049910499,0.004713520927755422,0.0008045493132736734,-0.0008956633027915479,-0.003547930502899461,-0.00021565028817162974,-0.0010150588153719463,-0.0025183818260279362,-6.866006054142139e-05,-0.0010702124308341295,-0.00222801049997516,-0.0036054388273402587,-0.0025965023602913012,-0.003519805029658654,-0.0007883698356805156,-0.0013762087807911887,-0.0009117557431248812,-0.0028166726821686906,0.0001643244189192851,-0.0063426922960935625,-0.0038878306670863732,-0.008600288274155356,-0.003595716910480614,0.00023296582834381597,-0.0048637657609179805,-0.0014509241650419876,-0.0008459168410108115,-0.0016764331128129692,-0.0018014452525429456,-0.005713656860955831,-0.002078216944989335,-0.002201013513742955,-0.005442951339245046,-0.004346720892179937,-0.0031059290494294986,-0.0030911310133672383
+52.398644,4.958585,0.0011481664866622363,-0.005376878505631224,-0.002070012778529941,0.0005208768166899998,0.0001388654499007613,-0.0017225350383452084,-0.00062499671514876,0.0019944416396306818,0.0018682681833389037,-0.0016283402120744696,0.0019370385207604691,0.000834008879848297,0.0004892619585285348,-0.0049361748864895595,-0.001376400395509035,-0.0022177967562987235,-0.0012922388292433125,-0.0014634149892639335,-8.936654118804556e-06,0.00022021611041610282,0.000990659821810673,0.0006509585782422426,0.0021551022395917604,-3.531426237562952e-05,-0.000858105950089501,0.0023135209277554214,0.0022045493132736736,-0.001195663302791548,-0.0011479305028994611,-0.0020156502881716297,-0.004615058815371946,-0.0022183818260279363,0.0002313399394585786,-0.0008702124308341294,-0.00492801049997516,-0.0026054388273402587,-0.001896502360291301,-0.0011198050296586544,-0.0015883698356805155,-0.002476208780791189,-1.1755743124881087e-05,-0.0014166726821686906,-0.0037356755810807147,0.0002573077039064375,-0.0026878306670863735,-0.004600288274155355,-0.0031957169104806144,-0.000667034171656184,-0.00576376576091798,0.0009490758349580126,0.0007540831589891886,-0.0013764331128129693,-0.00030144525254294577,-0.005813656860955831,-0.003278216944989335,-0.0003010135137429545,-0.003142951339245045,-0.002846720892179937,-0.009905929049429498,-0.0020911310133672383
+52.398511,4.958769,0.0009481664866622362,-0.004676878505631224,-0.00017001277852994086,0.0005208768166899998,-0.00016113455009923868,-0.0015225350383452085,-0.0029249967151487597,-0.0010055583603693183,-0.004231731816661095,-0.00262834021207447,-0.00036296147923953084,0.000134008879848297,-0.00031073804147146517,-0.0021361748864895595,-0.003576400395509035,-0.002417796756298723,-0.0036922388292433125,-0.0013634149892639337,-0.0028089366541188044,-0.002979783889583897,0.0006906598218106728,-0.0026490414217577576,-0.0013448977604082397,-0.0007353142623756295,-0.0035581059500895008,0.0003135209277554214,-0.0032954506867263265,-0.004695663302791547,-0.00524793050289946,-0.0020156502881716297,-0.005815058815371946,-0.002818381826027936,-0.0008686600605414214,-0.0021702124308341296,-0.00492801049997516,-0.005805438827340258,-0.004396502360291301,-0.006619805029658654,-0.0024883698356805155,-0.006776208780791189,-0.0046117557431248814,-0.004816672682168691,-0.004635675581080715,-0.006742692296093563,-0.003787830667086374,-0.009000288274155355,-0.006195716910480614,-0.003767034171656184,-0.00576376576091798,-0.0026509241650419873,-0.0036459168410108113,-0.006776433112812969,-0.008801445252542945,-0.007613656860955831,-0.0002782169449893352,0.002698986486257045,-0.003342951339245045,-0.0014467208921799372,-0.0059059290494294986,-0.0012911310133672381
+52.39795,4.959466,-0.0014518335133377636,-0.0022768785056312235,-0.002270012778529941,0.00042087681668999985,-0.003461134550099239,-0.0011225350383452085,-0.0038249967151487603,-0.0010055583603693183,-0.000831731816661096,-0.00492834021207447,-0.0009629614792395309,-0.00016599112015170292,-0.0010107380414714651,-0.0033361748864895596,0.0007235996044909648,-0.0010177967562987236,-0.0046922388292433125,-0.006063414989263933,-0.0029089366541188042,-0.001279783889583897,-0.0021093401781893274,-0.0038490414217577573,0.0028551022395917605,-0.0020353142623756293,-0.002158105950089501,-0.0007864790722445785,-0.003395450686726327,-0.004095663302791547,-0.005747930502899461,-0.003815650288171629,-0.004715058815371946,-0.006618381826027937,-0.004268660060541421,-0.0038702124308341293,-0.004528010499975161,-0.0055054388273402585,-0.005296502360291301,-0.005219805029658654,-0.0035883698356805153,-0.00817620878079119,-0.002411755743124881,-0.0033166726821686906,-0.005435675581080715,-0.0025426922960935625,-0.0049878306670863735,-0.006200288274155355,-0.004095716910480615,-0.003767034171656184,-0.008763765760917981,-0.0023509241650419874,-0.004145916841010812,-0.0038764331128129698,-0.0032014452525429456,-0.0045136568609558305,-0.003578216944989335,-0.0023010135137429546,-0.007142951339245046,-0.004846720892179937,-0.006905929049429499,-0.004891131013367239
+52.397933,4.959476,0.0007481664866622362,-0.0023768785056312233,-0.0008700127785299409,0.0003208768166899998,-0.0025611345500992384,7.746496165479157e-05,-0.00132499671514876,-5.558360369318171e-06,0.001368268183338904,-0.0032283402120744696,-0.0009629614792395309,0.001034008879848297,-0.0008107380414714651,-0.0004361748864895596,0.0007235996044909648,-0.00021779675629872354,-0.002892238829243312,-0.0024634149892639335,-0.0017089366541188046,-0.0009797838895838971,-0.0007093401781893269,-0.0012490414217577574,0.0037551022395917602,0.0019646857376243703,0.0008418940499104988,0.0008135209277554214,-0.0008954506867263266,-0.003495663302791548,-0.0037479305028994612,-1.5650288171629653e-05,-0.004015058815371946,-0.0046183818260279366,-0.0026686600605414215,-0.0025702124308341293,-0.0040280104999751605,-0.0042054388273402585,-0.0030965023602913012,-0.0031198050296586547,-0.0039883698356805155,-0.004776208780791189,-0.0012117557431248812,-0.0027166726821686903,-0.004735675581080715,-0.003942692296093562,-0.003487830667086374,-0.002400288274155355,-0.004095716910480615,-0.001167034171656184,-0.0068637657609179805,4.9075834958012656e-05,-0.0009459168410108113,-0.0019764331128129696,-0.0016014452525429455,-0.003413656860955831,-0.002478216944989335,-0.0019010135137429547,-0.0017429513392450452,-0.004146720892179937,-0.0036059290494294986,-0.0021911310133672377
+52.397974,4.959126,0.0011481664866622363,-0.0016768785056312237,-0.000570012778529941,0.0006208768166899998,-0.0010611345500992388,7.746496165479157e-05,-0.00022499671514876007,-0.00020555836036931826,0.0017682681833389039,-0.0035283402120744696,-0.0009629614792395309,0.005734008879848297,-0.0015107380414714651,-0.0005361748864895594,0.0010235996044909647,-0.0023177967562987237,7.761170756687662e-06,-0.0005634149892639335,0.0023910633458811953,0.0008202161104161028,0.0011906598218106728,-0.0016490414217577574,0.0021551022395917604,0.0023646857376243705,-0.000858105950089501,0.00041352092775542144,0.0008045493132736734,-0.0009956633027915478,-0.0009479305028994612,0.0010843497118283702,-0.0016150588153719463,-0.001118381826027936,0.0005313399394585786,0.0021297875691658704,0.0013719895000248396,-0.0019054388273402586,0.000403497639708699,-0.0007198050296586544,-0.0012883698356805154,-0.002676208780791189,0.0020882442568751188,0.00018332731783130945,-0.003435675581080715,-0.0031426922960935627,0.0011121693329136267,0.0012997117258446449,0.0019042830895193857,-0.001067034171656184,-0.00446376576091798,-0.0013509241650419873,-0.0021459168410108117,0.0003235668871870306,-0.0009014452525429456,-0.001713656860955831,-7.821694498933521e-05,0.0008989864862570453,-0.00024295133924504526,-0.00014672089217993717,-0.0021059290494294986,0.00010886898663276185
+52.336424,4.940174,-0.006451833513337764,-0.015276878505631223,-0.006970012778529941,-0.00737912318331,-0.008061134550099238,-0.00782253503834521,-0.008324996715148759,-0.009005558360369318,-0.006731731816661096,-0.0005283402120744696,-0.008062961479239532,-0.007165991120151704,-0.009510738041471465,-0.011236174886489559,-0.008276400395509035,-0.008317796756298724,-0.007792238829243313,-0.008063414989263933,-0.007008936654118805,-0.007279783889583897,-0.006109340178189327,-0.012349041421757757,-0.006244897760408239,-0.00863531426237563,-0.0110581059500895,-0.006586479072244578,-0.007795450686726326,-0.009895663302791548,-0.01314793050289946,-0.00771565028817163,-0.008815058815371946,-0.013318381826027936,-0.01336866006054142,-0.011570212430834129,-0.01492801049997516,-0.01720543882734026,-0.0113965023602913,-0.015319805029658655,-0.010988369835680516,-0.015476208780791189,-0.01171175574312488,-0.01081667268216869,-0.015635675581080713,-0.015842692296093565,-0.009487830667086373,-0.012600288274155354,-0.011295716910480614,-0.016267034171656185,-0.01466376576091798,-0.010150924165041987,-0.010245916841010812,-0.01277643311281297,-0.014501445252542945,-0.01631365686095583,-0.012078216944989334,-0.017001013513742953,-0.014942951339245045,-0.015546720892179936,-0.014805929049429498,-0.013791131013367238
+52.336277,4.939847,-0.008651833513337764,-0.010176878505631225,-0.005670012778529941,-0.00797912318331,-0.0028611345500992383,-0.008422535038345209,-0.011824996715148759,-0.01020555836036932,-0.002031731816661096,-0.00942834021207447,-0.010362961479239532,-0.006865991120151704,-0.0062107380414714655,-0.011236174886489559,-0.009576400395509036,-0.012617796756298724,-0.008792238829243312,-0.008763414989263934,-0.007108936654118805,-0.006879783889583897,-0.006909340178189327,-0.009849041421757758,-0.01074489776040824,-0.00843531426237563,-0.014658105950089501,-0.009686479072244578,-0.008995450686726325,-0.010495663302791548,-0.01254793050289946,-0.010715650288171629,-0.012315058815371946,-0.014918381826027935,-0.011468660060541421,-0.015270212430834129,-0.015428010499975161,-0.00900543882734026,-0.0144965023602913,-0.014019805029658656,-0.014788369835680515,-0.014776208780791188,-0.012111755743124881,-0.013516672682168692,-0.015335675581080715,-0.016642692296093563,-0.009787830667086373,-0.013100288274155355,-0.011195716910480614,-0.015267034171656185,-0.01536376576091798,-0.010850924165041987,-0.011545916841010811,-0.013676433112812969,-0.013201445252542946,-0.014713656860955831,-0.013878216944989334,-0.016401013513742953,-0.012442951339245044,-0.01644672089217994,-0.015905929049429498,-0.014191131013367239
+52.336221,4.939539,-0.006651833513337763,-0.010176878505631225,-0.006270012778529941,-0.00707912318331,-0.008861134550099238,-0.008222535038345209,-0.01082499671514876,-0.00880555836036932,-0.004531731816661097,-0.00912834021207447,-0.00886296147923953,-0.006865991120151704,-0.008810738041471465,-0.012336174886489559,-0.007976400395509035,-0.008617796756298724,-0.009292238829243312,-0.007563414989263934,-0.005608936654118805,-0.007879783889583897,-0.005409340178189327,-0.009849041421757758,-0.003944897760408239,-0.00913531426237563,-0.010358105950089501,-0.008186479072244578,-0.009195450686726326,-0.010295663302791547,-0.011847930502899461,-0.00971565028817163,-0.011515058815371945,-0.012818381826027936,-0.012068660060541421,-0.01417021243083413,-0.01232801049997516,-0.012905438827340257,-0.0135965023602913,-0.012819805029658656,-0.011788369835680516,-0.015576208780791188,-0.01291175574312488,-0.011816672682168692,-0.015935675581080715,-0.012742692296093563,-0.009487830667086373,-0.011800288274155355,-0.012495716910480615,-0.014267034171656184,-0.015563765760917982,-0.010850924165041987,-0.010845916841010812,-0.014376433112812968,-0.015301445252542945,-0.01641365686095583,-0.013678216944989335,-0.013701013513742954,-0.017442951339245043,-0.01654672089217994,-0.0162059290494295,-0.014291131013367238
+52.336192,4.93962,-0.007151833513337764,-0.014176878505631223,-0.006770012778529941,-0.0076791231833099995,-0.010161134550099237,-0.00782253503834521,-0.00932499671514876,-0.00930555836036932,-0.008331731816661097,-0.00942834021207447,-0.008062961479239532,-0.007965991120151703,-0.008310738041471465,-0.010336174886489559,-0.008176400395509036,-0.009717796756298724,-0.008392238829243313,-0.0067634149892639335,-0.008008936654118805,-0.007879783889583897,-0.006609340178189327,-0.013049041421757758,-0.01304489776040824,-0.008535314262375629,-0.0108581059500895,-0.008286479072244578,-0.008295450686726326,-0.011795663302791548,-0.01754793050289946,-0.00891565028817163,-0.012115058815371947,-0.014818381826027936,-0.014068660060541421,-0.01197021243083413,-0.0038280104999751604,-0.014405438827340258,-0.0135965023602913,-0.012919805029658655,-0.011888369835680515,-0.014876208780791189,-0.01021175574312488,-0.011016672682168691,-0.009235675581080715,-0.021742692296093564,-0.009787830667086373,-0.011700288274155354,-0.009795716910480614,-0.008367034171656185,-0.01526376576091798,-0.009650924165041987,-0.011545916841010811,-0.01857643311281297,-0.014501445252542945,-0.01931365686095583,-0.014078216944989334,-0.020701013513742955,-0.015242951339245045,-0.01574672089217994,-0.017105929049429498,-0.0064911310133672386
+52.336186,4.939415,-0.006451833513337764,-0.009476878505631224,-0.005770012778529941,-0.00757912318331,-0.008761134550099237,-0.009322535038345209,-0.00932499671514876,-0.00960555836036932,-0.007131731816661097,-0.00942834021207447,-0.009562961479239532,-0.009265991120151702,-0.009510738041471465,-0.00983617488648956,-0.008976400395509036,-0.010217796756298723,-0.008492238829243312,-0.008263414989263933,-0.007008936654118805,-0.005879783889583897,-0.005709340178189327,-0.009949041421757758,-0.0063448977604082385,-0.006735314262375629,-0.0099581059500895,-0.006386479072244579,-0.007895450686726327,-0.009995663302791547,-0.011547930502899461,-0.00911565028817163,-0.010515058815371946,-0.014118381826027936,-0.010268660060541421,-0.01197021243083413,-0.012828010499975161,-0.01300543882734026,-0.0132965023602913,-0.012919805029658655,-0.012888369835680516,-0.014276208780791189,-0.01091175574312488,-0.011916672682168691,-0.012735675581080715,-0.013342692296093563,-0.010287830667086374,-0.011500288274155356,-0.009095716910480615,-0.013967034171656184,-0.01586376576091798,-0.010850924165041987,-0.011745916841010812,-0.012676433112812968,-0.012501445252542945,-0.014413656860955831,-0.011978216944989335,-0.014401013513742953,-0.015442951339245045,-0.01634672089217994,-0.017205929049429497,-0.013791131013367238
+52.336168,4.939454,-0.010351833513337764,-0.010476878505631225,-0.007170012778529941,-0.008179123183309999,-0.009661134550099239,-0.008622535038345208,-0.011824996715148759,-0.010005558360369319,-0.006931731816661096,-0.010728340212074469,-0.00916296147923953,-0.008965991120151704,-0.009610738041471466,-0.01153617488648956,-0.009676400395509035,-0.010717796756298723,-0.008792238829243312,-0.0077634149892639335,-0.008108936654118805,-0.007579783889583897,-0.008909340178189328,-0.015549041421757758,-0.01104489776040824,-0.01343531426237563,-0.0127581059500895,-0.009786479072244577,-0.009795450686726326,-0.014395663302791548,-0.01604793050289946,-0.01021565028817163,-0.013215058815371945,-0.016818381826027937,-0.013668660060541422,-0.01637021243083413,-0.018628010499975162,-0.01590543882734026,-0.016196502360291302,-0.013119805029658656,-0.013388369835680515,-0.01577620878079119,-0.01281175574312488,-0.013816672682168692,-0.010735675581080715,-0.016442692296093565,-0.011387830667086374,-0.012400288274155355,-0.015995716910480615,-0.013067034171656184,-0.01696376576091798,-0.012850924165041987,-0.014145916841010811,-0.017376433112812967,-0.020101445252542944,-0.01871365686095583,-0.016078216944989336,-0.019701013513742954,-0.015742951339245043,-0.01744672089217994,-0.0174059290494295,-0.016291131013367238
+52.336159,4.939351,-0.007951833513337765,-0.011476878505631224,-0.006270012778529941,-0.0076791231833099995,-0.009761134550099238,-0.011322535038345209,-0.01032499671514876,-0.00990555836036932,-0.0066317318166610965,-0.010928340212074469,-0.009962961479239531,-0.007865991120151704,-0.010210738041471466,-0.010636174886489559,-0.007776400395509035,-0.011017796756298723,-0.008592238829243311,-0.009663414989263933,-0.008508936654118804,-0.006979783889583897,-0.005809340178189327,-0.012749041421757758,-0.008944897760408238,-0.00863531426237563,-0.0111581059500895,-0.008686479072244579,-0.008795450686726327,-0.011795663302791548,-0.01194793050289946,-0.01011565028817163,-0.012715058815371947,-0.014718381826027936,-0.011168660060541421,-0.01317021243083413,-0.01492801049997516,-0.014505438827340258,-0.014596502360291301,-0.014619805029658655,-0.014088369835680516,-0.014876208780791189,-0.01171175574312488,-0.012016672682168692,-0.015235675581080715,-0.015642692296093563,-0.011287830667086374,-0.013700288274155354,-0.013795716910480614,-0.014967034171656183,-0.01886376576091798,-0.013250924165041988,-0.014345916841010812,-0.014876433112812969,-0.014901445252542944,-0.01621365686095583,-0.015678216944989335,-0.017301013513742955,-0.015642951339245044,-0.01704672089217994,-0.0169059290494295,-0.013191131013367238
+52.336126,4.939478,-0.0054518335133377635,-0.007776878505631224,-0.0037700127785299407,-0.00637912318331,-0.006561134550099239,-0.006022535038345209,-0.009524996715148759,-0.007105558360369318,-0.005831731816661096,-0.00912834021207447,-0.0077629614792395305,-0.007465991120151704,-0.008010738041471465,-0.00943617488648956,-0.008376400395509036,-0.007317796756298723,-0.0004922388292433125,-0.011063414989263934,-0.009408936654118806,-0.007579783889583897,-0.005509340178189327,-0.012949041421757757,-0.00904489776040824,-0.008835314262375629,-0.009258105950089501,-0.005486479072244579,-0.009495450686726326,-0.009995663302791547,-0.010747930502899461,-0.00771565028817163,-0.008315058815371945,-0.012618381826027935,-0.010268660060541421,-0.00947021243083413,-0.013628010499975161,-0.013305438827340258,-0.0112965023602913,-0.012619805029658655,-0.010188369835680515,-0.013376208780791187,-0.00991175574312488,-0.009816672682168692,-0.013035675581080715,-0.014842692296093562,-0.007887830667086374,-0.012500288274155355,-0.007995716910480614,-0.017267034171656183,-0.01286376576091798,-0.010550924165041987,-0.010945916841010811,-0.01637643311281297,-0.012101445252542945,-0.01341365686095583,-0.012078216944989334,-0.016401013513742953,-0.014642951339245045,-0.013746720892179936,-0.014205929049429498,-0.013291131013367239
+52.336116,4.939448,-0.005551833513337764,-0.007976878505631224,-0.002670012778529941,-0.00627912318331,-0.007461134550099239,-0.006722535038345209,-0.00872499671514876,-0.00790555836036932,-0.0038317318166610965,-0.00782834021207447,-0.007962961479239531,-0.0073659911201517025,-0.008010738041471465,-0.009736174886489559,-0.008776400395509035,-0.008517796756298723,-0.006492238829243313,-0.006663414989263934,-0.009008936654118805,-0.006479783889583897,-0.006909340178189327,-0.011849041421757758,-0.006044897760408239,-0.009935314262375629,-0.009158105950089502,-0.006486479072244578,-0.006895450686726326,-0.009895663302791548,-0.010447930502899461,-0.00841565028817163,-0.009615058815371946,-0.012118381826027936,-0.009768660060541421,-0.01077021243083413,-0.012428010499975162,-0.01070543882734026,-0.0115965023602913,-0.010819805029658656,-0.010088369835680516,-0.012876208780791189,-0.01021175574312488,-0.009616672682168691,-0.012235675581080716,-0.011342692296093563,-0.010187830667086374,-0.011300288274155355,-0.009795716910480614,-0.013467034171656183,-0.013163765760917979,-0.011650924165041987,-0.011445916841010812,-0.011676433112812969,-0.010601445252542946,-0.01421365686095583,-0.010978216944989334,-0.014101013513742953,-0.014942951339245045,-0.012746720892179937,-0.013905929049429498,-0.012991131013367239
+52.336101,4.939401,-0.005751833513337763,-0.010076878505631224,-0.004770012778529941,-0.00727912318331,-0.008361134550099238,-0.007522535038345209,-0.00932499671514876,-0.007605558360369319,-0.005431731816661097,-0.00902834021207447,-0.00946296147923953,-0.0077659911201517036,-0.009110738041471465,-0.00773617488648956,-0.010476400395509036,-0.009417796756298724,-0.011192238829243311,-0.009763414989263933,-0.009308936654118805,-0.008179783889583897,-0.007409340178189327,-0.014849041421757758,-0.00874489776040824,-0.0072353142623756295,-0.0122581059500895,-0.008686479072244579,-0.009595450686726327,-0.011095663302791547,-0.01284793050289946,-0.00981565028817163,-0.011715058815371946,-0.014118381826027936,-0.009468660060541421,-0.01407021243083413,-0.01412801049997516,-0.01420543882734026,-0.0137965023602913,-0.012119805029658655,-0.013688369835680515,-0.014376208780791188,-0.01141175574312488,-0.011016672682168691,-0.016335675581080716,-0.012842692296093562,-0.011187830667086373,-0.013500288274155356,-0.014295716910480614,-0.014567034171656184,-0.01706376576091798,-0.009950924165041987,-0.011345916841010812,-0.01187643311281297,-0.014601445252542946,-0.01621365686095583,-0.015078216944989335,-0.014101013513742953,-0.016942951339245043,-0.012646720892179938,-0.016705929049429497,-0.010791131013367239
+52.336101,4.93929,-0.007251833513337763,-0.009276878505631223,-0.005270012778529941,-0.00677912318331,-0.008461134550099237,-0.005822535038345208,-0.00852499671514876,-0.006605558360369318,-0.007631731816661097,-0.00782834021207447,-0.006262961479239531,-0.005765991120151703,-0.0062107380414714655,-0.00843617488648956,-0.0071764003955090356,-0.009017796756298723,-0.006492238829243313,-0.007563414989263934,-0.005508936654118805,-0.007479783889583897,-0.006609340178189327,-0.011849041421757758,-0.007244897760408238,-0.007935314262375629,-0.009558105950089501,-0.006186479072244578,-0.007895450686726327,-0.009195663302791547,-0.010647930502899462,-0.00631565028817163,-0.012115058815371947,-0.013018381826027936,-0.009468660060541421,-0.012370212430834129,-0.01202801049997516,-0.01410543882734026,-0.0100965023602913,-0.011119805029658656,-0.011588369835680516,-0.013976208780791189,-0.01081175574312488,-0.009916672682168691,-0.013135675581080716,-0.015042692296093563,-0.008887830667086373,-0.010800288274155355,-0.010595716910480614,-0.013967034171656184,-0.01286376576091798,-0.010050924165041986,-0.00844591684101081,-0.013176433112812969,-0.011501445252542946,-0.014713656860955831,-0.012478216944989335,-0.012501013513742954,-0.012742951339245044,-0.012446720892179937,-0.016505929049429498,-0.014191131013367239
+52.336102,4.939273,-0.005851833513337764,-0.007276878505631224,-0.005070012778529941,-0.00697912318331,-0.007761134550099239,-0.007122535038345208,-0.0075249967151487605,-0.007405558360369318,-0.0035317318166610966,-0.007428340212074469,-0.00706296147923953,-0.006865991120151704,-0.006810738041471465,-0.008636174886489559,-0.007676400395509035,-0.008917796756298724,-0.008592238829243311,-0.008563414989263933,-0.007008936654118805,-0.008379783889583898,-0.007809340178189327,-0.007049041421757758,-0.009244897760408238,-0.00813531426237563,-0.010358105950089501,-0.007486479072244577,-0.009895450686726327,-0.008095663302791548,-0.00944793050289946,-0.007315650288171629,-0.010515058815371946,-0.011418381826027935,-0.00986866006054142,-0.01337021243083413,-0.012428010499975162,-0.014305438827340259,-0.0123965023602913,-0.011419805029658656,-0.011988369835680515,-0.015376208780791187,-0.012711755743124881,-0.012016672682168692,-0.012535675581080716,-0.014042692296093562,-0.010087830667086373,-0.012600288274155354,-0.011695716910480615,-0.011767034171656183,-0.01346376576091798,-0.010750924165041987,-0.010845916841010812,-0.012076433112812968,-0.010901445252542946,-0.01221365686095583,-0.012178216944989335,-0.012901013513742954,-0.013042951339245044,-0.013146720892179936,-0.017105929049429498,-0.012591131013367238
+52.33609,4.93923,-0.006351833513337763,-0.008976878505631223,-0.005270012778529941,-0.00587912318331,-0.00766113455009924,-0.008722535038345209,-0.008624996715148759,-0.0078055583603693175,-0.005731731816661097,-0.00992834021207447,-0.008262961479239531,-0.009065991120151703,-0.009110738041471465,-0.01073617488648956,-0.009176400395509035,-0.010517796756298723,-0.011092238829243312,-0.010363414989263933,-0.009708936654118806,-0.009579783889583898,-0.007709340178189327,-0.012349041421757757,-0.00954489776040824,-0.00783531426237563,-0.0110581059500895,-0.007686479072244578,-0.006695450686726326,-0.009595663302791548,-0.00974793050289946,-0.00981565028817163,-0.010415058815371947,-0.012418381826027936,-0.011168660060541421,-0.01257021243083413,-0.011028010499975162,-0.012105438827340258,-0.0131965023602913,-0.013119805029658656,-0.011288369835680516,-0.014976208780791188,-0.01051175574312488,-0.012316672682168692,-0.014135675581080715,-0.013342692296093563,-0.010687830667086373,-0.014800288274155355,-0.013595716910480614,-0.014767034171656184,-0.014963765760917982,-0.011450924165041986,-0.011945916841010812,-0.01417643311281297,-0.014001445252542946,-0.015213656860955832,-0.013078216944989335,-0.016101013513742955,-0.012942951339245045,-0.014946720892179938,-0.016005929049429497,-0.012991131013367239
+52.336038,4.939575,-0.0054518335133377635,-0.008276878505631224,-0.0037700127785299407,-0.00597912318331,-0.008161134550099237,-0.008122535038345209,-0.00872499671514876,-0.008105558360369318,-0.004231731816661095,-0.007428340212074469,-0.008662961479239532,-0.008365991120151704,-0.008310738041471465,-0.009236174886489559,-0.007876400395509036,-0.012117796756298723,-0.010292238829243312,-0.010263414989263933,-0.009108936654118804,-0.008679783889583898,-0.007609340178189326,-0.010049041421757757,-0.007744897760408239,-0.008235314262375629,-0.0110581059500895,-0.0055864790722445785,-0.010095450686726326,-0.011595663302791548,-0.008047930502899462,-0.00881565028817163,-0.010515058815371946,-0.009918381826027936,-0.010268660060541421,-0.011270212430834129,-0.012228010499975161,-0.01250543882734026,-0.011996502360291301,-0.011919805029658654,-0.009788369835680516,-0.011676208780791189,-0.01021175574312488,-0.011316672682168691,-0.011435675581080716,-0.011242692296093563,-0.011087830667086374,-0.014900288274155354,-0.011895716910480615,-0.014167034171656184,-0.014263765760917979,-0.010050924165041986,-0.007045916841010812,-0.011976433112812969,-0.007701445252542946,-0.012113656860955831,-0.009078216944989335,-0.013101013513742954,-0.012042951339245045,-0.012146720892179937,-0.012005929049429499,-0.011091131013367238
+52.336051,4.939128,-0.007051833513337764,-0.010576878505631224,-0.005270012778529941,-0.00537912318331,-0.006961134550099239,-0.00782253503834521,-0.01052499671514876,-0.008105558360369318,-0.006231731816661097,-0.01132834021207447,-0.009262961479239532,-0.009765991120151703,-0.009710738041471465,-0.012336174886489559,-0.010376400395509036,-0.010617796756298724,-0.011692238829243312,-0.009863414989263932,-0.009108936654118804,-0.009279783889583898,-0.007409340178189327,-0.014449041421757758,-0.008344897760408239,-0.00973531426237563,-0.012958105950089501,-0.007986479072244578,-0.009695450686726326,-0.010295663302791547,-0.010447930502899461,-0.00951565028817163,-0.012215058815371946,-0.012518381826027936,-0.01076866006054142,-0.012670212430834129,-0.01432801049997516,-0.015505438827340259,-0.0120965023602913,-0.013019805029658655,-0.011088369835680515,-0.014476208780791188,-0.01201175574312488,-0.011816672682168692,-0.012835675581080716,-0.016342692296093562,-0.011087830667086374,-0.014200288274155355,-0.013195716910480614,-0.015867034171656184,-0.01576376576091798,-0.011550924165041988,-0.011545916841010811,-0.013976433112812969,-0.013701445252542946,-0.015613656860955831,-0.012178216944989335,-0.015401013513742953,-0.014642951339245045,-0.014746720892179937,-0.0156059290494295,-0.013891131013367239
+52.336038,4.93904,-0.0041518335133377635,-0.008576878505631224,-0.006070012778529941,-0.00617912318331,-0.0075611345500992385,-0.006322535038345209,-0.00882499671514876,-0.007005558360369318,-0.005331731816661097,-0.00942834021207447,-0.007562961479239531,-0.006865991120151704,-0.008610738041471465,-0.01083617488648956,-0.007876400395509036,-0.010817796756298723,-0.009392238829243312,-0.007663414989263934,-0.007208936654118805,-0.006479783889583897,-0.005809340178189327,-0.012049041421757757,-0.008344897760408239,-0.0065353142623756294,-0.008358105950089501,-0.006686479072244579,-0.006295450686726326,-0.009895663302791548,-0.010947930502899461,-0.00811565028817163,-0.011215058815371945,-0.012918381826027935,-0.01076866006054142,-0.01227021243083413,-0.01122801049997516,-0.011205438827340257,-0.0106965023602913,-0.011619805029658654,-0.010788369835680515,-0.014676208780791188,-0.00911175574312488,-0.007716672682168691,-0.012935675581080715,-0.016042692296093564,-0.0038878306670863732,-0.010300288274155354,-0.009495716910480614,-0.013767034171656183,-0.012063765760917979,-0.010750924165041987,-0.009545916841010811,-0.013476433112812969,-0.012601445252542946,-0.01461365686095583,-0.013478216944989335,-0.015501013513742955,-0.011542951339245044,-0.01624672089217994,-0.013805929049429498,-0.012791131013367239
+52.335986,4.938892,-0.006351833513337763,-0.010476878505631225,-0.006370012778529941,-0.00677912318331,-0.0075611345500992385,-0.007722535038345208,-0.009524996715148759,-0.00910555836036932,-0.006131731816661096,-0.01052834021207447,-0.009062961479239531,-0.009665991120151703,-0.009610738041471466,-0.01213617488648956,-0.010076400395509036,-0.011117796756298723,-0.010892238829243311,-0.009863414989263932,-0.009708936654118806,-0.009079783889583897,-0.007309340178189326,-0.012249041421757758,-0.008544897760408239,-0.008235314262375629,-0.011258105950089501,-0.0075864790722445785,-0.009195450686726326,-0.011995663302791547,-0.011847930502899461,-0.010715650288171629,-0.012615058815371945,-0.014618381826027935,-0.01216866006054142,-0.013870212430834129,-0.01292801049997516,-0.01530543882734026,-0.0138965023602913,-0.013019805029658655,-0.012488369835680515,-0.013376208780791187,-0.011511755743124881,-0.012716672682168691,-0.014735675581080715,-0.016042692296093564,-0.011187830667086373,-0.013200288274155356,-0.014695716910480614,-0.016167034171656186,-0.01796376576091798,-0.012750924165041987,-0.013645916841010812,-0.01457643311281297,-0.015001445252542947,-0.01721365686095583,-0.016178216944989336,-0.017601013513742953,-0.015642951339245044,-0.01584672089217994,-0.016605929049429497,-0.013891131013367239
+52.335917,4.939305,-0.0030518335133377632,-0.008976878505631223,-0.0029700127785299408,-0.00227912318331,-0.005361134550099239,-0.005622535038345209,-0.00572499671514876,-0.005105558360369318,-0.0034317318166610963,-0.00812834021207447,-0.008062961479239532,-0.009765991120151703,-0.010310738041471465,-0.01113617488648956,-0.011076400395509035,-0.013017796756298723,-0.011092238829243312,-0.010763414989263934,-0.009708936654118806,-0.010379783889583898,-0.007009340178189326,-0.012549041421757758,-0.006044897760408239,-0.00743531426237563,-0.011558105950089501,-0.005086479072244578,-0.008695450686726326,-0.009795663302791548,-0.00974793050289946,-0.00501565028817163,-0.010915058815371945,-0.011718381826027935,-0.007468660060541422,-0.00857021243083413,-0.010428010499975162,-0.00910543882734026,-0.0100965023602913,-0.010619805029658655,-0.008488369835680515,-0.012176208780791188,-0.010411755743124881,-0.011216672682168692,-0.014635675581080716,-0.012542692296093562,-0.009987830667086374,-0.012800288274155355,-0.013495716910480614,-0.012867034171656183,-0.015463765760917979,-0.012550924165041987,-0.012445916841010811,-0.014076433112812968,-0.009001445252542945,-0.01401365686095583,-0.011078216944989335,-0.012001013513742954,-0.012542951339245045,-0.009546720892179937,-0.010105929049429498,-0.008491131013367239
+52.335948,4.93892,-0.006551833513337764,-0.008776878505631225,-0.006070012778529941,-0.00637912318331,-0.009161134550099238,-0.008022535038345208,-0.009524996715148759,-0.008305558360369319,-0.006731731816661096,-0.01002834021207447,-0.008362961479239532,-0.008565991120151703,-0.009310738041471466,-0.01103617488648956,-0.010176400395509036,-0.011017796756298723,-0.011192238829243311,-0.009663414989263933,-0.012408936654118805,-0.008979783889583898,-0.008309340178189328,-0.013749041421757757,-0.010044897760408239,-0.00983531426237563,-0.013758105950089502,-0.007486479072244577,-0.008495450686726327,-0.009895663302791548,-0.01114793050289946,-0.009015650288171629,-0.012715058815371947,-0.013018381826027936,-0.01096866006054142,-0.014370212430834129,-0.00982801049997516,-0.014005438827340257,-0.0127965023602913,-0.011719805029658656,-0.011188369835680516,-0.015876208780791188,-0.01201175574312488,-0.01141667268216869,-0.015935675581080715,-0.015442692296093562,-0.011087830667086374,-0.015700288274155354,-0.013695716910480615,-0.018367034171656183,-0.01706376576091798,-0.012250924165041987,-0.012445916841010811,-0.01867643311281297,-0.014801445252542945,-0.018313656860955832,-0.014378216944989334,-0.015301013513742953,-0.015742951339245043,-0.013746720892179936,-0.014905929049429499,-0.012491131013367239
+52.335942,4.938854,-0.005551833513337764,-0.009076878505631224,-0.006970012778529941,-0.00677912318331,-0.00766113455009924,-0.008722535038345209,-0.009824996715148759,-0.00880555836036932,-0.005931731816661097,-0.012128340212074469,-0.010262961479239531,-0.011265991120151704,-0.010010738041471465,-0.01283617488648956,-0.012476400395509036,-0.013717796756298724,-0.013292238829243313,-0.011863414989263932,-0.012108936654118805,-0.011679783889583899,-0.009709340178189328,-0.015649041421757756,-0.01214489776040824,-0.010835314262375629,-0.0131581059500895,-0.009486479072244577,-0.010195450686726327,-0.012495663302791548,-0.01284793050289946,-0.01051565028817163,-0.013515058815371945,-0.015518381826027937,-0.012268660060541422,-0.014370212430834129,-0.01232801049997516,-0.015005438827340258,-0.014896502360291301,-0.013319805029658655,-0.011688369835680515,-0.01597620878079119,-0.01261175574312488,-0.013616672682168691,-0.016635675581080714,-0.01704269229609356,-0.012987830667086373,-0.016800288274155358,-0.016095716910480614,-0.015767034171656185,-0.01816376576091798,-0.013850924165041988,-0.013245916841010811,-0.01527643311281297,-0.013301445252542945,-0.01581365686095583,-0.015278216944989334,-0.015401013513742953,-0.015942951339245046,-0.01564672089217994,-0.016105929049429497,-0.01519113101336724
+52.335928,4.938804,-0.006751833513337764,-0.010076878505631224,-0.005970012778529941,-0.0076791231833099995,-0.008561134550099238,-0.007422535038345208,-0.009524996715148759,-0.009405558360369319,-0.006531731816661097,-0.01112834021207447,-0.009562961479239532,-0.012065991120151703,-0.011910738041471466,-0.01223617488648956,-0.013276400395509036,-0.014017796756298724,-0.013492238829243311,-0.011763414989263933,-0.012308936654118805,-0.012079783889583898,-0.008809340178189328,-0.013749041421757757,-0.01044489776040824,-0.01073531426237563,-0.013558105950089501,-0.008186479072244578,-0.010495450686726327,-0.011295663302791548,-0.013047930502899461,-0.00971565028817163,-0.013815058815371945,-0.013418381826027935,-0.012068660060541421,-0.01367021243083413,-0.011928010499975161,-0.013905438827340258,-0.0137965023602913,-0.012219805029658654,-0.012288369835680515,-0.01607620878079119,-0.01171175574312488,-0.015316672682168691,-0.015535675581080715,-0.015342692296093563,-0.013687830667086374,-0.017000288274155357,-0.016895716910480613,-0.016067034171656183,-0.01896376576091798,-0.013950924165041987,-0.013345916841010812,-0.015676433112812967,-0.014301445252542946,-0.01671365686095583,-0.014578216944989335,-0.015801013513742954,-0.013842951339245044,-0.015146720892179937,-0.0157059290494295,-0.013691131013367238
+52.335898,4.938775,-0.007751833513337763,-0.010376878505631223,-0.007770012778529942,-0.007179123183310001,-0.009061134550099237,-0.00782253503834521,-0.01072499671514876,-0.00880555836036932,-0.007931731816661097,-0.01132834021207447,-0.00916296147923953,-0.010965991120151702,-0.010410738041471466,-0.01253617488648956,-0.011676400395509035,-0.013017796756298723,-0.012192238829243312,-0.010863414989263933,-0.011308936654118805,-0.012479783889583897,-0.010109340178189328,-0.015549041421757758,-0.011744897760408239,-0.01063531426237563,-0.0130581059500895,-0.008886479072244578,-0.010895450686726326,-0.011095663302791547,-0.01204793050289946,-0.009615650288171629,-0.012515058815371946,-0.013918381826027936,-0.012268660060541422,-0.01407021243083413,-0.01172801049997516,-0.01470543882734026,-0.0147965023602913,-0.012819805029658656,-0.012388369835680516,-0.01567620878079119,-0.01341175574312488,-0.012616672682168692,-0.014335675581080716,-0.014642692296093562,-0.013987830667086374,-0.016800288274155358,-0.015795716910480616,-0.015667034171656186,-0.01766376576091798,-0.013650924165041987,-0.012845916841010812,-0.015676433112812967,-0.015901445252542945,-0.01811365686095583,-0.015278216944989334,-0.017001013513742953,-0.014742951339245044,-0.015246720892179938,-0.0157059290494295,-0.013491131013367238
+52.335853,4.938951,-0.009151833513337765,-0.005476878505631224,-0.00797001277852994,-0.00707912318331,-0.010361134550099238,-0.009622535038345209,-0.012424996715148759,-0.009405558360369319,-0.008431731816661096,-0.011528340212074469,-0.008362961479239532,-0.007865991120151704,-0.008110738041471466,-0.01153617488648956,-0.009176400395509035,-0.010817796756298723,-0.010492238829243312,-0.009263414989263932,-0.008208936654118804,-0.008979783889583898,-0.0071093401781893275,-0.016549041421757758,-0.01184489776040824,-0.01013531426237563,-0.0105581059500895,-0.009486479072244577,-0.009095450686726327,-0.013195663302791547,-0.01344793050289946,-0.009315650288171629,-0.017515058815371947,-0.015718381826027937,-0.01096866006054142,-0.01697021243083413,-0.019828010499975162,-0.015105438827340258,-0.0139965023602913,-0.015819805029658653,-0.012388369835680516,-0.01857620878079119,-0.01341175574312488,-0.011516672682168692,-0.019135675581080716,-0.017842692296093563,-0.010787830667086374,-0.013600288274155355,-0.014095716910480614,-0.018767034171656184,-0.01696376576091798,-0.011750924165041986,-0.012245916841010812,-0.01747643311281297,-0.015701445252542946,-0.01761365686095583,-0.013878216944989334,-0.019001013513742955,-0.018842951339245045,-0.011946720892179937,-0.0215059290494295,-0.017491131013367238
+52.335874,4.93864,-0.005751833513337763,-0.009476878505631224,-0.007170012778529941,-0.0060791231833100005,-0.00766113455009924,-0.008022535038345208,-0.008924996715148759,-0.010705558360369318,-0.006831731816661097,-0.00972834021207447,-0.009362961479239531,-0.011865991120151704,-0.010010738041471465,-0.01253617488648956,-0.011576400395509036,-0.012917796756298724,-0.014292238829243312,-0.011663414989263933,-0.012408936654118805,-0.011879783889583898,-0.008409340178189327,-0.014449041421757758,-0.010844897760408239,-0.00893531426237563,-0.0125581059500895,-0.008386479072244579,-0.009495450686726326,-0.010895663302791547,-0.01314793050289946,-0.01031565028817163,-0.012015058815371946,-0.012818381826027936,-0.01186866006054142,-0.012970212430834129,-0.01292801049997516,-0.01370543882734026,-0.0129965023602913,-0.011119805029658656,-0.011988369835680515,-0.012476208780791188,-0.011011755743124881,-0.011716672682168692,-0.017035675581080715,-0.014642692296093562,-0.011887830667086374,-0.015700288274155354,-0.014195716910480615,-0.015167034171656183,-0.020163765760917978,-0.014850924165041987,-0.014945916841010811,-0.01777643311281297,-0.014501445252542945,-0.016513656860955832,-0.015578216944989334,-0.015801013513742954,-0.016042951339245045,-0.01634672089217994,-0.018205929049429498,-0.015791131013367238
+52.335834,4.938567,-0.009451833513337764,-0.013476878505631224,-0.01087001277852994,-0.009579123183310001,-0.009061134550099237,-0.009622535038345209,-0.01172499671514876,-0.012105558360369318,-0.011131731816661097,-0.01432834021207447,-0.012362961479239532,-0.014065991120151704,-0.012910738041471465,-0.014336174886489559,-0.016476400395509034,-0.011917796756298723,-0.01729223882924331,-0.014463414989263932,-0.014408936654118805,-0.015879783889583898,-0.014009340178189326,-0.017949041421757756,-0.01584489776040824,-0.01383531426237563,-0.0164581059500895,-0.008786479072244578,-0.012495450686726327,-0.014595663302791547,-0.01514793050289946,-0.012215650288171629,-0.015615058815371946,-0.014618381826027935,-0.014268660060541422,-0.01647021243083413,-0.01572801049997516,-0.01830543882734026,-0.018396502360291302,-0.014619805029658655,-0.014788369835680515,-0.01677620878079119,-0.015611755743124879,-0.01681667268216869,-0.018735675581080715,-0.018942692296093563,-0.014887830667086375,-0.019800288274155357,-0.018895716910480614,-0.022267034171656184,-0.021863765760917978,-0.01685092416504199,-0.01834591684101081,-0.02547643311281297,-0.018601445252542946,-0.02481365686095583,-0.018678216944989338,-0.021601013513742953,-0.020742951339245044,-0.02204672089217994,-0.019505929049429497,-0.017891131013367235
+52.335843,4.938437,-0.004351833513337763,0.003823121494368777,-0.004970012778529941,-0.0005791231833100002,-0.0062611345500992385,-0.005322535038345209,-0.00772499671514876,-0.006805558360369318,-0.005231731816661096,-0.007028340212074469,-0.008562961479239531,-0.008565991120151703,-0.009310738041471466,-0.005536174886489559,-0.008376400395509036,-0.009117796756298722,-0.008092238829243313,-0.008963414989263932,-0.007908936654118804,-0.006779783889583897,-0.003909340178189327,-0.009749041421757757,-0.00554489776040824,-0.007635314262375629,-0.008658105950089501,-0.0034864790722445786,-0.005295450686726326,-0.009695663302791547,-0.014747930502899461,-0.00571565028817163,-0.011015058815371946,-0.015818381826027936,-0.006368660060541422,-0.012370212430834129,-0.01552801049997516,-0.009805438827340258,-0.0115965023602913,-0.010419805029658655,-0.010388369835680516,-0.011376208780791187,-0.009811755743124881,-0.012316672682168692,-0.017935675581080716,-0.011942692296093562,-0.006787830667086374,-0.008300288274155356,-0.010995716910480614,-0.013667034171656184,-0.01526376576091798,-0.008350924165041986,-0.011145916841010812,-0.01357643311281297,-0.012701445252542945,-0.013813656860955831,-0.010878216944989335,-0.014101013513742953,-0.012742951339245044,-0.012846720892179937,-0.012305929049429499,-0.017491131013367238
+52.335694,4.938644,-0.0051518335133377635,-0.007776878505631224,-0.005070012778529941,-0.00457912318331,-0.006361134550099239,-0.005322535038345209,-0.00782499671514876,-0.006205558360369318,-0.002331731816661096,-0.0071283402120744695,-0.00536296147923953,-0.003965991120151703,-0.006610738041471466,-0.00783617488648956,-0.007276400395509036,-0.005017796756298723,-0.006592238829243312,-0.0054634149892639336,-0.0035089366541188045,-0.004879783889583897,-0.006509340178189328,-0.011149041421757757,-0.006944897760408238,-0.00663531426237563,-0.0099581059500895,-0.005686479072244578,-0.007495450686726326,-0.006695663302791547,-0.009847930502899461,-0.00681565028817163,-0.008115058815371947,-0.008718381826027936,-0.0056686600605414215,-0.00877021243083413,-0.007128010499975161,-0.008705438827340258,-0.010896502360291301,-0.009319805029658654,-0.008588369835680516,-0.013076208780791188,-0.00861175574312488,-0.008416672682168691,-0.010935675581080715,-0.010842692296093562,-0.006787830667086374,-0.008900288274155356,-0.009395716910480615,-0.010067034171656183,-0.01306376576091798,-0.009350924165041987,-0.008945916841010811,-0.009776433112812968,-0.011001445252542945,-0.009213656860955832,-0.007478216944989335,-0.010801013513742954,-0.009842951339245044,-0.010746720892179937,-0.009405929049429497,-0.007191131013367238
+52.33557,4.938341,-0.004551833513337764,-0.010176878505631225,-0.004670012778529941,-0.00387912318331,-0.004961134550099239,-0.0039225350383452085,-0.00742499671514876,-0.006405558360369318,-0.005131731816661097,-0.00882834021207447,-0.00766296147923953,-0.005565991120151703,-0.005810738041471465,-0.00903617488648956,-0.006676400395509035,-0.007217796756298724,-0.006292238829243312,-0.0038634149892639337,-0.003708936654118804,-0.004079783889583897,-0.006509340178189328,-0.011349041421757758,-0.00984489776040824,-0.00533531426237563,-0.0081581059500895,-0.003886479072244579,-0.0050954506867263265,-0.008295663302791547,-0.01364793050289946,-0.005215650288171629,-0.009215058815371945,-0.011318381826027936,-0.006568660060541422,-0.009570212430834129,-0.009928010499975161,-0.011605438827340258,-0.0078965023602913,-0.010119805029658655,-0.007588369835680515,-0.009776208780791188,-0.007011755743124882,-0.00941667268216869,-0.005035675581080715,-0.011842692296093563,-0.006087830667086374,-0.0078002882741553545,-0.006395716910480615,-0.014567034171656184,-0.011063765760917981,-0.006450924165041987,-0.006945916841010811,-0.011176433112812969,-0.008601445252542946,-0.012113656860955831,-0.009978216944989335,-0.012501013513742954,-0.013742951339245045,-0.011246720892179938,-0.011705929049429499,-0.004991131013367238
+52.335527,4.93767,-0.006451833513337764,-0.009776878505631224,-0.006070012778529941,-0.00587912318331,-0.007861134550099238,-0.008322535038345208,-0.01172499671514876,-0.007605558360369319,-0.007931731816661097,-0.01002834021207447,-0.007162961479239531,-0.0060659911201517034,-0.006610738041471466,-0.01053617488648956,-0.006276400395509036,-0.006717796756298723,-0.008092238829243313,-0.0054634149892639336,-0.007808936654118805,-0.006979783889583897,-0.005409340178189327,-0.013849041421757758,-0.013144897760408239,-0.006835314262375629,-0.007658105950089501,-0.005886479072244578,-0.006195450686726326,-0.008795663302791547,-0.01144793050289946,-0.00821565028817163,-0.011515058815371945,-0.011618381826027936,-0.009668660060541422,-0.01137021243083413,-0.00782801049997516,-0.014305438827340259,-0.010896502360291301,-0.010719805029658655,-0.008588369835680516,-0.010476208780791188,-0.00941175574312488,-0.008316672682168692,-0.017835675581080717,-0.014642692296093562,-0.007087830667086374,-0.010400288274155355,-0.008095716910480614,-0.013267034171656185,-0.01226376576091798,-0.007850924165041987,-0.008045916841010812,-0.01477643311281297,-0.011501445252542946,-0.01401365686095583,-0.011778216944989334,-0.014201013513742955,-0.012342951339245045,-0.013746720892179936,-0.014205929049429498,-0.014291131013367238
+52.335527,4.9376,-0.004851833513337764,-0.010276878505631224,-0.0053700127785299406,-0.0036791231833100003,-0.006661134550099239,-0.005322535038345209,-0.00772499671514876,-0.005805558360369318,-0.0021317318166610964,-0.009228340212074469,-0.0057629614792395305,-0.006765991120151703,-0.005910738041471466,-0.00893617488648956,-0.006076400395509035,-0.003917796756298724,-0.007892238829243312,-0.006063414989263933,-0.005508936654118805,-0.006479783889583897,-0.003909340178189327,-0.011049041421757758,-0.0067448977604082395,-0.00813531426237563,-0.007258105950089501,-0.004386479072244579,-0.006195450686726326,-0.008795663302791547,-0.007647930502899461,-0.00621565028817163,-0.009215058815371945,-0.010818381826027935,-0.010268660060541421,-0.00917021243083413,-0.008828010499975161,-0.012705438827340258,-0.010296502360291301,-0.010519805029658656,-0.008088369835680516,-0.009976208780791189,-0.008411755743124881,-0.00911667268216869,-0.016835675581080716,-0.012942692296093562,-0.006487830667086374,-0.009800288274155355,-0.009295716910480614,-0.008067034171656185,-0.012663765760917982,-0.007450924165041986,-0.007845916841010811,-0.012076433112812968,-0.009601445252542945,-0.01311365686095583,-0.011178216944989335,-0.012901013513742954,-0.011842951339245044,-0.011746720892179938,-0.012605929049429499,-0.009391131013367238
+52.335429,4.937431,-0.006451833513337764,-0.009776878505631224,-0.006970012778529941,-0.00727912318331,-0.008661134550099238,-0.008222535038345209,-0.00842499671514876,-0.007705558360369318,-0.0038317318166610965,-0.00902834021207447,-0.007962961479239531,-0.008065991120151703,-0.0075107380414714655,-0.00903617488648956,-0.008176400395509036,-0.007417796756298724,-0.010792238829243312,-0.008163414989263934,-0.006008936654118805,-0.007679783889583898,-0.006109340178189327,-0.014349041421757757,-0.006644897760408238,-0.00983531426237563,-0.009558105950089501,-0.007286479072244579,-0.008195450686726327,-0.009695663302791547,-0.01054793050289946,-0.00841565028817163,-0.009315058815371946,-0.015218381826027935,-0.009768660060541421,-0.01217021243083413,-0.015328010499975162,-0.01240543882734026,-0.0120965023602913,-0.011219805029658655,-0.009888369835680515,-0.011876208780791188,-0.01131175574312488,-0.010216672682168691,-0.013135675581080716,-0.017342692296093563,-0.008787830667086374,-0.010700288274155355,-0.010895716910480614,-0.010867034171656183,-0.01406376576091798,-0.009850924165041988,-0.009345916841010812,-0.013476433112812969,-0.007601445252542945,-0.01281365686095583,-0.011778216944989334,-0.012701013513742953,-0.014742951339245044,-0.012446720892179937,-0.011205929049429499,-0.013491131013367238
+52.335363,4.937733,-0.008851833513337765,-0.013276878505631223,-0.005770012778529941,-0.008779123183309999,-0.006161134550099239,-0.006822535038345208,-0.012624996715148759,-0.006905558360369318,-0.007631731816661097,-0.01232834021207447,-0.0077629614792395305,-0.006565991120151703,-0.007010738041471465,-0.01013617488648956,-0.005676400395509035,-0.0055177967562987235,-0.007492238829243313,-0.007063414989263933,-0.005408936654118805,-0.005179783889583897,-0.005009340178189327,-0.017149041421757757,-0.009144897760408239,-0.00743531426237563,-0.007658105950089501,-0.006486479072244578,-0.006495450686726327,-0.014095663302791548,-0.014447930502899461,-0.00831565028817163,-0.015315058815371946,-0.015618381826027936,-0.011168660060541421,-0.012970212430834129,-0.010528010499975161,-0.01480543882734026,-0.0107965023602913,-0.010119805029658655,-0.009588369835680515,-0.011776208780791188,-0.00941175574312488,-0.008716672682168691,-0.017535675581080715,-0.017342692296093563,-0.009187830667086373,-0.009700288274155354,-0.011595716910480613,-0.014667034171656183,-0.01356376576091798,-0.008650924165041988,-0.00844591684101081,-0.015476433112812969,-0.016501445252542945,-0.01571365686095583,-0.010978216944989334,-0.018301013513742952,-0.015042951339245044,-0.016646720892179938,-0.016105929049429497,-0.013491131013367238
+52.335399,4.9373,-0.006151833513337764,-0.007176878505631224,-0.007170012778529941,-0.00467912318331,-0.008561134550099238,-0.005322535038345209,-0.00672499671514876,-0.00850555836036932,-0.005831731816661096,-0.0071283402120744695,-0.007162961479239531,-0.009765991120151703,-0.007410738041471465,-0.01253617488648956,-0.008076400395509036,-0.005717796756298723,-0.008592238829243311,-0.006963414989263934,-0.005508936654118805,-0.005479783889583897,-0.005909340178189327,-0.012349041421757757,-0.008344897760408239,-0.00923531426237563,-0.009258105950089501,-0.006486479072244578,-0.007795450686726326,-0.009095663302791547,-0.008647930502899462,-0.00711565028817163,-0.011115058815371946,-0.014218381826027936,-0.009168660060541421,-0.00817021243083413,-0.009128010499975161,-0.009705438827340259,-0.0121965023602913,-0.009819805029658655,-0.010888369835680516,-0.012976208780791188,-0.00941175574312488,-0.009916672682168691,-0.015535675581080715,-0.013542692296093563,-0.006687830667086374,-0.011500288274155356,-0.012495716910480615,-0.010567034171656184,-0.012563765760917979,-0.005750924165041988,-0.010745916841010813,-0.011376433112812969,-0.008801445252542945,-0.01031365686095583,-0.008078216944989334,-0.010401013513742953,-0.010342951339245045,-0.010746720892179937,-0.009605929049429498,-0.008891131013367238
+52.33529,4.937593,-0.004551833513337764,-0.01657687850563122,-0.002870012778529941,-0.00247912318331,-0.006161134550099239,-0.005022535038345209,-0.00712499671514876,-0.004505558360369318,-0.005531731816661096,-0.01132834021207447,-0.005862961479239531,-0.005165991120151703,-0.005710738041471465,-0.00893617488648956,-0.006276400395509036,-0.0052177967562987235,-0.007292238829243312,-0.006563414989263934,-0.005208936654118805,-0.005679783889583897,-0.005609340178189327,-0.011849041421757758,-0.006944897760408238,-0.00743531426237563,-0.0093581059500895,-0.004786479072244578,-0.005295450686726326,-0.007995663302791547,-0.011547930502899461,-0.00711565028817163,-0.009715058815371946,-0.012418381826027936,-0.008868660060541421,-0.01167021243083413,-0.00672801049997516,-0.01190543882734026,-0.0083965023602913,-0.011119805029658656,-0.007988369835680516,-0.011476208780791189,-0.008111755743124881,-0.006916672682168691,-0.013835675581080715,-0.010442692296093563,-0.007187830667086373,-0.010100288274155355,-0.010895716910480614,-0.010767034171656184,-0.012163765760917981,-0.008450924165041987,-0.006645916841010811,-0.01127643311281297,-0.013101445252542945,-0.01401365686095583,-0.011478216944989334,-0.015201013513742954,-0.010942951339245045,-0.012846720892179937,-0.011105929049429497,-0.015391131013367238
+52.335284,4.937007,-0.0028518335133377636,-0.006976878505631224,-0.004070012778529941,-0.00287912318331,-0.004161134550099239,-0.0038225350383452083,-0.00932499671514876,-0.003105558360369318,-0.001631731816661096,-0.004728340212074469,-0.0044629614792395305,-0.0031659911201517028,-0.005310738041471466,-0.00823617488648956,-0.004776400395509035,-0.007117796756298723,-0.006392238829243313,-0.005363414989263933,-0.004708936654118805,-0.007179783889583897,-0.004709340178189327,-0.007449041421757758,-0.006844897760408239,-0.00663531426237563,-0.006658105950089501,-0.002286479072244579,-0.005195450686726326,-0.0041956633027915476,-0.002747930502899461,-0.00461565028817163,-0.008315058815371945,-0.008818381826027935,-0.00926866006054142,-0.00737021243083413,-0.00892801049997516,-0.006305438827340259,-0.005996502360291301,-0.005119805029658654,-0.005988369835680516,-0.004876208780791189,-0.004111755743124881,-0.006916672682168691,-0.009635675581080715,-0.008842692296093562,-0.005087830667086374,-0.008400288274155355,-0.007595716910480614,-0.007867034171656184,-0.01016376576091798,-0.0071509241650419865,-0.006945916841010811,-0.00847643311281297,-0.008801445252542945,-0.01081365686095583,-0.007878216944989335,-0.009401013513742954,-0.008542951339245045,-0.007646720892179937,-0.010905929049429499,-0.004391131013367238
+52.335239,4.937379,-0.003651833513337764,-0.011376878505631224,-0.002070012778529941,-0.0023791231833100003,-0.004961134550099239,-0.005722535038345209,-0.00602499671514876,-0.005705558360369318,-0.0015317318166610965,-0.006028340212074469,-0.00596296147923953,-0.005065991120151703,-0.0062107380414714655,-0.00763617488648956,-0.005976400395509035,-0.005717796756298723,-0.007492238829243313,-0.006663414989263934,-0.0053089366541188045,-0.005679783889583897,-0.004409340178189327,-0.009049041421757758,-0.005644897760408239,-0.006435314262375629,-0.008358105950089501,-0.004686479072244579,-0.005795450686726327,-0.0064956633027915475,-0.00794793050289946,-0.00501565028817163,-0.006315058815371946,-0.009518381826027936,-0.007168660060541422,-0.00797021243083413,-0.00862801049997516,-0.0008054388273402586,-0.0083965023602913,-0.007819805029658655,-0.008088369835680516,-0.009476208780791189,-0.007011755743124882,-0.007816672682168692,-0.011635675581080715,-0.010142692296093563,-0.006387830667086374,-0.009200288274155356,-0.008395716910480614,-0.008767034171656184,-0.01126376576091798,-0.006750924165041987,-0.007045916841010812,-0.00897643311281297,-0.008301445252542946,-0.01021365686095583,-0.008778216944989335,-0.009701013513742954,-0.009342951339245044,-0.009646720892179937,-0.009705929049429499,-0.007591131013367239
+52.335242,4.937279,-0.0010518335133377639,-0.007276878505631224,-0.0019700127785299408,-0.00197912318331,-0.004361134550099239,-0.004822535038345208,-0.00672499671514876,-0.00040555836036931824,-0.002931731816661096,-0.00462834021207447,-0.004562961479239531,-0.004665991120151703,-0.005010738041471465,-0.00793617488648956,-0.004076400395509035,-0.005117796756298723,-0.003992238829243312,-0.006363414989263933,-0.0034089366541188043,-0.002379783889583897,-0.0025093401781893267,-0.009149041421757757,-0.005944897760408239,-0.0028353142623756293,-0.003058105950089501,-0.0005864790722445784,-0.0031954506867263267,-0.006195663302791548,-0.00884793050289946,-0.005515650288171629,-0.008715058815371947,-0.008018381826027937,-0.00906866006054142,-0.006870212430834129,-0.01002801049997516,-0.009305438827340258,-0.006196502360291302,-0.007219805029658654,-0.004788369835680516,-0.008976208780791188,-0.0046117557431248814,-0.0030166726821686906,0.0013643244189192848,-0.010242692296093562,-0.0035878306670863733,-0.008400288274155355,-0.004295716910480614,-0.008567034171656183,-0.00846376576091798,-0.003850924165041988,-0.0040459168410108114,-0.00957643311281297,-0.010901445252542946,-0.010913656860955832,-0.007178216944989335,-0.010601013513742954,-0.008142951339245044,-0.010646720892179938,-0.011105929049429497,-0.005591131013367238
+52.3351,4.937004,-0.005751833513337763,-0.0026768785056312232,-0.004470012778529941,-0.0021791231833100002,-0.004361134550099239,-0.006922535038345209,-0.00902499671514876,-0.006405558360369318,-0.00043173181666109626,-0.00902834021207447,-0.0047629614792395305,-0.006965991120151703,-0.007010738041471465,-0.00883617488648956,-0.005776400395509035,-0.007717796756298724,-0.008092238829243313,-0.005663414989263934,-0.0050089366541188046,-0.007079783889583897,-0.003309340178189327,-0.010749041421757758,-0.00794489776040824,-0.0062353142623756295,-0.0067581059500895005,-0.0034864790722445786,-0.005695450686726326,-0.008695663302791548,-0.004247930502899461,-0.00711565028817163,-0.007515058815371946,-0.010618381826027935,-0.007568660060541421,-0.00857021243083413,-0.00642801049997516,-0.00950543882734026,-0.0091965023602913,-0.008719805029658655,-0.007688369835680516,-0.008876208780791189,-0.00931175574312488,-0.00661667268216869,-0.011235675581080715,-0.009342692296093563,-0.0049878306670863735,-0.009900288274155355,-0.006395716910480615,-0.011067034171656184,-0.009863765760917981,-0.0055509241650419875,-0.007545916841010811,-0.01307643311281297,-0.011201445252542946,-0.011513656860955832,-0.010378216944989334,-0.010401013513742953,-0.011442951339245045,-0.010046720892179938,-0.012005929049429499,-0.0064911310133672386
+52.335138,4.936581,-0.007851833513337764,-0.012976878505631223,-0.007770012778529942,-0.0050791231833100005,-0.005461134550099239,-0.005122535038345208,-0.01172499671514876,-0.006705558360369318,-0.006431731816661096,-0.01262834021207447,-0.00606296147923953,-0.005465991120151703,-0.005710738041471465,-0.01393617488648956,-0.008776400395509035,-0.0075177967562987235,-0.009992238829243312,-0.0067634149892639335,-0.007908936654118804,-0.007579783889583897,-0.005609340178189327,-0.014749041421757758,-0.01464489776040824,-0.00843531426237563,-0.0087581059500895,-0.0036864790722445783,-0.005695450686726326,-0.012295663302791547,-0.01134793050289946,-0.00681565028817163,-0.010715058815371947,-0.010418381826027936,-0.011368660060541422,-0.01117021243083413,-0.014828010499975161,-0.011505438827340259,-0.008296502360291301,-0.009319805029658654,-0.007688369835680516,-0.011476208780791189,-0.00831175574312488,-0.0074166726821686905,-0.013535675581080715,-0.013642692296093563,-0.007887830667086374,-0.009700288274155354,-0.010495716910480615,-0.014067034171656183,-0.012063765760917979,-0.007950924165041987,-0.008545916841010812,-0.015476433112812969,-0.011201445252542946,-0.01731365686095583,-0.010978216944989334,-0.013301013513742953,-0.013642951339245044,-0.013746720892179936,-0.013305929049429498,-0.010891131013367238
+52.335087,4.936836,-0.003651833513337764,-0.009476878505631224,-0.001770012778529941,-0.00357912318331,-0.0033611345500992387,-0.005822535038345208,-0.00742499671514876,-0.004905558360369318,-0.002331731816661096,-0.00842834021207447,-0.004162961479239531,-0.003665991120151703,-0.004310738041471466,-0.00733617488648956,-0.004476400395509035,-0.005017796756298723,-0.007092238829243313,-0.004563414989263934,-0.004608936654118805,-0.005779783889583897,-0.0022093401781893268,-0.009449041421757757,-0.006844897760408239,-0.003135314262375629,-0.0063581059500895,-0.003286479072244579,-0.006795450686726327,-0.006695663302791547,-0.00934793050289946,-0.00471565028817163,-0.008515058815371946,-0.007518381826027936,-0.006768660060541422,-0.008670212430834129,-0.01122801049997516,-0.011105438827340258,-0.0078965023602913,-0.009019805029658655,-0.004888369835680515,-0.007376208780791189,-0.0035117557431248807,-0.006516672682168691,-0.013335675581080715,-0.011242692296093563,-0.005187830667086374,-0.008300288274155356,-0.006495716910480614,-0.008667034171656185,-0.00966376576091798,-0.003550924165041987,-0.0050459168410108115,-0.009176433112812969,-0.008201445252542945,-0.011213656860955832,-0.006178216944989335,-0.011001013513742953,-0.008742951339245044,-0.008946720892179938,-0.011305929049429498,-0.009191131013367238
+52.335127,4.936476,-0.0031518335133377635,-0.007476878505631224,-0.002870012778529941,-0.00517912318331,-0.005361134550099239,-0.005022535038345209,-0.00882499671514876,-0.005705558360369318,0.0007682681833389039,-0.00782834021207447,-0.00466296147923953,-0.005065991120151703,-0.005010738041471465,-0.006836174886489559,-0.005376400395509035,-0.004017796756298723,-0.004392238829243313,-0.0077634149892639335,-0.005108936654118805,-0.010179783889583897,-0.005709340178189327,-0.009149041421757757,-0.006944897760408238,-0.0065353142623756294,-0.007158105950089501,-0.003286479072244579,-0.004395450686726326,-0.006595663302791548,-0.010347930502899462,-0.005815650288171629,-0.009415058815371946,-0.009618381826027936,-0.008068660060541421,-0.01077021243083413,-0.00552801049997516,-0.00900543882734026,-0.007096502360291301,-0.008519805029658656,-0.006088369835680516,-0.007076208780791189,-0.005511755743124881,-0.007516672682168691,-0.010535675581080716,-0.010542692296093562,-0.0059878306670863735,-0.008300288274155356,-0.008095716910480614,-0.010067034171656183,-0.00916376576091798,-0.007350924165041987,-0.004945916841010812,-0.01017643311281297,-0.008301445252542946,-0.011013656860955831,-0.009178216944989335,-0.009101013513742954,-0.010242951339245045,-0.008546720892179937,-0.010005929049429499,-0.002291131013367238
+52.335082,4.936306,-0.002351833513337764,-0.004176878505631224,0.001329987221470059,-0.00127912318331,-0.004461134550099239,-0.0004225350383452085,-0.00412499671514876,-0.0026055583603693186,0.005668268183338904,-0.004128340212074469,-0.002462961479239531,-0.001565991120151703,-0.001410738041471465,-0.0024361748864895594,0.00042359960449096475,0.0010822032437012765,0.00010776117075668749,-0.0011634149892639336,-0.0012089366541188046,0.0005202161104161028,0.0038906598218106728,-0.004049041421757758,5.510223959176051e-05,0.0031646857376243704,-0.0005581059500895009,0.0013135209277554214,0.0020045493132736735,-0.0010956633027915477,-0.0014479305028994613,-0.0003156502881716298,-0.002615058815371946,-0.0062183818260279355,-0.0022686600605414213,-0.00407021243083413,-0.00492801049997516,-0.004105438827340258,-0.000796502360291301,-0.0020198050296586544,-0.0017883698356805156,-0.0018762087807911887,-0.0012117557431248812,0.0013833273178313094,-0.0029356755810807152,-0.0024426922960935626,0.006112169332913626,0.0004997117258446449,0.0026042830895193856,0.003832965828343816,-0.0014637657609179802,0.004649075834958012,0.0020540831589891885,-0.005876433112812969,0.0002985547474570543,-0.003913656860955831,-0.0018782169449893353,-0.0016010135137429545,-0.002942951339245045,-0.003346720892179937,-0.0015059290494294985,-0.0006911310133672381
+52.334936,4.936505,0.001248166486662236,-0.0024768785056312236,-0.0007700127785299409,0.0006208768166899998,-0.0005611345500992388,-0.0012225350383452086,-0.0010249967151487601,9.444163963068177e-05,0.003968268183338904,-0.0023283402120744695,-0.00036296147923953084,0.0021340088798482973,0.00028926195852853483,-0.0010361748864895597,0.002223599604490965,0.0015822032437012765,-0.00029223882924331237,0.0007365850107360664,0.0022910633458811955,0.0013202161104161028,0.002590659821810673,-0.0033490414217577577,0.0009551022395917605,0.0021646857376243704,-0.001258105950089501,0.0028135209277554214,0.0012045493132736733,-0.001195663302791548,-0.001647930502899461,0.0003843497118283703,-0.0019150588153719463,-0.004518381826027936,-0.0019686600605414214,-0.0015702124308341295,-0.0017280104999751603,-0.0026054388273402587,-0.000596502360291301,-0.0021198050296586547,0.0009116301643194845,-0.0022762087807911887,0.0008882442568751189,0.0020833273178313093,-0.0008356755810807151,-0.0007426922960935626,0.0030121693329136267,0.0012997117258446449,0.0017042830895193856,0.00023296582834381597,-0.00036376576091798037,0.0037490758349580126,0.0022540831589891886,-0.0006764331128129694,-0.0008014452525429458,-0.001113656860955831,0.0007217830550106648,-0.0012010135137429546,-0.0008429513392450453,-0.002146720892179937,-0.0020059290494294987,-9.113101336723803e-05
+52.334879,4.935781,-0.006651833513337763,-0.0033768785056312233,-0.005970012778529941,-0.00457912318331,-0.006661134550099239,-0.007522535038345209,-0.00932499671514876,-0.007705558360369318,-0.004831731816661097,-0.00912834021207447,-0.00706296147923953,-0.006565991120151703,-0.006810738041471465,-0.01103617488648956,-0.007976400395509035,-0.008317796756298724,-0.009392238829243312,-0.0077634149892639335,-0.006608936654118805,-0.006679783889583897,-0.005809340178189327,-0.011349041421757758,-0.00794489776040824,-0.00773531426237563,-0.009158105950089502,-0.005786479072244579,-0.0070954506867263265,-0.009095663302791547,-0.00974793050289946,-0.00851565028817163,-0.009515058815371945,-0.011718381826027935,-0.009468660060541421,-0.00937021243083413,-0.010828010499975161,-0.011205438827340257,-0.0096965023602913,-0.010119805029658655,-0.010188369835680515,-0.012076208780791188,-0.009211755743124881,-0.009816672682168692,-0.013135675581080716,-0.011842692296093563,-0.008687830667086373,-0.012000288274155354,-0.010995716910480614,-0.009867034171656184,-0.01356376576091798,-0.008750924165041987,-0.008345916841010811,-0.012076433112812968,-0.011301445252542945,-0.012913656860955832,-0.010778216944989335,-0.011501013513742954,-0.012642951339245045,-0.013046720892179937,-0.012905929049429499,-0.011491131013367238
+52.334781,4.936039,-0.0009518335133377636,-0.005576878505631224,-0.001470012778529941,2.0876816689999883e-05,-0.0012611345500992386,-0.0030225350383452083,-0.00372499671514876,-0.0038055583603693183,-0.0007317318166610962,-0.0048283402120744695,-0.0012629614792395308,-0.00016599112015170292,-0.002910738041471465,-0.0037361748864895594,-0.0016764003955090352,-0.0032177967562987235,-0.0020922388292433126,-0.0028634149892639337,-0.0009089366541188045,-0.001779783889583897,-0.0008093401781893272,-0.004049041421757758,-0.00304489776040824,0.0027646857376243707,-0.003158105950089501,-8.647907224457857e-05,-0.0021954506867263267,-0.003895663302791548,-0.007647930502899461,-0.0008156502881716298,-0.005115058815371946,-0.005618381826027936,-0.004268660060541421,-0.0012702124308341294,-0.009128010499975161,-0.0034054388273402586,-0.0027965023602913013,-0.0026198050296586542,-0.0030883698356805153,-0.0037762087807911887,-0.0009117557431248812,-0.0018166726821686905,-0.011435675581080716,-0.0031426922960935627,-0.0002878306670863733,-0.004300288274155355,-0.0022957169104806142,-0.002567034171656184,-0.00586376576091798,-0.0002509241650419875,-0.0006459168410108114,-0.008276433112812969,-0.0026014452525429457,-0.002813656860955831,-0.0036782169449893353,-0.006601013513742955,-0.002542951339245045,-0.0062467208921799374,-0.004605929049429498,-0.004991131013367238
+52.334754,4.936106,0.002948166486662236,-0.0028768785056312233,0.00022998722147005908,0.0018208768166899998,0.0004388654499007613,0.00047746496165479153,-0.00252499671514876,-0.0007055583603693182,0.0017682681833389039,-0.0035283402120744696,-0.0006629614792395308,3.400887984829695e-05,-0.0006107380414714651,-0.0046361748864895596,-0.0016764003955090352,-0.0022177967562987235,-9.223882924331238e-05,-0.0003634149892639335,0.0022910633458811955,0.0008202161104161028,0.001890659821810673,-0.003149041421757757,0.0009551022395917605,-0.0004353142623756294,-0.000858105950089501,0.0017135209277554214,-0.0012954506867263265,0.0010043366972084522,0.0001520694971005388,0.0011843497118283702,-0.0010150588153719463,-0.003118381826027936,0.0015313399394585787,-0.0025702124308341293,-0.0021280104999751607,-0.0028054388273402583,-0.000396502360291301,0.00048019497034134566,-0.00038836983568051557,-0.0015762087807911886,0.000788244256875119,-0.00011667268216869052,-0.002835675581080715,-0.0025426922960935625,0.0010121693329136266,0.000999711725844645,-0.0024957169104806143,-0.002767034171656184,-0.0024637657609179802,-0.0005509241650419874,0.0003540831589891885,0.0020235668871870305,-0.0011014452525429457,-0.00041365686095583097,0.0012217830550106646,-0.0012010135137429546,-0.0003429513392450452,0.0013532791078200628,-0.00040592904942949844,0.0007088689866327619
+52.334719,4.935984,-0.006851833513337764,-0.008976878505631223,-0.007170012778529941,-0.0060791231833100005,-0.006961134550099239,-0.007122535038345208,-0.00842499671514876,-0.00820555836036932,-0.004631731816661096,-0.00802834021207447,-0.0067629614792395305,-0.006165991120151703,-0.006710738041471465,-0.010036174886489559,-0.008376400395509036,-0.0065177967562987235,-0.007592238829243312,-0.006263414989263934,-0.006708936654118805,-0.006479783889583897,-0.004709340178189327,-0.007149041421757757,-0.007244897760408238,-0.0075353142623756295,-0.0081581059500895,-0.005686479072244578,-0.005995450686726326,-0.005395663302791547,-0.004247930502899461,-0.00851565028817163,-0.0028150588153719462,-0.009018381826027936,-0.01126866006054142,-0.00887021243083413,-0.011128010499975161,-0.009405438827340257,-0.0109965023602913,-0.013419805029658656,-0.010188369835680515,-0.009276208780791188,-0.00861175574312488,-0.009216672682168692,-0.007735675581080716,-0.011242692296093563,-0.007887830667086374,-0.010700288274155355,-0.009595716910480613,-0.009967034171656184,-0.01126376576091798,-0.007850924165041987,-0.008745916841010812,-0.008376433112812968,-0.011601445252542945,-0.01031365686095583,-0.010478216944989335,-0.011601013513742955,-0.010542951339245045,-0.009346720892179937,-0.009105929049429497,-0.008691131013367239
+52.334732,4.935848,-0.0038518335133377636,-0.009676878505631224,-0.006670012778529941,-0.00587912318331,-0.006561134550099239,-0.006822535038345208,-0.00812499671514876,-0.007305558360369319,-0.005231731816661096,-0.01192834021207447,-0.006862961479239531,-0.0073659911201517025,-0.008510738041471465,-0.01133617488648956,-0.007876400395509036,-0.006717796756298723,-0.007392238829243313,-0.006963414989263934,-0.006208936654118805,-0.007979783889583899,-0.005009340178189327,-0.010949041421757757,-0.007344897760408239,-0.007635314262375629,-0.0081581059500895,-0.005186479072244579,-0.007495450686726326,-0.011395663302791547,-0.00994793050289946,-0.006115650288171629,-0.011415058815371946,-0.009118381826027935,-0.01016866006054142,-0.01017021243083413,-0.01012801049997516,-0.010005438827340257,-0.0088965023602913,-0.008919805029658655,-0.010688369835680516,-0.008276208780791189,-0.007211755743124882,-0.00401667268216869,-0.012535675581080716,-0.013042692296093563,-0.007187830667086373,-0.011400288274155354,-0.008795716910480615,-0.009067034171656184,-0.01236376576091798,-0.008550924165041987,-0.007345916841010812,-0.013476433112812969,-0.009501445252542946,-0.012913656860955832,-0.008778216944989335,-0.011801013513742954,-0.010542951339245045,-0.012446720892179937,-0.013305929049429498,-0.011191131013367238
+52.334717,4.935907,-0.0031518335133377635,-0.0034768785056312236,-0.0002700127785299409,-0.0036791231833100003,-0.005761134550099239,-0.008422535038345209,-0.00442499671514876,-0.006705558360369318,-0.0031317318166610964,-0.004128340212074469,-0.005162961479239531,-0.006465991120151703,-0.006310738041471466,-0.0059361748864895595,-0.008176400395509036,-0.007417796756298724,-0.006892238829243312,-0.007463414989263934,-0.005808936654118805,-0.006979783889583897,-0.002309340178189327,-0.006349041421757758,-0.00614489776040824,-0.007335314262375629,-0.009458105950089502,-0.004386479072244579,-0.006695450686726326,-0.006095663302791547,-0.006847930502899461,-0.00631565028817163,-0.012815058815371946,-0.009218381826027936,-0.004368660060541422,-0.006870212430834129,-0.00612801049997516,-0.01140543882734026,-0.007796502360291301,-0.006319805029658654,-0.008688369835680516,-0.009776208780791188,-0.007511755743124882,-0.00911667268216869,-0.007735675581080716,-0.010742692296093563,-0.006487830667086374,-0.010200288274155355,-0.009595716910480613,-0.0052670341716561835,-0.011663765760917981,-0.006150924165041987,-0.009145916841010812,-0.01047643311281297,-0.005901445252542946,-0.006213656860955831,-0.009278216944989334,-0.0062010135137429544,-0.007342951339245046,-0.008346720892179938,-0.010005929049429499,-0.008891131013367238
+52.334586,4.93497,-0.005051833513337763,-0.009276878505631223,-0.007070012778529941,-0.005779123183310001,-0.002161134550099239,-0.0030225350383452083,-0.0072249967151487605,-0.006705558360369318,-0.0037317318166610962,-0.007628340212074469,-0.005162961479239531,-0.006465991120151703,-0.006110738041471465,-0.01243617488648956,-0.005276400395509036,-0.0045177967562987234,-0.0036922388292433125,-0.005563414989263934,-0.005108936654118805,-0.004179783889583897,-0.001709340178189327,-0.008649041421757757,-0.00494489776040824,-0.005835314262375629,-0.004558105950089501,-0.004186479072244578,-0.003395450686726327,-0.007795663302791548,-0.004747930502899461,-0.00781565028817163,-0.009915058815371946,-0.013718381826027935,-0.00836866006054142,-0.007170212430834129,-0.012228010499975161,-0.008305438827340259,-0.0083965023602913,-0.008419805029658655,-0.009088369835680515,-0.006976208780791188,-0.0076117557431248815,-0.00671667268216869,-0.010135675581080715,-0.008542692296093562,-0.004387830667086374,-0.008800288274155355,-0.006195716910480614,-0.006967034171656184,-0.01196376576091798,-0.004450924165041987,-0.00844591684101081,-0.00927643311281297,-0.008901445252542946,-0.010713656860955831,-0.008378216944989334,-0.006101013513742955,-0.007542951339245045,-0.008146720892179937,-0.008705929049429498,-0.007491131013367238
+52.334534,4.935324,-0.002651833513337764,0.0005231214943687765,-0.0004700127785299409,-0.0013791231833100003,-0.0017611345500992387,-0.0016225350383452086,-0.00392499671514876,-0.002705558360369318,0.0003682681833389037,-0.00422834021207447,-0.0017629614792395308,-0.0016659911201517032,-0.003010738041471465,-0.00433617488648956,-0.003976400395509035,-0.0032177967562987235,-0.003892238829243312,-0.0018634149892639334,-0.0006089366541188046,-0.0009797838895838971,0.00019065982181067282,-0.0007490414217577575,-0.0004448977604082395,-0.002135314262375629,-0.003358105950089501,-0.0009864790722445786,-0.002095450686726327,-0.003495663302791548,-0.0012479305028994612,-0.0016156502881716297,-0.0028150588153719462,-0.005618381826027936,-0.004368660060541422,-0.0049702124308341296,-0.0033280104999751604,-0.005605438827340259,-0.0027965023602913013,-0.004219805029658654,-0.0031883698356805156,-0.0031762087807911885,-0.002511755743124881,-0.0029166726821686904,0.002264324418919285,-0.0008426922960935626,-0.0007878306670863733,-0.004500288274155355,-0.0032957169104806143,-0.004367034171656184,-0.006263765760917981,-0.0006509241650419874,-0.0010459168410108116,-0.0022764331128129695,-0.0031014452525429453,-0.006913656860955831,-0.0042782169449893355,-0.006101013513742955,-0.005142951339245046,-0.0049467208921799375,-0.007305929049429498,-0.00019113101336723807
+52.334575,4.934985,-0.004851833513337764,-0.009776878505631224,-0.004770012778529941,-0.0023791231833100003,-0.002161134550099239,-0.005422535038345208,-0.00802499671514876,-0.003405558360369318,-0.001631731816661096,-0.008928340212074469,-0.0044629614792395305,-0.002465991120151703,-0.003010738041471465,-0.00633617488648956,-0.003276400395509035,-0.004117796756298723,-0.0036922388292433125,-0.003963414989263933,-0.0020089366541188045,-0.0038797838895838974,-0.0015093401781893273,-0.006649041421757758,-0.006844897760408239,-0.003435314262375629,-0.004358105950089501,-0.0018864790722445787,-0.0038954506867263264,-0.007695663302791547,-0.006847930502899461,-0.0023156502881716296,-0.008515058815371946,-0.011418381826027935,-0.006468660060541422,-0.00857021243083413,-0.01142801049997516,-0.01020543882734026,-0.0064965023602913015,-0.007119805029658654,-0.0049883698356805155,-0.006476208780791189,-0.003911755743124881,-0.0035166726821686907,-0.009735675581080716,-0.010142692296093563,-0.0016878306670863733,-0.008400288274155355,-0.0046957169104806145,-0.014967034171656183,-0.00826376576091798,-0.002950924165041987,-0.0018459168410108115,-0.009076433112812969,-0.010101445252542945,-0.0065136568609558305,-0.009578216944989334,-0.008001013513742954,-0.007342951339245046,-0.008346720892179938,-0.0052059290494294985,-0.008191131013367239
+52.334499,4.9352,-0.0015518335133377639,-0.010276878505631224,-0.002870012778529941,-0.00227912318331,-0.0028611345500992383,-0.0024225350383452085,-0.00552499671514876,-0.0029055583603693185,-0.0039317318166610955,-0.00522834021207447,-0.002862961479239531,-0.001965991120151703,-0.0017107380414714652,-0.006836174886489559,-0.003476400395509035,-0.0022177967562987235,-0.003492238829243312,-0.0035634149892639338,-8.936654118804556e-06,-0.001979783889583897,-0.000409340178189327,-0.010049041421757757,-0.004844897760408239,-0.0033353142623756297,-0.002958105950089501,0.0005135209277554215,-0.0010954506867263264,-0.005895663302791548,-0.008447930502899461,-0.0026156502881716295,-0.009215058815371945,-0.006618381826027937,-0.007968660060541422,-0.006870212430834129,-0.011328010499975161,-0.010305438827340259,-0.0064965023602913015,-0.0025198050296586544,-0.0039883698356805155,-0.0074762087807911885,-0.002711755743124881,-0.004216672682168691,-0.007435675581080716,-0.010242692296093562,-0.0009878306670863734,-0.004500288274155355,-0.0046957169104806145,-0.005067034171656184,-0.00676376576091798,-0.0020509241650419874,-0.003245916841010812,-0.00927643311281297,-0.0065014452525429456,-0.01031365686095583,-0.004378216944989336,-0.006601013513742955,-0.006942951339245045,-0.008846720892179936,-0.007505929049429498,-0.009991131013367238
+52.33448,4.935235,-0.003351833513337763,-0.007776878505631224,-0.003070012778529941,-0.0006791231833100002,-0.0028611345500992383,-0.0018225350383452086,-0.00542499671514876,-0.0035055583603693184,-0.00013173181666109634,-0.005928340212074469,-0.0016629614792395308,-0.0005659911201517031,-0.002710738041471465,-0.0069361748864895595,-0.003376400395509035,-0.0029177967562987236,-0.0032922388292433123,-0.0020634149892639333,-0.0005089366541188046,-0.002079783889583897,-0.004609340178189327,-0.007349041421757758,-0.00274489776040824,6.468573762437053e-05,-0.0038581059500895007,-0.0020864790722445784,-0.0012954506867263265,-0.006195663302791548,-0.006047930502899461,-0.0030156502881716297,-0.004815058815371946,-0.008718381826027936,-0.006668660060541422,-0.00857021243083413,-0.00942801049997516,-0.008105438827340258,-0.0035965023602913013,-0.004819805029658654,-0.0034883698356805155,-0.0051762087807911885,-0.002211755743124881,-0.0022166726821686903,-0.010035675581080716,-0.007742692296093563,-8.783066708637345e-05,-0.004700288274155355,-0.0029957169104806143,-0.007867034171656184,-0.00576376576091798,-0.0005509241650419874,5.408315898918848e-05,-0.0071764331128129685,-0.0058014452525429454,-0.01031365686095583,-0.0065782169449893355,-0.010701013513742953,-0.007042951339245046,-0.006646720892179937,-0.008605929049429499,-0.006891131013367238
+52.33446,4.93517,0.00014816648666223626,-0.0005768785056312236,-0.003070012778529941,-0.0013791231833100003,-0.0018611345500992385,-0.0020225350383452083,-0.0029249967151487597,-0.002405558360369318,-0.000831731816661096,-0.00422834021207447,-0.0016629614792395308,-0.000865991120151703,-0.0017107380414714652,-0.00443617488648956,-0.004576400395509036,-0.0016177967562987234,-0.0033922388292433126,-0.0019634149892639335,-0.0013089366541188044,-0.002279783889583897,0.0005906598218106728,-0.006549041421757757,-0.0023448977604082397,-0.0024353142623756295,-0.0037581059500895013,0.0026135209277554214,-0.0013954506867263267,-0.0041956633027915476,-0.00524793050289946,-0.0032156502881716294,-0.0010150588153719463,-0.007018381826027936,-0.0026686600605414215,-0.005570212430834129,-0.00442801049997516,-0.0036054388273402587,-0.0030965023602913012,-0.0015198050296586544,-0.0032883698356805154,-0.0013762087807911887,-0.0015117557431248811,-0.0030166726821686906,-0.006935675581080715,-0.006442692296093563,-0.00038783066708637337,-0.005300288274155355,-0.0018957169104806143,-0.0018670341716561841,-0.00716376576091798,-0.0019509241650419876,0.00025408315898918857,-0.005676433112812969,-0.0012014452525429457,-0.006113656860955831,-0.001778216944989335,-0.0025010135137429547,-0.004142951339245046,-0.002446720892179937,-0.007005929049429498,0.001808868986632762
+52.328983,4.918031,-0.004551833513337764,-0.010876878505631224,-0.002670012778529941,-0.012879123183310002,-0.0029611345500992385,-0.004322535038345209,-0.0038249967151487603,-0.003305558360369318,-0.0022317318166610958,-0.00492834021207447,-0.002862961479239531,-0.002265991120151703,-0.002210738041471465,-0.007136174886489559,-0.003676400395509035,-0.0015177967562987236,-0.0037922388292433128,-0.002663414989263933,-0.0035089366541188045,-0.0038797838895838974,-0.001709340178189327,-0.008549041421757757,-0.00274489776040824,-0.0035353142623756294,-0.0090581059500895,-0.0037864790722445785,-0.003795450686726327,-0.003895663302791548,-0.001647930502899461,-0.0022156502881716294,-0.004415058815371946,-0.011018381826027936,-0.005068660060541422,-0.00847021243083413,-0.00692801049997516,-0.004405438827340258,-0.005096502360291301,-0.008619805029658655,-0.004788369835680516,-0.005376208780791189,-0.002811755743124881,-0.00471667268216869,-0.008635675581080715,-0.009842692296093563,-0.004887830667086373,-0.005400288274155355,-0.0012957169104806142,-0.013567034171656184,-0.009863765760917981,-0.005150924165041988,-0.0027459168410108115,-0.0020764331128129694,-0.006701445252542945,-0.00881365686095583,-0.008778216944989335,-0.007101013513742955,-0.005042951339245046,-0.009846720892179937,-0.007505929049429498,-0.008591131013367238
+52.328941,4.918129,-0.0032518335133377638,-0.009576878505631223,-0.003070012778529941,0.0006208768166899998,-0.004561134550099239,-0.006522535038345208,-0.00412499671514876,-0.005705558360369318,-3.173181666109607e-05,-0.005628340212074469,-0.002362961479239531,-0.002665991120151703,-0.0017107380414714652,-0.00413617488648956,-0.002376400395509035,-0.0031177967562987232,-0.003992238829243312,-0.004663414989263934,-0.003708936654118804,-0.0026797838895838972,0.0006906598218106728,-0.004149041421757757,-0.0018448977604082393,-0.004835314262375629,-0.007558105950089501,-0.0024864790722445786,-0.0012954506867263265,-0.002795663302791548,-0.004847930502899461,-0.0010156502881716299,-0.0017150588153719464,-0.003318381826027936,-0.0013686600605414215,-0.0029702124308341295,-0.0032280104999751606,-0.005805438827340258,-0.004096502360291301,-0.004219805029658654,-0.005888369835680515,-0.007676208780791189,-0.004511755743124881,-0.0031166726821686905,-0.007835675581080715,-0.004942692296093562,0.0035121693329136262,-0.007200288274155355,-0.006995716910480614,-0.006367034171656184,-0.0061637657609179795,-0.0021509241650419873,-0.0018459168410108115,-0.005676433112812969,-0.0039014452525429457,-0.007413656860955831,-0.005178216944989335,-0.004501013513742954,-0.006542951339245045,-0.005246720892179937,-0.007105929049429498,-0.004291131013367238
+52.328925,4.918186,-0.005851833513337764,-0.009176878505631224,-0.003170012778529941,-0.0037791231833100005,-0.004561134550099239,-0.0052225350383452085,-0.00532499671514876,-0.004205558360369318,0.0006682681833389038,-0.00812834021207447,-0.004262961479239531,-0.0031659911201517028,-0.004110738041471465,-0.005536174886489559,-0.003776400395509035,-0.004717796756298723,-0.005492238829243313,-0.004563414989263934,-0.0050089366541188046,-0.003479783889583897,-0.001409340178189327,-0.006149041421757757,-0.0032448977604082395,-0.0039353142623756296,-0.007158105950089501,-0.0037864790722445785,-0.0047954506867263266,-0.0044956633027915475,-0.00794793050289946,-0.0039156502881716295,-0.005415058815371946,-0.007918381826027936,-0.005268660060541421,-0.00537021243083413,-0.004528010499975161,-0.006905438827340259,-0.005896502360291301,-0.006819805029658654,-0.006888369835680515,-0.0071762087807911885,-0.0053117557431248815,-0.0051166726821686905,-0.009635675581080715,-0.006842692296093562,-0.005887830667086373,-0.006500288274155355,-0.006595716910480614,-0.009767034171656183,-0.008763765760917981,-0.004250924165041987,-0.004445916841010812,-0.006276433112812969,-0.006901445252542946,-0.008113656860955831,-0.007778216944989335,-0.006001013513742955,-0.007042951339245046,-0.0072467208921799375,-0.008405929049429498,-0.0054911310133672385
+52.328928,4.917931,-0.004551833513337764,-0.008876878505631224,-0.004570012778529941,-0.00227912318331,-0.004361134550099239,-0.004522535038345208,-0.00562499671514876,-0.004205558360369318,-0.0014317318166610963,-0.006328340212074469,-0.002662961479239531,-0.002465991120151703,-0.0036107380414714648,-0.006136174886489559,-0.004876400395509036,-0.002717796756298724,-0.0046922388292433125,-0.0034634149892639335,-0.004808936654118805,-0.0038797838895838974,-0.0016093401781893271,-0.004449041421757757,-0.0002448977604082394,-0.002635314262375629,0.002341894049910499,0.003913520927755421,0.0029045493132736733,-0.002895663302791548,0.00045206949710053883,-0.0036156502881716296,-0.006315058815371946,-0.007718381826027937,-0.0034686600605414214,-0.004470212430834129,-0.00472801049997516,-0.006605438827340259,-0.0051965023602913015,-0.006619805029658654,-0.0052883698356805155,-0.004876208780791189,-0.006211755743124881,-0.0033166726821686906,-0.005735675581080716,-0.008742692296093563,-0.007087830667086374,-0.006400288274155355,-0.006495716910480614,-0.009267034171656184,-0.007963765760917979,-0.005050924165041987,-0.003945916841010812,-0.005876433112812969,-0.007901445252542945,-0.00941365686095583,-0.008078216944989334,-0.010601013513742954,-0.009442951339245045,-0.007946720892179937,-0.010805929049429498,-0.009091131013367238
+52.328908,4.918041,-0.0041518335133377635,-0.011176878505631224,-0.005270012778529941,-0.00617912318331,-0.003761134550099239,-0.0027225350383452084,-0.00822499671514876,-0.0028055583603693183,-0.004431731816661096,-0.00832834021207447,-0.003462961479239531,-0.002565991120151703,-0.003010738041471465,-0.00633617488648956,-0.004976400395509035,-0.0031177967562987232,-0.007192238829243313,-0.006563414989263934,-0.0053089366541188045,-0.006679783889583897,-0.0021093401781893274,-0.008249041421757758,-0.0022448977604082395,-0.004835314262375629,-0.006858105950089501,-0.004786479072244578,-0.0047954506867263266,-0.003995663302791548,-0.00624793050289946,-0.005215650288171629,-0.007615058815371946,-0.007918381826027936,-0.00866866006054142,-0.00597021243083413,-0.00692801049997516,-0.006905438827340259,-0.006196502360291302,-0.006319805029658654,-0.008788369835680515,-0.008076208780791188,-0.006411755743124882,-0.008416672682168691,-0.008435675581080715,-0.008742692296093563,-0.011287830667086374,-0.007200288274155355,-0.005095716910480615,-0.008467034171656184,-0.00886376576091798,-0.004350924165041988,-0.006545916841010812,-0.005376433112812969,-0.0055014452525429455,-0.009213656860955832,-0.008578216944989335,-0.006401013513742955,-0.008642951339245045,-0.008246720892179937,-0.008705929049429498,-0.005291131013367238
+52.328879,4.918182,-0.0010518335133377639,-0.006876878505631224,-0.0008700127785299409,-0.00157912318331,-0.002461134550099239,-0.0019225350383452085,-0.0026249967151487598,-0.002305558360369318,0.0005682681833389038,-0.005328340212074469,-0.0015629614792395307,-0.000865991120151703,-0.002710738041471465,-0.00503617488648956,-0.003876400395509035,-0.003417796756298723,-0.005192238829243313,-0.0034634149892639335,-0.0033089366541188044,-0.003479783889583897,-0.0003093401781893272,-0.006049041421757758,-0.0014448977604082395,-0.0029353142623756295,-0.0063581059500895,-0.0021864790722445787,-0.0035954506867263264,-0.002795663302791548,-0.004147930502899461,-0.00211565028817163,-0.0032150588153719464,-0.005118381826027936,-0.003968660060541421,-0.0037702124308341294,-0.0040280104999751605,-0.005905438827340259,-0.0041965023602913015,-0.0057198050296586546,-0.006388369835680516,-0.006876208780791189,-0.005011755743124882,-0.004216672682168691,-0.011235675581080715,-0.006142692296093562,-0.004487830667086374,-0.005100288274155355,-0.004495716910480614,-0.0072670341716561835,-0.00806376576091798,-0.0033509241650419874,-0.0026459168410108112,-0.005076433112812969,-0.005001445252542945,-0.007213656860955831,-0.006278216944989336,-0.006101013513742955,-0.006742951339245046,-0.005646720892179937,-0.006005929049429498,-0.004391131013367238
+52.328874,4.91816,-0.0016518335133377637,-0.009176878505631224,-0.0007700127785299409,-0.0013791231833100003,-0.0022611345500992384,-0.0026225350383452086,-0.00252499671514876,-0.0026055583603693186,0.0011682681833389038,-0.0031283402120744694,-0.001962961479239531,-0.0009659911201517031,-0.003410738041471465,-0.004236174886489559,-0.004976400395509035,-0.0014177967562987235,-0.003192238829243312,-0.0028634149892639337,-0.0033089366541188044,-0.002479783889583897,0.001390659821810673,-0.0032490414217577574,-0.0009448977604082395,-0.0035353142623756294,-0.0038581059500895007,-0.002286479072244579,-0.003395450686726327,-0.003095663302791548,-0.006047930502899461,-0.0014156502881716296,-0.004315058815371946,-0.0062183818260279355,-0.0029686600605414214,-0.0031702124308341296,-0.00492801049997516,-0.0055054388273402585,-0.004096502360291301,-0.003519805029658654,-0.0049883698356805155,-0.004076208780791188,-0.0043117557431248815,-0.004516672682168691,-0.015835675581080715,-0.011442692296093562,-0.0033878306670863736,-0.003700288274155355,-0.0046957169104806145,-0.003767034171656184,-0.00676376576091798,-0.0018509241650419873,-0.0021459168410108117,-0.0052764331128129695,-0.0039014452525429457,-0.006413656860955831,-0.006178216944989335,-0.004501013513742954,-0.005442951339245046,-0.0038467208921799372,-0.004505929049429498,-0.005591131013367238
+52.328863,4.918085,-0.0028518335133377636,-0.009476878505631224,-0.0004700127785299409,-0.00287912318331,-0.0032611345500992385,-0.0039225350383452085,-0.00312499671514876,-0.0035055583603693184,0.0008682681833389039,-0.0013283402120744697,-0.003362961479239531,-0.0009659911201517031,-0.0011107380414714652,-0.0023361748864895596,-0.001376400395509035,0.0005822032437012765,-0.003892238829243312,-0.0007634149892639335,-0.0015089366541188045,-0.0003797838895838972,-0.0005093401781893273,-0.0033490414217577577,0.0007551022395917604,0.0027646857376243707,-0.003358105950089501,-0.0005864790722445784,-0.0028954506867263268,-0.003095663302791548,-0.005347930502899461,-0.0025156502881716293,0.00048494118462805364,-0.002318381826027936,0.0005313399394585786,-0.0009702124308341295,-0.006828010499975161,-0.0037054388273402585,-0.0025965023602913012,-0.0036198050296586542,-0.0038883698356805157,-0.004876208780791189,-0.0008117557431248811,-0.0012166726821686905,-0.007535675581080715,-0.004842692296093563,-0.0004878306670863734,-0.001000288274155355,-0.0021957169104806144,-0.003867034171656184,-0.00336376576091798,-0.0021509241650419873,-0.002945916841010812,-0.0019764331128129696,-0.0017014452525429458,-0.004613656860955831,-0.003978216944989336,-0.002701013513742955,-0.004542951339245045,-0.004346720892179937,-0.005605929049429498,-0.0033911310133672382
+52.32879,4.917785,-0.0030518335133377632,-0.009176878505631224,-0.0036700127785299413,-0.00207912318331,-0.0029611345500992385,-0.0028225350383452087,-0.0035249967151487604,-0.004505558360369318,0.00016826818333890402,-0.0023283402120744695,-0.0047629614792395305,-0.005865991120151703,-0.004710738041471465,-0.008636174886489559,-0.006876400395509036,-0.0065177967562987235,-0.009192238829243311,-0.007663414989263934,-0.007608936654118804,-0.007179783889583897,-0.0022093401781893268,-0.006449041421757758,-0.0028448977604082393,-0.005835314262375629,-0.007658105950089501,-0.0019864790722445786,-0.003995450686726326,-0.002595663302791548,-0.007747930502899461,-0.0005156502881716299,-0.008915058815371945,-0.008718381826027936,-0.007468660060541422,-0.005870212430834129,-0.008828010499975161,-0.011705438827340257,-0.0044965023602913014,-0.009919805029658654,-0.006788369835680516,-0.011876208780791188,-0.009811755743124881,-0.00911667268216869,-0.016935675581080716,-0.009442692296093562,-0.010587830667086373,-0.011100288274155354,-0.007395716910480615,-0.007667034171656184,-0.01016376576091798,-0.005650924165041987,-0.005445916841010812,-0.00487643311281297,-0.005401445252542945,-0.007313656860955831,-0.008878216944989335,-0.005701013513742955,-0.006542951339245045,-0.005646720892179937,-0.005005929049429498,-0.005891131013367239
+52.328758,4.917586,-0.0018518335133377638,-0.009176878505631224,-0.002870012778529941,-0.00197912318331,-0.0039611345500992386,-0.0033225350383452087,-0.00452499671514876,-0.004105558360369318,-0.00013173181666109634,-0.006628340212074469,-0.00466296147923953,-0.005565991120151703,-0.005410738041471465,-0.00953617488648956,-0.006676400395509035,-0.006817796756298723,-0.007792238829243313,-0.008063414989263933,-0.010308936654118805,-0.008379783889583898,-0.005509340178189327,-0.007149041421757757,-0.005444897760408239,-0.0065353142623756294,-0.0077581059500895005,-0.002986479072244578,-0.006195450686726326,-0.001895663302791548,-0.005747930502899461,-0.0009156502881716296,-0.004615058815371946,-0.005018381826027936,-0.005468660060541422,-0.00637021243083413,-0.0033280104999751604,-0.005905438827340259,-0.003996502360291301,-0.0060198050296586545,-0.004888369835680515,-0.006276208780791189,-0.005711755743124882,-0.006516672682168691,-0.010035675581080716,-0.008642692296093563,-0.008587830667086373,-0.007400288274155355,-0.005995716910480614,-0.006767034171656184,-0.00716376576091798,-0.006850924165041987,-0.00844591684101081,-0.0052764331128129695,-0.006101445252542945,-0.007513656860955831,-0.0075782169449893355,-0.008801013513742954,-0.007942951339245045,-0.004046720892179937,-0.006505929049429498,-0.0054911310133672385
+52.328831,4.916958,-0.0007518335133377639,-0.006876878505631224,-0.0016700127785299408,0.00012087681668999993,3.88654499007613e-05,0.0034774649616547914,-0.0029249967151487597,-0.0009055583603693183,0.0005682681833389038,-0.00362834021207447,0.0005370385207604691,0.001934008879848297,0.0014892619585285347,-0.0012361748864895595,0.0001235996044909648,0.0012822032437012766,0.0022077611707566874,0.0016365850107360666,0.0012910633458811955,0.0011202161104161027,0.001790659821810673,-0.003149041421757757,0.0016551022395917604,0.0012646857376243706,-0.002458105950089501,0.0010135209277554215,-0.0003954506867263266,-0.0002956633027915479,-0.003047930502899461,0.0012843497118283703,-0.0023150588153719462,-0.0020183818260279362,-0.0018686600605414211,0.0010297875691658706,-0.0027280104999751606,-0.004405438827340258,-0.000896502360291301,-0.0013198050296586543,-0.0022883698356805154,-0.0019762087807911888,-0.000511755743124881,-0.0014166726821686906,-0.005035675581080715,-0.0017426922960935625,0.00041216933291362656,0.0001997117258446448,0.0013042830895193857,-0.0036670341716561836,-0.0024637657609179802,0.0014490758349580126,0.0023540831589891884,-0.0017764331128129695,-0.0004014452525429456,-0.0031136568609558307,-0.001978216944989335,-0.002401013513742955,-0.002342951339245045,-0.002146720892179937,-0.004705929049429498,-0.002591131013367238
+52.328845,4.915222,-0.0022518335133377637,-0.007276878505631224,-0.002370012778529941,-0.00077912318331,-0.0026611345500992386,-0.0020225350383452083,-0.0029249967151487597,-0.001805558360369318,0.0008682681833389039,-0.00392834021207447,-0.0008629614792395309,0.002534008879848297,-0.002110738041471465,-0.0025361748864895593,0.0014235996044909649,0.0005822032437012765,-0.0013922388292433123,-0.0019634149892639335,-0.0012089366541188046,-0.0006797838895838971,0.0011906598218106728,-0.008149041421757756,0.0005551022395917605,-0.004035314262375629,-0.0057581059500895005,-0.004586479072244579,-0.0047954506867263266,-0.0022956633027915478,-0.0037479305028994612,-0.0030156502881716297,-0.0029150588153719465,-0.005718381826027937,-0.0018686600605414211,-0.008070212430834129,-0.0033280104999751604,-0.004705438827340258,-0.003196502360291301,-0.005319805029658654,-0.004788369835680516,-0.0019762087807911888,-0.0009117557431248812,-0.0015166726821686904,-0.005535675581080715,-0.0025426922960935625,-0.0020878306670863737,-0.002000288274155355,-0.0019957169104806143,-0.001667034171656184,-0.0034637657609179803,0.0011490758349580125,0.00025408315898918857,0.0013235668871870306,-0.00030144525254294577,-0.004413656860955831,-0.003478216944989335,-0.0033010135137429546,-0.004842951339245045,0.0004532791078200628,-0.0049059290494294985,-0.004191131013367239
+52.328784,4.915692,-0.005751833513337763,-0.013776878505631224,-0.007770012778529942,-0.0060791231833100005,-0.006761134550099239,-0.006522535038345208,-0.00852499671514876,-0.007405558360369318,-0.005231731816661096,-0.01202834021207447,-0.007962961479239531,-0.009865991120151702,-0.009210738041471465,-0.01133617488648956,-0.010076400395509036,-0.009017796756298723,-0.009992238829243312,-0.010463414989263934,-0.011008936654118805,-0.009679783889583899,-0.007009340178189326,-0.012649041421757757,-0.008844897760408239,-0.00943531426237563,-0.0127581059500895,-0.006686479072244579,-0.008995450686726325,-0.008595663302791547,-0.01084793050289946,-0.0072156502881716295,-0.010715058815371947,-0.010218381826027936,-0.009668660060541422,-0.01047021243083413,-0.011628010499975161,-0.01310543882734026,-0.0118965023602913,-0.011619805029658654,-0.011088369835680515,-0.014876208780791189,-0.011011755743124881,-0.012316672682168692,-0.014835675581080716,-0.014342692296093562,-0.014187830667086374,-0.013800288274155356,-0.013195716910480614,-0.013967034171656184,-0.01566376576091798,-0.011150924165041987,-0.010545916841010812,-0.01157643311281297,-0.012501445252542945,-0.01781365686095583,-0.014978216944989334,-0.014101013513742953,-0.014742951339245044,-0.012146720892179937,-0.013005929049429498,-0.011991131013367238
+52.328589,4.917165,0.0014481664866622362,-0.009676878505631224,-0.0008700127785299409,0.00242087681669,0.007738865449900761,0.0038774649616547916,-0.00172499671514876,0.0010944416396306818,0.009468268183338903,-0.0032283402120744696,0.004337038520760469,0.006634008879848297,0.0014892619585285347,0.0017638251135104403,0.0011235996044909647,0.0026822032437012764,0.0025077611707566873,-0.0009634149892639335,0.0023910633458811953,0.004720216110416103,0.003990659821810673,-0.0023490414217577577,0.0007551022395917604,0.0031646857376243704,0.0013418940499104989,0.0025135209277554215,-0.0003954506867263266,-0.0002956633027915479,-0.003047930502899461,0.0030843497118283702,-0.0010150588153719463,-0.003318381826027936,0.0026313399394585785,-0.0012702124308341294,-0.0024280104999751606,-0.002705438827340259,0.001703497639708699,8.019497034134559e-05,0.0014116301643194843,0.0009237912192088115,0.0004882442568751189,-0.0020166726821686906,-0.001335675581080715,-4.2692296093562636e-05,0.0023121693329136266,9.971172584464496e-05,0.002204283089519386,-6.703417165618395e-05,3.623423908201981e-05,0.0043490758349580124,0.003354083158989189,0.0003235668871870306,0.0006985547474570543,-0.000813656860955831,-0.0001782169449893352,-0.0025010135137429547,-0.0013429513392450452,-0.0009467208921799372,-0.0013059290494294986,-0.001591131013367238
+52.328557,4.916057,-0.0044518335133377634,-0.007676878505631224,-0.003070012778529941,-0.0014791231833100001,-0.006161134550099239,-0.004322535038345209,-0.00642499671514876,-0.004205558360369318,-0.002331731816661096,-0.00872834021207447,-0.0020629614792395307,-0.003265991120151703,-0.0017107380414714652,-0.00663617488648956,-0.003776400395509035,-0.0038177967562987233,-0.004192238829243312,-0.0034634149892639335,-0.005108936654118805,-0.004079783889583897,-0.002709340178189327,-0.008949041421757757,-0.0018448977604082393,-0.0033353142623756297,-0.006458105950089501,-0.004086479072244579,-0.008195450686726327,-0.005795663302791547,-0.010447930502899461,-0.009015650288171629,-0.007415058815371946,-0.013218381826027937,-0.00876866006054142,-0.00997021243083413,-0.010428010499975162,-0.00960543882734026,-0.006896502360291301,-0.007819805029658655,-0.007588369835680515,-0.006076208780791188,-0.00881175574312488,-0.0029166726821686904,-0.010835675581080716,-0.0063426922960935625,-0.0039878306670863735,-0.0039002882741553547,-0.0037957169104806143,-0.0075670341716561835,-0.00736376576091798,-0.0031509241650419877,-0.002945916841010812,-0.0037764331128129695,-0.003701445252542945,-0.008013656860955832,-0.005178216944989335,-0.0059010135137429545,-0.007842951339245044,-0.007046720892179937,-0.011005929049429498,-0.0038911310133672387
+52.328554,4.915869,-0.0004518335133377638,-0.007976878505631224,-0.001370012778529941,-0.00537912318331,-0.0062611345500992385,-0.006422535038345208,-0.00452499671514876,-0.004505558360369318,-0.00043173181666109626,-0.0058283402120744695,-0.00436296147923953,-0.003265991120151703,-0.0036107380414714648,-0.008036174886489559,-0.0030764003955090348,-0.006617796756298724,-0.007392238829243313,-0.005563414989263934,-0.006508936654118805,-0.005679783889583897,-0.0013093401781893272,-0.010549041421757758,-0.0022448977604082395,-0.0036353142623756296,-0.0067581059500895005,-0.004586479072244579,-0.0050954506867263265,-0.002995663302791548,-0.005447930502899461,-0.00401565028817163,-0.015015058815371947,-0.009918381826027936,-0.007268660060541421,-0.00567021243083413,-0.006528010499975161,-0.008805438827340258,-0.006896502360291301,-0.008019805029658655,-0.007788369835680516,-0.006776208780791189,-0.005111755743124881,-0.006516672682168691,-0.010535675581080716,-0.010142692296093563,-0.006987830667086374,-0.006900288274155355,-0.005595716910480614,-0.010267034171656184,-0.00926376576091798,-0.005050924165041987,-0.004945916841010812,-0.007476433112812968,-0.007101445252542946,-0.012113656860955831,-0.007878216944989335,-0.009101013513742954,-0.009942951339245045,-0.007846720892179937,-0.010205929049429498,-0.007191131013367238
+52.32856,4.915503,-0.005251833513337764,-0.009976878505631224,-0.003870012778529941,-0.00557912318331,-0.005861134550099239,-0.006322535038345209,-0.00682499671514876,-0.005605558360369318,-0.002731731816661096,-0.009528340212074469,-0.005862961479239531,-0.005765991120151703,-0.008810738041471465,-0.00733617488648956,-0.0061764003955090355,-0.006317796756298723,-0.008392238829243313,-0.007463414989263934,-0.007208936654118805,-0.006379783889583897,-0.004209340178189327,-0.009549041421757758,-0.00494489776040824,-0.006135314262375629,-0.009258105950089501,-0.004886479072244579,-0.005895450686726326,-0.005595663302791548,-0.00884793050289946,-0.004515650288171629,-0.006815058815371946,-0.008918381826027937,-0.007168660060541422,-0.006570212430834129,-0.00802801049997516,-0.00960543882734026,-0.0089965023602913,-0.009519805029658655,-0.009788369835680516,-0.010176208780791188,-0.007511755743124882,-0.00761667268216869,-0.012435675581080715,-0.008542692296093562,-0.008087830667086373,-0.008600288274155356,-0.008295716910480614,-0.010467034171656184,-0.009863765760917981,-0.006650924165041988,-0.005445916841010812,-0.00787643311281297,-0.007201445252542946,-0.01081365686095583,-0.010678216944989334,-0.008901013513742954,-0.010642951339245045,-0.010546720892179937,-0.013105929049429497,-0.009891131013367239
+52.328575,4.915288,-0.004751833513337763,-0.005176878505631224,-0.004970012778529941,-0.00437912318331,-0.005361134550099239,-0.005722535038345209,-0.00442499671514876,-0.005705558360369318,-0.0011317318166610964,-0.00552834021207447,-0.00436296147923953,-0.001765991120151703,-0.005710738041471465,-0.00843617488648956,-0.005076400395509035,-0.006117796756298723,-0.0049922388292433124,-0.007063414989263933,-0.007008936654118805,-0.005979783889583897,-0.0025093401781893267,-0.007449041421757758,-0.00464489776040824,-0.003435314262375629,-0.008358105950089501,-0.004686479072244579,-0.005595450686726326,-0.004395663302791547,-0.004447930502899461,-0.00571565028817163,-0.003115058815371946,-0.008518381826027936,-0.005368660060541422,-0.00607021243083413,-0.0040280104999751605,-0.007705438827340259,-0.007396502360291301,-0.007519805029658654,-0.008188369835680515,-0.0071762087807911885,-0.006811755743124881,-0.00631667268216869,-0.0060356755810807156,-0.006442692296093563,-0.007387830667086374,-0.006700288274155355,-0.007195716910480614,-0.008367034171656185,-0.010263765760917979,-0.005650924165041987,-0.004645916841010811,-0.00517643311281297,-0.008101445252542945,-0.00971365686095583,-0.010078216944989334,-0.010401013513742953,-0.009642951339245044,-0.008446720892179937,-0.009805929049429498,-0.006591131013367238
+52.328579,4.914703,-0.0013518335133377638,-0.005876878505631224,2.998722147005907e-05,0.00012087681668999993,0.0001388654499007613,-0.0009225350383452085,-0.00122499671514876,-0.0006055583603693181,0.0008682681833389039,-0.0048283402120744695,-0.0013629614792395306,-0.0018659911201517028,-0.002810738041471465,-0.00573617488648956,-0.0041764003955090355,-0.004917796756298724,-0.004092238829243313,-0.0044634149892639335,-0.005108936654118805,-0.005179783889583897,-0.0018093401781893272,-0.005849041421757757,-0.0028448977604082393,-0.0033353142623756297,-0.006658105950089501,-0.0010864790722445784,-0.003495450686726327,-0.001995663302791548,-0.0031479305028994614,-0.0001156502881716297,-0.0030150588153719463,-0.0025183818260279362,-0.002068660060541421,-0.0017702124308341294,-0.0023280104999751604,-0.006805438827340258,-0.002896502360291301,-0.0034198050296586546,-0.0033883698356805157,-0.004976208780791189,-0.002611755743124881,-0.004216672682168691,-0.008135675581080715,-0.005642692296093562,-0.005587830667086373,-0.0055002882741553545,-0.003895716910480614,-0.005667034171656184,-0.00826376576091798,-0.0033509241650419874,-0.0027459168410108115,-0.0025764331128129694,-0.002701445252542946,-0.005413656860955831,-0.003478216944989335,-0.0035010135137429547,-0.003142951339245045,-0.003746720892179937,-0.005305929049429498,-0.004991131013367238
+52.328725,4.913062,0.00014816648666223626,-0.004176878505631224,-0.001170012778529941,0.0006208768166899998,-0.0010611345500992388,-0.0005225350383452085,-0.00202499671514876,-0.0009055583603693183,0.002268268183338904,-0.0034283402120744693,0.00023703852076046921,0.000534008879848297,-0.0010107380414714651,-0.0031361748864895595,-0.0016764003955090352,-0.0019177967562987233,-0.0020922388292433126,-0.0025634149892639338,-0.0028089366541188044,-0.0021797838895838972,0.0010906598218106728,-0.0042490414217577575,5.510223959176051e-05,-0.0015353142623756293,-0.004558105950089501,-0.0003864790722445787,-0.0014954506867263266,-0.0005956633027915479,-0.002547930502899461,-0.0001156502881716297,-0.0011150588153719463,-0.001918381826027936,-0.0003686600605414214,-0.0013702124308341294,-0.0018280104999751604,-0.0039054388273402586,-0.001496502360291301,-0.0014198050296586546,-0.0027883698356805154,-0.0018762087807911887,-0.000511755743124881,-0.0013166726821686905,-0.004835675581080715,-0.0021426922960935627,-0.002887830667086373,-0.001700288274155355,-0.002095716910480614,-0.003467034171656184,-0.00466376576091798,-0.0003509241650419875,0.00045408315898918855,-0.0008764331128129693,-0.0005014452525429456,-0.0036136568609558307,-0.002478216944989335,-0.002401013513742955,-0.0018429513392450453,-0.001546720892179937,-0.004205929049429498,-0.001391131013367238
+52.328553,4.913814,-0.005051833513337763,-0.006476878505631224,-0.006470012778529941,-0.00317912318331,-0.0035611345500992393,-0.005322535038345209,-0.00782499671514876,-0.005005558360369318,-0.0031317318166610964,-0.007628340212074469,-0.00496296147923953,-0.005465991120151703,-0.004810738041471465,-0.005136174886489559,-0.008276400395509035,-0.010617796756298724,-0.011992238829243312,-0.009563414989263932,-0.011008936654118805,-0.010279783889583899,-0.0005093401781893273,-0.007949041421757758,-0.00524489776040824,-0.005435314262375629,-0.0104581059500895,-0.004086479072244579,-0.006995450686726326,-0.007195663302791548,-0.007547930502899461,-0.0059156502881716295,-0.011415058815371946,-0.007618381826027936,-0.007768660060541422,-0.00877021243083413,-0.00812801049997516,-0.008205438827340258,-0.007996502360291301,-0.009419805029658656,-0.010788369835680515,-0.007576208780791188,-0.005511755743124881,-0.010416672682168691,-0.009935675581080716,-0.0070426922960935626,-0.014887830667086375,-0.011500288274155356,-0.009895716910480615,-0.012767034171656184,-0.015063765760917981,-0.008450924165041987,-0.007745916841010812,-0.0075764331128129695,-0.008501445252542945,-0.01231365686095583,-0.009578216944989334,-0.011701013513742954,-0.011742951339245045,-0.009846720892179937,-0.012705929049429498,-0.010591131013367238
+52.328556,4.91364,-0.001751833513337764,-0.0020768785056312234,-0.001770012778529941,2.0876816689999883e-05,-0.0025611345500992384,-0.0027225350383452084,-0.00182499671514876,-0.0010055583603693183,0.003068268183338904,-0.0031283402120744694,0.00043703852076046914,0.001334008879848297,8.926195852853482e-05,-0.0013361748864895596,-0.0012764003955090353,-0.0005177967562987236,-0.0016922388292433125,-0.0006634149892639335,-0.0010089366541188045,0.0003202161104161028,0.0031906598218106727,-0.0029490414217577575,0.0019551022395917603,-0.0002353142623756295,-0.0035581059500895008,0.0008135209277554214,-0.0008954506867263266,0.0002043366972084521,-0.00034793050289946115,0.00018434971182837022,-0.0008150588153719463,-0.002618381826027936,0.0003313399394585786,-0.0008702124308341294,-0.0010280104999751604,-0.0037054388273402585,-0.0017965023602913009,-0.0016198050296586544,-0.0028883698356805157,-0.0015762087807911886,-0.000611755743124881,-0.0004166726821686905,-0.0040356755810807155,-0.0015426922960935627,-0.0023878306670863736,-0.0003002882741553551,-0.0015957169104806144,-0.0013670341716561839,-0.0031637657609179803,0.0011490758349580125,0.0013540831589891886,0.0009235668871870307,-0.00010144525254294568,-0.002413656860955831,-0.002578216944989335,-0.0020010135137429547,-0.0015429513392450453,-0.0012467208921799371,-0.0030059290494294988,-0.0006911310133672381
+52.328535,4.913759,-0.001751833513337764,-0.0010768785056312236,-0.003070012778529941,-0.0013791231833100003,-0.0042611345500992385,-0.0018225350383452086,-0.0028249967151487603,-0.002705558360369318,0.0011682681833389038,-0.00452834021207447,-0.002762961479239531,-0.0011659911201517032,-0.0017107380414714652,-0.00603617488648956,-0.002476400395509035,-0.004317796756298723,-0.0032922388292433123,-0.0023634149892639332,-0.0038089366541188044,-0.002279783889583897,0.0008906598218106728,-0.005949041421757758,-0.0028448977604082393,-0.0028353142623756293,-0.006858105950089501,-0.0016864790722445787,-0.0036954506867263267,-0.004395663302791547,-0.0031479305028994614,-0.0033156502881716296,-0.006315058815371946,-0.0069183818260279365,-0.004368660060541422,-0.0024702124308341295,-0.0018280104999751604,-0.006405438827340258,-0.005896502360291301,-0.007119805029658654,-0.005788369835680516,-0.005276208780791189,-0.0053117557431248815,-0.0018166726821686905,-0.004535675581080715,-0.005542692296093562,-0.005487830667086374,-0.004600288274155355,-0.005895716910480614,-0.006167034171656184,-0.00726376576091798,-0.002850924165041988,-0.0010459168410108116,-0.0036764331128129693,-0.004901445252542946,-0.006913656860955831,-0.007278216944989336,-0.005401013513742955,-0.008242951339245045,-0.007746720892179938,-0.008105929049429498,-0.005291131013367238
+52.328586,4.913275,0.0017481664866622361,-0.0014768785056312236,-7.001277852994092e-05,0.0017208768166899998,0.0011388654499007614,-0.00012253503834520847,-0.00122499671514876,0.0008944416396306817,0.002968268183338904,-0.0009283402120744696,0.0007370385207604692,0.000734008879848297,0.0012892619585285349,-0.0026361748864895595,0.0009235996044909649,-0.0022177967562987235,0.002107761170756688,0.0010365850107360666,0.0007910633458811955,0.00022021611041610282,0.0028906598218106727,-0.0035490414217577574,0.0021551022395917604,0.0003646857376243705,-0.002758105950089501,0.0023135209277554214,-0.0002954506867263266,-0.0009956633027915478,5.2069497100538866e-05,0.00288434971182837,-0.0009150588153719463,-1.8381826027936195e-05,-0.0002686600605414215,-0.0013702124308341294,-0.0031280104999751603,-0.0038054388273402588,-0.002196502360291301,-0.0020198050296586544,-0.0020883698356805157,-0.002476208780791189,-0.0009117557431248812,8.332731783130944e-05,-0.002535675581080715,-0.0014426922960935626,-0.002887830667086373,-0.002000288274155355,-0.0014957169104806143,-0.0013670341716561839,-0.00806376576091798,-0.004950924165041988,-0.004145916841010812,-0.0036764331128129693,-0.006401445252542945,-0.008113656860955831,-0.007378216944989336,-0.0059010135137429545,-0.007442951339245046,-0.006446720892179937,-0.007705929049429499,-0.004291131013367238
+52.328573,4.912782,0.0015481664866622362,-0.0010768785056312236,-0.002370012778529941,0.0007208768166899999,0.0011388654499007614,0.0015774649616547914,-0.00252499671514876,-0.0013055583603693182,-0.0005317318166610961,-0.004428340212074469,-0.003762961479239531,-0.007865991120151704,-0.004410738041471465,-0.01023617488648956,-0.008076400395509036,-0.009417796756298724,-0.012192238829243312,-0.010063414989263933,-0.011808936654118805,-0.011979783889583899,-0.005709340178189327,-0.007049041421757758,-0.004844897760408239,-0.00563531426237563,-0.008358105950089501,-0.0010864790722445784,-0.0035954506867263264,-0.0002956633027915479,-0.00044793050289946114,0.0014843497118283702,-0.0016150588153719463,-0.0010183818260279362,-0.0003686600605414214,-0.0019702124308341295,-2.801049997516042e-05,-0.0033054388273402588,-0.0032965023602913013,-0.0018198050296586543,-0.004588369835680515,-0.005476208780791188,-0.000511755743124881,-0.0054166726821686904,-0.007335675581080715,-0.005642692296093562,-0.010087830667086373,-0.008400288274155355,-0.008095716910480614,-0.006467034171656184,-0.00996376576091798,-0.005050924165041987,-0.0033459168410108113,-0.00407643311281297,-0.0012014452525429457,-0.005413656860955831,-0.004778216944989335,-0.0010010135137429545,-0.00024295133924504526,-0.0013467208921799372,-0.0017059290494294986,-0.000591131013367238
+52.328591,4.91241,-0.0019518335133377636,-0.0035768785056312234,-0.0007700127785299409,-0.0016791231833100002,-0.0039611345500992386,-0.004822535038345208,-0.0029249967151487597,-0.0010055583603693183,0.003068268183338904,-0.0021283402120744694,0.0005370385207604691,0.004434008879848296,0.0010892619585285348,0.0018638251135104406,0.0015235996044909647,0.00038220324370127646,0.002107761170756688,0.002636585010736067,0.004391063345881195,0.004620216110416103,0.005590659821810673,-0.0020490414217577573,0.0029551022395917603,0.0023646857376243705,-0.001958105950089501,0.0010135209277554215,-9.545068672632659e-05,0.0005043366972084522,-4.7930502899461126e-05,-0.0016156502881716297,0.0011849411846280536,-0.003718381826027936,0.0010313399394585787,-0.0005702124308341295,-0.0030280104999751605,-0.004705438827340258,-0.0035965023602913013,-0.004419805029658655,-0.0052883698356805155,0.0005237912192088113,-0.001111755743124881,0.0003833273178313095,-0.004135675581080715,-0.0011426922960935625,0.0026121693329136265,0.0040997117258446455,0.0017042830895193856,-0.000867034171656184,-0.0012637657609179801,0.0017490758349580126,0.0025540831589891885,0.0018235668871870304,-0.0014014452525429458,-0.002513656860955831,-0.0016782169449893352,-0.0031010135137429545,-0.004842951339245045,-0.004746720892179937,-0.006705929049429498,-0.002691131013367238
+52.328687,4.911314,-0.004751833513337763,-0.010276878505631224,-0.0076700127785299405,-0.00327912318331,-0.005861134550099239,-0.004422535038345208,-0.00792499671514876,-0.003705558360369318,-0.0034317318166610963,-0.00822834021207447,-0.005562961479239531,-0.006765991120151703,-0.004510738041471465,-0.01113617488648956,-0.007376400395509035,-0.010717796756298723,-0.013192238829243311,-0.010263414989263933,-0.012708936654118805,-0.012979783889583898,-0.004309340178189327,-0.010649041421757757,-0.00644489776040824,-0.0072353142623756295,-0.0078581059500895,-0.002986479072244578,-0.0036954506867263267,-0.006995663302791548,-0.0059479305028994605,-0.0035156502881716293,-0.006815058815371946,-0.0049183818260279365,-0.006468660060541422,-0.007170212430834129,-0.00862801049997516,-0.011105438827340258,-0.006996502360291301,-0.006719805029658655,-0.005988369835680516,-0.009376208780791189,-0.0063117557431248816,-0.00731667268216869,-0.011735675581080716,-0.013542692296093563,-0.014687830667086373,-0.011300288274155355,-0.009295716910480614,-0.011367034171656184,-0.011563765760917982,-0.0071509241650419865,-0.005245916841010812,-0.00817643311281297,-0.006101445252542945,-0.007813656860955831,-0.006878216944989335,-0.009501013513742954,-0.0018429513392450453,-0.009546720892179937,-0.007405929049429498,-0.009791131013367238
+52.328692,4.911246,-0.0018518335133377638,-0.006276878505631224,-0.006570012778529941,-0.00197912318331,-0.0039611345500992386,-0.0034225350383452085,-0.00502499671514876,-0.002305558360369318,-0.0022317318166610958,-0.00882834021207447,-0.003662961479239531,-0.007065991120151703,-0.0062107380414714655,-0.00993617488648956,-0.009576400395509036,-0.009417796756298724,-0.011492238829243311,-0.010263414989263933,-0.009908936654118804,-0.009279783889583898,-0.005309340178189327,-0.009549041421757758,-0.00554489776040824,-0.006435314262375629,-0.0087581059500895,-0.004586479072244579,-0.004195450686726326,-0.005995663302791548,-0.0036479305028994614,-0.00211565028817163,-0.008415058815371947,-0.0042183818260279355,-0.004868660060541422,-0.006570212430834129,-0.00732801049997516,-0.009905438827340258,-0.007596502360291301,-0.005519805029658654,-0.006388369835680516,-0.009176208780791189,-0.00791175574312488,-0.008616672682168692,-0.011235675581080715,-0.010342692296093562,-0.013787830667086373,-0.012900288274155356,-0.012695716910480614,-0.010067034171656183,-0.01236376576091798,-0.008650924165041988,-0.005845916841010812,-0.007676433112812969,-0.006201445252542946,-0.008713656860955831,-0.008578216944989335,-0.0072010135137429545,-0.007942951339245045,-0.0069467208921799375,-0.006905929049429499,-0.008991131013367239
+52.328697,4.911215,-0.0028518335133377636,-0.006176878505631224,-0.006570012778529941,-0.0023791231833100003,-0.0018611345500992385,-0.0035225350383452083,-0.00412499671514876,-0.0038055583603693183,-0.0035317318166610966,-0.00832834021207447,-0.002662961479239531,-0.0073659911201517025,-0.005710738041471465,-0.01013617488648956,-0.008476400395509035,-0.008517796756298723,-0.008792238829243312,-0.007363414989263933,-0.009108936654118804,-0.008779783889583897,-0.004409340178189327,-0.007149041421757757,-0.00644489776040824,-0.006135314262375629,-0.009558105950089501,-0.0019864790722445786,-0.003995450686726326,-0.004695663302791547,-0.006847930502899461,-0.00241565028817163,-0.0038150588153719463,-0.004118381826027936,-0.004268660060541421,-0.00507021243083413,-0.0040280104999751605,-0.009205438827340259,-0.005796502360291301,-0.006319805029658654,-0.006488369835680515,-0.006776208780791189,-0.0046117557431248814,-0.006516672682168691,-0.009635675581080715,-0.008942692296093563,-0.013887830667086374,-0.011100288274155354,-0.009995716910480614,-0.010267034171656184,-0.01126376576091798,-0.007250924165041988,-0.005945916841010812,-0.010076433112812968,-0.004601445252542946,-0.008413656860955831,-0.006678216944989336,-0.007801013513742954,-0.006742951339245046,-0.005646720892179937,-0.008105929049429498,-0.006691131013367239
+52.328703,4.911174,-0.0015518335133377639,-0.006476878505631224,-0.006770012778529941,-0.00177912318331,-0.0014611345500992387,-0.0022225350383452084,-0.00402499671514876,-0.003405558360369318,-0.0015317318166610965,-0.007628340212074469,-0.002262961479239531,-0.006565991120151703,-0.006410738041471465,-0.00913617488648956,-0.010976400395509036,-0.008517796756298723,-0.009492238829243311,-0.008963414989263932,-0.010308936654118805,-0.008979783889583898,-0.004509340178189327,-0.006849041421757757,-0.00584489776040824,-0.0052353142623756295,-0.010058105950089501,-0.0023864790722445783,-0.0040954506867263265,-0.004895663302791548,-0.006047930502899461,-0.00151565028817163,-0.005815058815371946,-0.004518381826027936,-0.005068660060541422,-0.00567021243083413,-0.00642801049997516,-0.01010543882734026,-0.006296502360291301,-0.005119805029658654,-0.006788369835680516,-0.006676208780791188,-0.005411755743124882,-0.008716672682168691,-0.009935675581080716,-0.008342692296093563,-0.013187830667086373,-0.011100288274155354,-0.010595716910480614,-0.011567034171656184,-0.01186376576091798,-0.005950924165041987,-0.005245916841010812,-0.00667643311281297,-0.0058014452525429454,-0.007213656860955831,-0.007178216944989335,-0.004801013513742955,-0.004942951339245045,-0.005546720892179937,-0.0062059290494294985,-0.004791131013367238
+52.32871,4.911111,-0.0005518335133377638,-0.006776878505631224,-0.006870012778529941,-0.0018791231833100003,-0.003761134550099239,-0.0027225350383452084,-0.00422499671514876,-0.0039055583603693177,-0.0034317318166610963,-0.006628340212074469,-0.002462961479239531,-0.007565991120151703,-0.005310738041471466,-0.01273617488648956,-0.008976400395509036,-0.009617796756298723,-0.010692238829243311,-0.009963414989263933,-0.011908936654118804,-0.011579783889583898,-0.006009340178189327,-0.008449041421757758,-0.007344897760408239,-0.0072353142623756295,-0.008858105950089502,-0.0030864790722445784,-0.004195450686726326,-0.003295663302791548,-0.007147930502899461,-0.0023156502881716296,-0.006215058815371946,-0.004418381826027936,-0.004868660060541422,-0.0062702124308341295,-0.005628010499975161,-0.010605438827340257,-0.007696502360291301,-0.0047198050296586545,-0.006888369835680515,-0.008376208780791188,-0.006711755743124882,-0.00731667268216869,-0.009235675581080715,-0.008642692296093563,-0.013587830667086374,-0.013100288274155355,-0.011295716910480614,-0.008867034171656183,-0.01136376576091798,-0.007350924165041987,-0.006645916841010811,-0.008876433112812969,-0.005601445252542946,-0.005713656860955831,-0.006878216944989335,-0.006301013513742955,-0.0053429513392450455,-0.005446720892179937,-0.008105929049429498,-0.007091131013367238
+52.328717,4.911058,0.0007481664866622362,-0.004876878505631224,-0.006570012778529941,-0.00107912318331,0.0008388654499007612,-0.0012225350383452086,-0.00312499671514876,-5.558360369318171e-06,-0.0009317318166610963,-0.00812834021207447,-0.001962961479239531,-0.010165991120151704,-0.008010738041471465,-0.013236174886489559,-0.010176400395509036,-0.011917796756298723,-0.013392238829243312,-0.012163414989263932,-0.013008936654118805,-0.011979783889583899,-0.008309340178189328,-0.0062490414217577575,-0.00874489776040824,-0.01033531426237563,-0.013258105950089501,-0.003586479072244579,-0.007295450686726327,-0.005395663302791547,-0.0049479305028994605,0.0020843497118283702,-0.006815058815371946,8.161817397206385e-05,-0.0025686600605414212,-0.0015702124308341295,-0.0031280104999751603,-0.010605438827340257,-0.004796502360291301,-0.004019805029658654,-0.0032883698356805154,-0.009576208780791188,-0.002911755743124881,-0.00941667268216869,-0.013035675581080715,-0.010542692296093562,-0.01578783066708637,-0.012100288274155355,-0.012595716910480614,-0.013267034171656185,-0.014963765760917982,-0.009250924165041988,-0.00844591684101081,-0.008276433112812969,-0.0019014452525429458,-0.00821365686095583,-0.005778216944989335,-0.004501013513742954,-0.006542951339245045,-0.002446720892179937,-0.004505929049429498,-0.001991131013367238
+52.328721,4.911036,0.001248166486662236,-0.004376878505631224,-0.004270012778529941,0.0008208768166899998,0.0014388654499007613,-2.253503834520848e-05,-0.00252499671514876,-0.0017055583603693182,-0.00043173181666109626,-0.004728340212074469,-0.0007629614792395308,-0.008965991120151704,-0.007310738041471466,-0.01223617488648956,-0.009476400395509035,-0.010217796756298723,-0.013292238829243313,-0.012163414989263932,-0.013508936654118805,-0.011879783889583898,-0.007309340178189326,-0.006549041421757757,-0.005344897760408239,-0.006135314262375629,-0.010958105950089501,-0.0020864790722445784,-0.003795450686726327,-0.003795663302791548,-0.004247930502899461,0.00388434971182837,-0.0032150588153719464,0.0015816181739720637,-0.0021686600605414215,-0.0029702124308341295,-0.0023280104999751604,-0.00790543882734026,-0.0041965023602913015,-0.0037198050296586545,-0.0034883698356805155,-0.0074762087807911885,-0.002111755743124881,-0.007516672682168691,-0.009435675581080716,-0.007242692296093562,-0.016687830667086373,-0.013200288274155356,-0.012595716910480614,-0.011267034171656184,-0.01466376576091798,-0.007450924165041986,-0.005945916841010812,-0.007776433112812968,-0.0004014452525429456,-0.006813656860955831,-0.004478216944989335,-0.003801013513742955,-0.0046429513392450454,-0.00014672089217993717,-0.004005929049429498,-0.0028911310133672386
+52.328798,4.910134,0.0005481664866622362,-0.0018768785056312237,-0.0012700127785299409,0.0011208768166899997,-0.0015611345500992386,0.0008774649616547915,0.00107500328485124,-0.0012055583603693182,0.002568268183338904,-0.0021283402120744694,0.0011370385207604692,-0.0006659911201517029,-0.0008107380414714651,-0.0026361748864895595,-0.00017640039550903517,-0.0033177967562987238,-0.0009922388292433124,-0.003263414989263934,-0.0018089366541188044,0.0009202161104161029,0.0007906598218106729,-0.0015490414217577575,-4.489776040823932e-05,0.0002646857376243705,-0.001458105950089501,0.0014135209277554215,-0.00019545068672632664,0.002704336697208452,-0.0008479305028994612,0.0014843497118283702,0.0001849411846280537,-0.00041838182602793616,0.0010313399394585787,-0.0008702124308341294,-0.0025280104999751605,-0.004705438827340258,-0.0030965023602913012,-0.0018198050296586543,-0.0032883698356805154,-0.002676208780791189,-0.002911755743124881,-0.0016166726821686904,-0.004435675581080715,-0.0015426922960935627,-0.002787830667086374,-0.003700288274155355,-0.002595716910480614,-0.003867034171656184,-0.00446376576091798,-0.0006509241650419874,5.408315898918848e-05,-0.0022764331128129695,-0.00030144525254294577,-0.002113656860955831,-0.004378216944989336,-0.004601013513742955,-0.002842951339245045,-0.003246720892179937,-0.0062059290494294985,-0.003991131013367238
+52.328774,4.910251,0.003148166486662236,0.0020231214943687765,-0.001770012778529941,0.0012208768166899998,-0.0011611345500992386,-2.253503834520848e-05,-0.00242499671514876,-0.0006055583603693181,0.002768268183338904,0.0006716597879255304,0.0014370385207604693,0.0009340088798482969,0.00038926195852853477,-0.0013361748864895596,-7.640039550903516e-05,-0.0029177967562987236,-0.003892238829243312,0.0001365850107360665,-0.0035089366541188045,-0.0007797838895838971,0.0015906598218106728,-0.0013490414217577574,0.0017551022395917606,-0.0017353142623756294,-0.003158105950089501,0.0022135209277554216,0.0028045493132736734,0.0008043366972084521,0.0023520694971005387,0.0018843497118283703,0.0018849411846280535,-0.0003183818260279361,0.0013313399394585786,0.0004297875691658705,0.00017198950002483956,-0.0019054388273402586,0.000303497639708699,-0.0022198050296586545,-0.0026883698356805156,-0.0017762087807911887,-0.000611755743124881,0.0030833273178313093,-0.0036356755810807153,-0.0027426922960935626,-0.0017878306670863736,-0.003400288274155355,-0.0027957169104806143,-0.002867034171656184,-0.00416376576091798,4.9075834958012656e-05,-0.0020459168410108114,-0.0003764331128129695,-0.00030144525254294577,-0.002013656860955831,-0.001278216944989335,-0.002701013513742955,-0.0011429513392450454,-0.0006467208921799373,-0.0011059290494294985,-0.0009911310133672382
+52.328567,4.911793,-0.0016518335133377637,-0.0011768785056312236,-0.001470012778529941,-7.912318331000016e-05,-0.0019611345500992385,-0.0013225350383452084,-0.0035249967151487604,-0.0016055583603693184,0.0015682681833389038,-0.0027283402120744696,-0.0007629614792395308,-6.599112015170309e-05,-0.0009107380414714652,-0.0031361748864895595,-0.0003764003955090352,-0.004117796756298723,-0.0029922388292433124,-0.0014634149892639335,-0.0022089366541188046,-0.0003797838895838972,0.001990659821810673,-0.0022490414217577574,0.0030551022395917606,-0.0005353142623756294,-0.006558105950089501,-8.647907224457857e-05,-0.0015954506867263268,-0.0004956633027915478,0.004352069497100539,-0.00211565028817163,-0.0019150588153719463,-0.0015183818260279362,-0.0021686600605414215,-0.0007702124308341296,-0.0027280104999751606,-0.004105438827340258,-0.0035965023602913013,-0.0027198050296586545,-0.0049883698356805155,-0.0007762087807911887,-0.002711755743124881,-0.0031166726821686905,0.0021643244189192847,-0.0027426922960935626,-0.006787830667086374,-0.004100288274155355,-0.003895716910480614,-0.0035670341716561842,-0.00586376576091798,-0.0022509241650419875,-0.0010459168410108116,-0.0017764331128129695,-0.0017014452525429458,-0.005113656860955831,-0.0055782169449893355,-0.004101013513742955,-0.003842951339245045,-0.0039467208921799375,-0.005005929049429498,-0.0030911310133672383
+52.328587,4.911606,-0.0024518335133377634,-0.0019768785056312236,-0.001770012778529941,0.00022087681668999976,-0.0010611345500992388,-0.0014225350383452085,-0.00042499671514876,-0.0019055583603693183,0.0014682681833389037,-0.00042834021207446957,-0.0002629614792395308,-0.00016599112015170292,-0.0007107380414714652,-0.0034361748864895594,-0.001976400395509035,-0.0032177967562987235,-0.0029922388292433124,-0.0025634149892639338,-0.0022089366541188046,-0.002279783889583897,0.00019065982181067282,-0.0016490414217577574,0.0002551022395917606,0.00016468573762437057,-0.005658105950089501,-0.0006864790722445786,-0.0003954506867263266,-0.0012956633027915478,-0.0024479305028994613,0.00238434971182837,-0.004315058815371946,-0.003918381826027936,-0.0030686600605414212,-0.0023702124308341292,-0.004228010499975161,-0.0036054388273402587,-0.0030965023602913012,-0.002919805029658654,-0.0037883698356805154,-0.0027762087807911887,-0.0035117557431248807,-0.0032166726821686903,-0.007535675581080715,-0.0034426922960935627,-0.004687830667086374,-0.003300288274155355,-0.003895716910480614,-0.004067034171656184,-0.00496376576091798,-0.0015509241650419874,-0.0005459168410108114,-0.0033764331128129693,-0.003301445252542946,-0.006313656860955831,-0.005878216944989335,-0.004801013513742955,-0.0053429513392450455,-0.005046720892179937,-0.007105929049429498,-0.004291131013367238
+52.328571,4.911645,-0.002651833513337764,-0.008476878505631225,-0.005770012778529941,-0.00357912318331,-0.0036611345500992386,-0.0049225350383452085,-0.00422499671514876,-0.0028055583603693183,0.006668268183338905,-0.0048283402120744695,-0.0025629614792395308,-0.0018659911201517028,-0.003410738041471465,-0.00573617488648956,-0.002876400395509035,-0.005917796756298724,-0.006092238829243313,-0.004863414989263934,-0.005508936654118805,-0.005279783889583897,-0.001909340178189327,-0.006349041421757758,-0.00204489776040824,-0.002635314262375629,-0.007158105950089501,-0.0009864790722445786,-0.0036954506867263267,-0.004795663302791547,-0.003347930502899461,-0.0029156502881716295,-0.005315058815371946,-0.005318381826027936,-0.004468660060541422,-0.006570212430834129,-0.00662801049997516,-0.008205438827340258,-0.004796502360291301,-0.0070198050296586545,-0.006688369835680516,-0.005076208780791189,-0.005411755743124882,-0.00671667268216869,-0.007235675581080715,-0.006642692296093562,-0.006487830667086374,-0.005400288274155355,-0.006195716910480614,-0.006367034171656184,-0.008563765760917979,-0.002850924165041988,-0.0034459168410108116,-0.006576433112812969,-0.0045014452525429455,-0.006213656860955831,-0.0065782169449893355,-0.009001013513742953,-0.006442951339245046,-0.004246720892179937,-0.012005929049429499,-0.008291131013367238
+52.32852,4.911544,-0.0015518335133377639,-0.0050768785056312235,-0.003470012778529941,-0.0013791231833100003,-0.002761134550099239,-0.0020225350383452083,-0.0032249967151487596,-0.0025055583603693183,0.0003682681833389037,-0.00432834021207447,-0.0011629614792395308,-0.001765991120151703,-0.002010738041471465,-0.0049361748864895595,-0.002976400395509035,-0.004617796756298724,-0.004792238829243313,-0.003963414989263933,-0.004208936654118805,-0.003379783889583897,-0.0005093401781893273,-0.004549041421757757,-0.0012448977604082394,-0.0024353142623756295,-0.006158105950089501,-0.0005864790722445784,-0.0018954506867263268,-0.002395663302791548,-0.0034479305028994613,-0.0014156502881716296,-0.003915058815371946,-0.003018381826027936,-0.0024686600605414214,-0.0032702124308341294,-0.004228010499975161,-0.006005438827340259,-0.004096502360291301,-0.004319805029658654,-0.005388369835680516,-0.004276208780791189,-0.003111755743124881,-0.004216672682168691,-0.006935675581080715,-0.004942692296093562,-0.006587830667086373,-0.005300288274155355,-0.005095716910480615,-0.0052670341716561835,-0.00706376576091798,-0.0031509241650419877,-0.0018459168410108115,-0.0034764331128129696,-0.0028014452525429454,-0.005213656860955831,-0.005178216944989335,-0.005001013513742955,-0.004842951339245045,-0.004046720892179937,-0.0059059290494294986,-0.004291131013367238
+52.328533,4.911461,-0.0008518335133377638,-0.004976878505631224,-0.002670012778529941,-0.00077912318331,-0.002061134550099239,-0.0015225350383452085,-0.00302499671514876,-0.0022055583603693184,0.0006682681833389038,-0.00392834021207447,-0.0006629614792395308,-0.002065991120151703,-0.0026107380414714648,-0.005536174886489559,-0.0030764003955090348,-0.004617796756298724,-0.005292238829243312,-0.0044634149892639335,-0.005108936654118805,-0.0045797838895838975,-0.0007093401781893269,-0.004949041421757758,-0.0019448977604082395,-0.0027353142623756294,-0.006558105950089501,-0.0003864790722445787,-0.0016954506867263267,-0.002495663302791548,-0.0036479305028994614,-0.0018156502881716298,-0.004515058815371946,-0.003318381826027936,-0.0026686600605414215,-0.0037702124308341294,-0.004528010499975161,-0.006605438827340259,-0.0041965023602913015,-0.0047198050296586545,-0.005188369835680515,-0.004276208780791189,-0.003211755743124881,-0.003916672682168691,-0.006535675581080714,-0.005242692296093562,-0.007087830667086374,-0.006200288274155355,-0.005195716910480614,-0.005567034171656183,-0.00666376576091798,-0.002850924165041988,-0.0007459168410108115,-0.003276433112812969,-0.002001445252542946,-0.004913656860955831,-0.004378216944989336,-0.004401013513742955,-0.004042951339245046,-0.003146720892179937,-0.0052059290494294985,-0.0038911310133672387
+52.328539,4.911388,-0.0014518335133377636,-0.005176878505631224,-0.0036700127785299413,-0.0008791231833100003,-0.0023611345500992387,-0.0015225350383452085,-0.0029249967151487597,-0.002105558360369318,0.00016826818333890402,-0.004728340212074469,-0.0009629614792395309,-0.002465991120151703,-0.002110738041471465,-0.0059361748864895595,-0.003776400395509035,-0.004717796756298723,-0.005392238829243313,-0.0044634149892639335,-0.004908936654118805,-0.004379783889583897,-0.000909340178189327,-0.004649041421757758,-0.0017448977604082399,-0.0024353142623756295,-0.006258105950089501,-0.0003864790722445787,-0.0012954506867263265,-0.001995663302791548,-0.0037479305028994612,-0.0008156502881716298,-0.0037150588153719464,-0.0025183818260279362,-0.0021686600605414215,-0.0028702124308341292,-0.0037280104999751606,-0.005905438827340259,-0.003896502360291301,-0.003919805029658654,-0.004788369835680516,-0.0041762087807911885,-0.002711755743124881,-0.0038166726821686906,-0.006535675581080714,-0.004642692296093562,-0.007387830667086374,-0.006000288274155355,-0.005395716910480615,-0.005067034171656184,-0.00726376576091798,-0.002950924165041987,-0.0013459168410108115,-0.0033764331128129693,-0.0021014452525429453,-0.004713656860955831,-0.004378216944989336,-0.004201013513742954,-0.003942951339245045,-0.0030467208921799373,-0.004605929049429498,-0.0037911310133672384
+52.328545,4.911344,-0.0018518335133377638,-0.005276878505631224,-0.004070012778529941,-0.00157912318331,-0.0028611345500992383,-0.0021225350383452086,-0.0035249967151487604,-0.0026055583603693186,-0.00043173181666109626,-0.005028340212074469,-0.0016629614792395308,-0.0034659911201517027,-0.003210738041471465,-0.006536174886489559,-0.004276400395509036,-0.005717796756298723,-0.006292238829243312,-0.005663414989263934,-0.006408936654118805,-0.005479783889583897,-0.001709340178189327,-0.005449041421757758,-0.0032448977604082395,-0.0038353142623756293,-0.006858105950089501,-0.0012864790722445785,-0.0018954506867263268,-0.002895663302791548,-0.003947930502899461,-0.0014156502881716296,-0.004615058815371946,-0.003118381826027936,-0.003368660060541421,-0.00407021243083413,-0.004528010499975161,-0.0065054388273402585,-0.004596502360291301,-0.004619805029658654,-0.005688369835680516,-0.005076208780791189,-0.0038117557431248806,-0.005516672682168691,-0.007935675581080714,-0.0060426922960935625,-0.008687830667086373,-0.0078002882741553545,-0.007195716910480614,-0.006867034171656183,-0.008563765760917979,-0.004550924165041987,-0.0030459168410108114,-0.004576433112812969,-0.0032014452525429456,-0.005713656860955831,-0.005778216944989335,-0.005201013513742954,-0.004842951339245045,-0.004546720892179937,-0.0059059290494294986,-0.004691131013367238
+52.328554,4.91127,-0.002651833513337764,-0.005976878505631224,-0.005070012778529941,-0.00177912318331,-0.0036611345500992386,-0.0028225350383452087,-0.00392499671514876,-0.003705558360369318,-0.0006317318166610963,-0.00552834021207447,-0.002362961479239531,-0.005365991120151703,-0.004010738041471465,-0.009236174886489559,-0.005676400395509035,-0.007617796756298723,-0.008492238829243312,-0.007063414989263933,-0.008308936654118805,-0.004779783889583897,-0.0007093401781893269,-0.0032490414217577574,-0.0011448977604082396,-0.0018353142623756293,-0.005858105950089501,1.352092775542147e-05,-0.0009954506867263266,-0.0012956633027915478,-0.002747930502899461,0.00028434971182837027,-0.0027150588153719464,-0.0013183818260279361,-0.0012686600605414213,-0.0018702124308341294,-0.0029280104999751602,-0.004605438827340259,-0.0030965023602913012,-0.0027198050296586545,-0.0036883698356805156,-0.0031762087807911885,-0.002011755743124881,-0.0035166726821686907,-0.005435675581080715,-0.003842692296093563,-0.007987830667086374,-0.006700288274155355,-0.005495716910480614,-0.005467034171656184,-0.00756376576091798,-0.0030509241650419875,-0.0037459168410108115,-0.005076433112812969,-0.004101445252542945,-0.0065136568609558305,-0.005878216944989335,-0.0059010135137429545,-0.004742951339245046,-0.004746720892179937,-0.006505929049429498,-0.005691131013367238
+52.328562,4.911167,-0.001251833513337764,-0.004976878505631224,-0.004470012778529941,-0.00177912318331,-0.002461134550099239,-0.0019225350383452085,-0.0036249967151487598,-0.0026055583603693186,-0.0007317318166610962,-0.005428340212074469,-0.001962961479239531,-0.005165991120151703,-0.004010738041471465,-0.00833617488648956,-0.006076400395509035,-0.007617796756298723,-0.008692238829243313,-0.007463414989263934,-0.008508936654118804,-0.007679783889583898,-0.003309340178189327,-0.005749041421757758,-0.00404489776040824,-0.004435314262375629,-0.007958105950089502,-0.0015864790722445784,-0.0026954506867263267,-0.003095663302791548,-0.005647930502899461,-0.0016156502881716297,-0.005115058815371946,-0.0029183818260279364,-0.0035686600605414217,-0.004470212430834129,-0.00502801049997516,-0.007405438827340258,-0.005396502360291301,-0.004919805029658654,-0.005788369835680516,-0.005976208780791189,-0.0043117557431248815,-0.00671667268216869,-0.008235675581080714,-0.007642692296093562,-0.011187830667086373,-0.010000288274155354,-0.009095716910480615,-0.008467034171656184,-0.010463765760917981,-0.005650924165041987,-0.0040459168410108114,-0.00637643311281297,-0.004701445252542945,-0.007213656860955831,-0.006678216944989336,-0.006401013513742955,-0.005442951339245046,-0.004846720892179937,-0.006505929049429498,-0.005691131013367238
+52.328573,4.911088,-0.002651833513337764,-0.006376878505631224,-0.005570012778529941,-0.00227912318331,-0.003461134550099239,-0.0023225350383452087,-0.00482499671514876,-0.0035055583603693184,-0.0019317318166610959,-0.006428340212074469,-0.002662961479239531,-0.006265991120151703,-0.004810738041471465,-0.00933617488648956,-0.0074764003955090355,-0.009017796756298723,-0.009592238829243312,-0.008363414989263932,-0.010008936654118806,-0.009179783889583898,-0.004309340178189327,-0.0072490414217577575,-0.005144897760408239,-0.00563531426237563,-0.0090581059500895,-0.002586479072244579,-0.0040954506867263265,-0.004595663302791548,-0.0069479305028994605,-0.00271565028817163,-0.006415058815371946,-0.004518381826027936,-0.005368660060541422,-0.0062702124308341295,-0.006228010499975161,-0.008405438827340258,-0.006296502360291301,-0.006519805029658654,-0.006888369835680515,-0.008076208780791188,-0.005511755743124881,-0.008716672682168691,-0.010435675581080715,-0.009242692296093563,-0.012187830667086374,-0.011900288274155355,-0.010295716910480614,-0.010667034171656183,-0.01116376576091798,-0.007050924165041987,-0.0050459168410108115,-0.00817643311281297,-0.0058014452525429454,-0.008713656860955831,-0.008278216944989335,-0.008001013513742954,-0.007042951339245046,-0.006446720892179937,-0.007805929049429498,-0.007091131013367238
+52.328578,4.911053,-0.002051833513337764,-0.005776878505631224,-0.005570012778529941,-0.0023791231833100003,-0.0026611345500992386,-0.0018225350383452086,-0.00392499671514876,-0.002705558360369318,-0.001631731816661096,-0.0061283402120744694,-0.002362961479239531,-0.006665991120151703,-0.004510738041471465,-0.00983617488648956,-0.007776400395509035,-0.009017796756298723,-0.009592238829243312,-0.008663414989263932,-0.010208936654118804,-0.009579783889583898,-0.0051093401781893266,-0.006649041421757758,-0.0047448977604082395,-0.005435314262375629,-0.0090581059500895,-0.0019864790722445786,-0.0031954506867263267,-0.003595663302791548,-0.005747930502899461,-0.0016156502881716297,-0.005815058815371946,-0.003318381826027936,-0.004568660060541422,-0.00597021243083413,-0.004828010499975161,-0.007605438827340259,-0.005796502360291301,-0.005619805029658654,-0.0062883698356805155,-0.007376208780791189,-0.004711755743124882,-0.007516672682168691,-0.009235675581080715,-0.007842692296093563,-0.012387830667086373,-0.012200288274155355,-0.010395716910480614,-0.009667034171656184,-0.01196376576091798,-0.006750924165041987,-0.005245916841010812,-0.007976433112812969,-0.005101445252542945,-0.00791365686095583,-0.007278216944989336,-0.007101013513742955,-0.005842951339245045,-0.005346720892179937,-0.006905929049429499,-0.006591131013367238
+52.328584,4.911013,-0.0011518335133377637,-0.004276878505631224,-0.004770012778529941,-0.00127912318331,-0.002061134550099239,-0.0010225350383452085,-0.00252499671514876,-0.0017055583603693182,-0.0005317318166610961,-0.00492834021207447,-0.001962961479239531,-0.005465991120151703,-0.004010738041471465,-0.00843617488648956,-0.006676400395509035,-0.007817796756298723,-0.008292238829243312,-0.007863414989263934,-0.008008936654118805,-0.007079783889583897,-0.0035093401781893267,-0.005949041421757758,-0.00434489776040824,-0.00433531426237563,-0.008358105950089501,-0.0024864790722445786,-0.0024954506867263266,-0.003595663302791548,-0.005447930502899461,-0.0010156502881716299,-0.005215058815371946,-0.001918381826027936,-0.0030686600605414212,-0.004170212430834129,-0.00432801049997516,-0.006805438827340258,-0.0044965023602913014,-0.004619805029658654,-0.004588369835680515,-0.005776208780791188,-0.0035117557431248807,-0.0064166726821686905,-0.008235675581080714,-0.007242692296093562,-0.009387830667086374,-0.008300288274155356,-0.008395716910480614,-0.008967034171656185,-0.010963765760917982,-0.005650924165041987,-0.0034459168410108116,-0.00607643311281297,-0.0038014452525429454,-0.006813656860955831,-0.006678216944989336,-0.005401013513742955,-0.004742951339245046,-0.004846720892179937,-0.004705929049429498,-0.004191131013367239
+52.328553,4.911235,-0.0016518335133377637,-0.004976878505631224,-0.0043700127785299405,-0.0013791231833100003,-0.002761134550099239,-0.0026225350383452086,-0.0036249967151487598,-0.0028055583603693183,-0.00023173181666109616,-0.005028340212074469,-0.002162961479239531,-0.004665991120151703,-0.003810738041471465,-0.00793617488648956,-0.005776400395509035,-0.007417796756298724,-0.007992238829243312,-0.007163414989263934,-0.008308936654118805,-0.007279783889583897,-0.002709340178189327,-0.006149041421757757,-0.003944897760408239,-0.00493531426237563,-0.008058105950089501,-0.0020864790722445784,-0.0028954506867263268,-0.003695663302791548,-0.005547930502899461,-0.00211565028817163,-0.005615058815371946,-0.004418381826027936,-0.0037686600605414213,-0.0052702124308341295,-0.00392801049997516,-0.008005438827340259,-0.005396502360291301,-0.005919805029658654,-0.005988369835680516,-0.006876208780791189,-0.004911755743124881,-0.006516672682168691,-0.008735675581080715,-0.006942692296093562,-0.010987830667086375,-0.009500288274155355,-0.008595716910480614,-0.008767034171656184,-0.01066376576091798,-0.0055509241650419875,-0.0038459168410108118,-0.005976433112812969,-0.004401445252542945,-0.006613656860955831,-0.0065782169449893355,-0.006101013513742955,-0.005442951339245046,-0.004746720892179937,-0.006605929049429498,-0.005191131013367239
+52.328524,4.910761,0.0009481664866622362,-0.0009768785056312236,-0.000970012778529941,0.00042087681668999985,-0.0005611345500992388,-0.0013225350383452084,-0.00062499671514876,-0.00010555836036931822,0.0033682681833389037,-0.0012283402120744696,0.0013370385207604693,0.002534008879848297,-1.0738041471465142e-05,0.00036382511351044054,0.002123599604490965,-0.0009177967562987235,-0.0005922388292433124,0.0006365850107360664,0.0012910633458811955,0.0021202161104161028,0.005490659821810673,5.0958578242242536e-05,0.004655102239591761,0.0015646857376243706,-0.001158105950089501,0.0030135209277554215,0.0013045493132736734,0.0009043366972084522,0.0003520694971005389,0.0011843497118283702,-0.0012150588153719464,-0.00011838182602793624,-0.00046866006054142146,-0.0010702124308341295,-0.0010280104999751604,-0.002005438827340259,-0.001396502360291301,-0.0004198050296586544,-0.005088369835680516,0.0009237912192088115,-0.0009117557431248812,-0.0021166726821686905,-0.001935675581080715,-0.0013426922960935626,-0.004087830667086374,-0.002300288274155355,0.0004042830895193857,-0.001667034171656184,-0.00416376576091798,0.00024907583495801253,0.00025408315898918857,0.00022356688718703057,-0.00010144525254294568,-0.0019136568609558308,-0.0026782169449893352,-0.0026010135137429545,-0.002042951339245045,-0.0018467208921799372,-0.004105929049429498,-0.001391131013367238
+52.328568,4.910198,0.0010481664866622362,-7.687850563122355e-05,-0.0024700127785299408,0.00102087681669,3.88654499007613e-05,0.0008774649616547915,-0.0016249967151487602,-0.0003055583603693182,0.0012682681833389039,-0.00362834021207447,-0.0002629614792395308,-0.002065991120151703,-0.0016107380414714652,-0.00503617488648956,-0.002876400395509035,-0.005617796756298724,-0.005092238829243313,-0.004163414989263934,-0.0043089366541188045,-0.003379783889583897,0.00019065982181067282,-0.0029490414217577575,5.510223959176051e-05,-0.0015353142623756293,-0.005258105950089501,0.0009135209277554214,-0.00019545068672632664,4.336697208452112e-06,-0.0014479305028994613,0.0013843497118283703,-0.0014150588153719462,-0.0003183818260279361,0.0005313399394585786,-0.0015702124308341295,-0.00022801049997516046,-0.0034054388273402586,-0.0020965023602913012,-0.0018198050296586543,-0.0024883698356805155,-0.0035762087807911886,-0.00041175574312488116,-0.0034166726821686904,-0.005835675581080715,-0.0034426922960935627,-0.006087830667086374,-0.005000288274155355,-0.0037957169104806143,-0.004767034171656184,-0.00636376576091798,-0.0018509241650419873,-0.0012459168410108112,-0.0016764331128129692,-0.0006014452525429457,-0.002913656860955831,-0.003378216944989335,-0.002701013513742955,-0.0015429513392450453,-0.0008467208921799372,-0.0019059290494294985,-0.0002911310133672381
+52.328573,4.910151,-0.0007518335133377639,-0.0009768785056312236,-0.0037700127785299407,0.00042087681668999985,-0.0018611345500992385,0.0018774649616547915,-0.0032249967151487596,-0.0016055583603693184,0.0010682681833389038,-0.004028340212074469,-0.0013629614792395306,-0.000765991120151703,-0.003210738041471465,-0.0046361748864895596,-0.002476400395509035,-0.006317796756298723,-0.003992238829243312,-0.004663414989263934,-0.0053089366541188045,-0.005079783889583897,0.0011906598218106728,-0.0020490414217577573,-0.0013448977604082397,-0.0018353142623756293,-0.005858105950089501,-0.0003864790722445787,-0.0014954506867263266,-0.0002956633027915479,-0.002847930502899461,0.0006843497118283702,-0.0005150588153719463,-1.8381826027936195e-05,-0.0006686600605414213,-0.0027702124308341294,-0.00222801049997516,-0.005605438827340259,-0.003696502360291301,-0.0038198050296586548,-0.005388369835680516,-0.005376208780791189,-0.002611755743124881,-0.00431667268216869,-0.006435675581080715,-0.003842692296093563,-0.007287830667086374,-0.006100288274155355,-0.0046957169104806145,-0.004067034171656184,-0.00636376576091798,-0.0023509241650419874,-0.0021459168410108117,-0.0021764331128129692,-0.0015014452525429457,-0.003313656860955831,-0.0045782169449893355,-0.0039010135137429545,-0.003642951339245045,-0.002246720892179937,-0.005105929049429498,-0.003591131013367238
+52.328598,4.90965,-0.0024518335133377634,-0.00017687850563122357,-0.006670012778529941,0.00042087681668999985,-0.003461134550099239,-0.0016225350383452086,-0.00562499671514876,-0.002005558360369318,-0.003331731816661096,-0.0068283402120744695,-0.0013629614792395306,0.001834008879848297,-0.002710738041471465,-0.005536174886489559,-0.002876400395509035,-0.004317796756298723,-0.005192238829243313,-0.0021634149892639336,-0.004608936654118805,-0.002279783889583897,0.001390659821810673,-0.008449041421757758,-0.00444489776040824,-0.0019353142623756295,-0.0060581059500895,-0.0011864790722445786,-0.0026954506867263267,-0.004595663302791548,-0.0017479305028994612,-0.0020156502881716297,-0.0029150588153719465,-0.0035183818260279363,-0.0026686600605414215,-0.00407021243083413,-0.0030280104999751605,-0.006805438827340258,-0.0027965023602913013,-0.005219805029658654,-0.0049883698356805155,-0.005076208780791189,-0.004711755743124882,-0.0017166726821686905,-0.005435675581080715,-0.004642692296093562,-0.005587830667086373,-0.005200288274155355,-0.004795716910480614,-0.007867034171656184,-0.0068637657609179805,-0.003550924165041987,-0.0018459168410108115,-0.0052764331128129695,-0.0068014452525429455,-0.007413656860955831,-0.006878216944989335,-0.005601013513742955,-0.004542951339245045,-0.002746720892179937,-0.0024059290494294985,-0.0044911310133672385
+52.328522,4.91001,-0.0007518335133377639,-0.0008768785056312235,-0.003470012778529941,0.0007208768166899999,-0.002161134550099239,-0.0009225350383452085,-0.00232499671514876,-0.002105558360369318,0.0028682681833389037,-0.00462834021207447,-0.0001629614792395308,-0.002365991120151703,-0.001910738041471465,-0.004536174886489559,-0.0016764003955090352,-0.006117796756298723,-0.0056922388292433125,-0.0037634149892639334,-0.0013089366541188044,-0.0026797838895838972,0.001790659821810673,-0.0039490414217577575,-0.0012448977604082394,-0.00463531426237563,-0.0054581059500895006,1.352092775542147e-05,-0.0029954506867263266,-0.0008956633027915479,0.0010520694971005388,-0.00211565028817163,-0.003615058815371946,-0.002718381826027936,-0.0007686600605414214,-0.0032702124308341294,-0.0005280104999751604,-0.004605438827340259,-0.0020965023602913012,-0.0030198050296586544,-0.004188369835680515,-0.003676208780791189,-0.0015117557431248811,-0.0031166726821686905,-0.004135675581080715,-0.004942692296093562,-0.005187830667086374,-0.005400288274155355,-0.0024957169104806143,-0.0052670341716561835,-0.00766376576091798,-0.0017509241650419875,-0.003545916841010812,-0.003276433112812969,-0.0039014452525429457,-0.0036136568609558307,-0.005778216944989335,-0.005401013513742955,-0.004042951339245046,-0.003746720892179937,-0.004405929049429498,-0.002291131013367238
+52.328553,4.909772,-0.0013518335133377638,-0.00037687850563122356,-0.003870012778529941,0.0012208768166899998,-0.003161134550099239,-0.0014225350383452085,-0.00372499671514876,-0.002105558360369318,0.0017682681833389039,-0.00622834021207447,-0.0020629614792395307,-0.0018659911201517028,-0.002410738041471465,-0.0032361748864895594,-0.0012764003955090353,-0.004717796756298723,-0.004092238829243313,-0.0038634149892639337,-0.0034089366541188043,-0.002579783889583897,0.0006906598218106728,-0.004649041421757758,-0.0009448977604082395,-0.00433531426237563,-0.006558105950089501,-0.0011864790722445786,-0.0022954506867263265,-0.003895663302791548,-0.001047930502899461,-0.0018156502881716298,-0.0012150588153719464,-0.002718381826027936,-0.004168660060541422,-0.0023702124308341292,-0.0032280104999751606,-0.0038054388273402588,-0.003896502360291301,-0.0037198050296586545,-0.005488369835680515,-0.004276208780791189,-0.002411755743124881,-0.005216672682168691,-0.005135675581080715,-0.003842692296093563,-0.007987830667086374,-0.0055002882741553545,-0.0046957169104806145,-0.0052670341716561835,-0.00746376576091798,-0.003950924165041987,-0.0031459168410108117,-0.0017764331128129695,-0.0022014452525429455,-0.006113656860955831,-0.005478216944989335,-0.0059010135137429545,-0.004842951339245045,-0.003446720892179937,-0.007805929049429498,-0.0037911310133672384
+52.413894,4.92408,0.00014816648666223626,0.006223121494368776,-0.002270012778529941,0.0018208768166899998,-0.00036113455009923866,-0.00032253503834520845,-0.00032499671514876,-0.00010555836036931822,0.0018682681833389037,-0.0027283402120744696,-0.0001629614792395308,-0.001565991120151703,-0.002810738041471465,-0.00433617488648956,-0.001876400395509035,-0.0012177967562987235,-9.223882924331238e-05,-6.341498926393349e-05,0.0012910633458811955,-0.0003797838895838972,0.001890659821810673,-0.0020490414217577573,-0.002144897760408239,0.0008646857376243706,0.00034189404991049905,-0.00018647907224457862,-0.0009954506867263266,-0.003695663302791548,-0.0008479305028994612,0.0012843497118283703,-0.002115058815371946,-0.0025183818260279362,-0.0013686600605414215,-0.0038702124308341293,-0.0027280104999751606,-0.0037054388273402585,-0.000896502360291301,-0.004119805029658655,-0.0026883698356805156,-0.0025762087807911886,-0.0014117557431248809,-0.0015166726821686904,-0.001835675581080715,-0.0021426922960935627,0.00011216933291362653,-0.0035002882741553554,-0.0012957169104806142,-0.002567034171656184,-0.00496376576091798,-0.0020509241650419874,-0.00024591684101081144,0.0003235668871870306,-0.003701445252542945,-0.002013656860955831,-0.001278216944989335,-0.002201013513742955,-0.0015429513392450453,-0.003146720892179937,-0.0023059290494294987,0.000608868986632762
+52.413808,4.924166,0.0017481664866622361,0.006423121494368776,-0.000670012778529941,0.00272087681669,-0.0026611345500992386,-0.00032253503834520845,-0.0009249967151487601,-0.002405558360369318,0.0008682681833389039,0.0008716597879255305,0.0007370385207604692,0.002334008879848297,-0.0012107380414714652,-0.005236174886489559,-0.0010764003955090352,-0.0006177967562987236,-0.0012922388292433125,0.0018365850107360663,-0.0005089366541188046,0.003720216110416103,0.0031906598218106727,0.0046509585782422425,-0.0035448977604082394,0.0023646857376243705,0.0014418940499104991,0.0026135209277554214,0.0004045493132736734,-0.005595663302791548,-0.0007479305028994612,0.0005843497118283702,-0.0013150588153719464,-0.003718381826027936,0.0009313399394585786,-0.004570212430834129,-0.0021280104999751607,-0.004405438827340258,0.000603497639708699,-0.008519805029658656,-0.0013883698356805156,-0.0012762087807911887,-0.00011175574312488113,-0.0004166726821686905,-0.004735675581080715,-0.0034426922960935627,0.0026121693329136265,-0.00020028827415535507,0.0006042830895193856,-0.000867034171656184,-0.0012637657609179801,0.0005490758349580126,0.0023540831589891884,-0.0014764331128129696,-0.00010144525254294568,-0.001813656860955831,-0.0015782169449893354,-0.002201013513742955,-0.0037429513392450453,-0.001946720892179937,-0.0034059290494294985,-0.00019113101336723807
+52.413696,4.924331,0.0034481664866622365,0.008123121494368776,0.000929987221470059,0.00282087681669,0.002538865449900761,0.0030774649616547916,0.00107500328485124,0.0018944416396306817,0.0033682681833389037,0.0005716597879255303,0.0016370385207604692,0.000834008879848297,0.00038926195852853477,-0.00033617488648955956,-0.0008764003955090352,-0.0010177967562987236,-0.0007922388292433125,-0.00026341498926393353,0.0006910633458811954,0.001020216110416103,0.002990659821810673,0.0010509585782422423,0.0018551022395917605,0.0003646857376243705,0.0016418940499104992,0.0012135209277554216,0.0012045493132736733,0.0012043366972084523,5.2069497100538866e-05,0.00338434971182837,-0.0008150588153719463,0.0015816181739720637,0.0023313399394585786,0.0014297875691658705,-0.0006280104999751605,-0.00020543882734025865,0.000803497639708699,0.0011801949703413455,-0.0012883698356805154,-0.0003762087807911887,0.002288244256875119,-0.0005166726821686906,-0.002735675581080715,-0.0013426922960935626,0.0030121693329136267,-0.002000288274155355,-0.00039571691048061435,-0.001267034171656184,-0.0015637657609179803,0.0008490758349580126,0.00045408315898918855,0.0005235668871870306,0.0007985547474570543,-0.0006136568609558309,-0.0006782169449893352,-0.0035010135137429547,0.0006570486607549547,5.3279107820062804e-05,-0.0026059290494294986,0.000608868986632762
+52.413634,4.924458,0.0009481664866622362,0.003923121494368776,-0.002870012778529941,0.0008208768166899998,0.0011388654499007614,0.0007774649616547916,-0.00182499671514876,-0.0013055583603693182,-0.0024317318166610963,-0.005128340212074469,-0.0020629614792395307,-0.005165991120151703,-0.003510738041471465,-0.00843617488648956,-0.007276400395509036,-0.007417796756298724,-0.007492238829243313,-0.006363414989263933,-0.004408936654118805,-0.006979783889583897,-0.002609340178189327,-0.003449041421757757,-0.004244897760408239,-0.0038353142623756293,-0.002258105950089501,-8.647907224457857e-05,-0.0022954506867263265,-0.004295663302791548,-0.003547930502899461,-0.0005156502881716299,-0.007215058815371946,-0.002418381826027936,-0.0016686600605414215,-0.0042702124308341294,-0.00472801049997516,-0.005105438827340259,-0.0041965023602913015,-0.003519805029658654,-0.0033883698356805157,-0.006976208780791188,-0.002511755743124881,-0.005216672682168691,-0.005135675581080715,-0.005942692296093562,-0.005587830667086373,-0.008700288274155355,-0.011595716910480613,-0.006367034171656184,-0.00766376576091798,-0.005150924165041988,-0.005445916841010812,-0.006176433112812969,-0.0016014452525429455,-0.008913656860955832,-0.003578216944989335,-0.0021010135137429545,-0.0014429513392450453,-0.001046720892179937,-0.0019059290494294985,-0.0009911310133672382
+52.413523,4.924835,0.0034481664866622365,0.005923121494368776,0.001529987221470059,0.0011208768166899997,0.0030388654499007616,0.0006774649616547915,0.0018750032848512401,0.0003944416396306818,0.003468268183338904,-0.0005283402120744696,0.0011370385207604692,0.003134008879848297,-0.00021073804147146515,-0.0024361748864895594,-0.003476400395509035,-0.0025177967562987234,-0.0017922388292433123,-0.0006634149892639335,-0.00010893665411880449,-0.0016797838895838972,0.0014906598218106728,-0.0024490414217577575,-0.00034489776040823967,0.00016468573762437057,-0.000958105950089501,0.0003135209277554214,-0.002095450686726327,-0.0009956633027915478,-0.001847930502899461,0.0026843497118283705,-0.0006150588153719463,-0.0003183818260279361,0.0013313399394585786,-0.0002702124308341295,-0.0021280104999751607,-0.0024054388273402586,-0.000996502360291301,-0.0022198050296586545,-0.0025883698356805153,-0.002676208780791189,-0.001111755743124881,-0.0011166726821686904,-0.002535675581080715,-0.0025426922960935625,-0.0009878306670863734,-0.004800288274155355,-0.0046957169104806145,-0.000767034171656184,-0.00606376576091798,-0.0015509241650419874,-0.002945916841010812,-0.0001764331128129694,0.0010985547474570542,-0.002313656860955831,-0.0002782169449893352,-0.0006010135137429545,0.0007570486607549547,0.0001532791078200628,0.0008940709505705015,-0.000491131013367238
+52.413461,4.92492,0.0019481664866622362,0.007223121494368776,0.0003299872214700591,0.0022208768166899996,0.0005388654499007613,-0.0004225350383452085,-2.4996715148759984e-05,0.0004944416396306817,0.004368268183338904,-0.0012283402120744696,-0.0011629614792395308,-0.0034659911201517027,-0.00011073804147146515,-0.0027361748864895598,-0.002776400395509035,-0.005917796756298724,-0.003192238829243312,-0.0013634149892639337,-0.0010089366541188045,-0.0006797838895838971,0.0023906598218106727,0.0029509585782422423,-0.00304489776040824,-0.0030353142623756294,0.0006418940499104992,0.00011352092775542152,-0.003395450686726327,-0.001895663302791548,-0.002147930502899461,0.005784349711828371,-0.004315058815371946,-0.0006183818260279361,0.00043133993945857857,0.0031297875691658704,-0.0026280104999751603,-0.0013054388273402587,-0.002996502360291301,-0.0030198050296586544,-0.004088369835680516,-0.00907620878079119,0.0002882442568751189,-0.0015166726821686904,-0.002235675581080715,-0.0020426922960935625,0.00041216933291362656,-0.0058002882741553545,-0.002395716910480614,-0.001467034171656184,-0.00436376576091798,-0.0011509241650419872,0.0007540831589891886,-0.00437643311281297,-0.0019014452525429458,-0.0015136568609558309,-0.0010782169449893354,-0.0012010135137429546,0.0005570486607549546,-0.0006467208921799373,0.0017940709505705015,0.0025088689866327616
+52.413478,4.924522,-0.0016518335133377637,0.007423121494368776,-7.001277852994092e-05,-7.912318331000016e-05,-0.0011611345500992386,-0.00012253503834520847,-0.00212499671514876,-0.0003055583603693182,0.0008682681833389039,-0.0037283402120744692,0.00023703852076046921,-0.002665991120151703,-0.0036107380414714648,-0.0039361748864895595,-0.004676400395509035,-0.0035177967562987234,-0.0056922388292433125,-0.004363414989263933,-0.0024089366541188042,-0.002779783889583897,-0.000409340178189327,-0.0022490414217577574,-0.005044897760408239,-0.0039353142623756296,-0.001658105950089501,0.0007135209277554214,-0.0028954506867263268,-0.005395663302791547,-0.002347930502899461,-0.0026156502881716295,-0.0037150588153719464,-0.004018381826027937,-0.0032686600605414213,-0.004770212430834129,-0.00972801049997516,-0.007705438827340259,-0.003396502360291301,-0.005319805029658654,-0.006788369835680516,-0.00787620878079119,-0.002811755743124881,-0.00501667268216869,-0.008135675581080715,-0.004642692296093562,-0.004387830667086374,-0.006900288274155355,-0.004295716910480614,-0.005867034171656183,-0.010263765760917979,-0.004250924165041987,-0.003545916841010812,-0.0025764331128129694,-0.0032014452525429456,-0.006613656860955831,-0.005478216944989335,-0.006601013513742955,-0.007742951339245046,-0.0005467208921799372,-0.0036059290494294986,-0.002391131013367238
+52.413409,4.924608,-0.0011518335133377637,0.0027231214943687766,-0.001470012778529941,-0.0009791231833100001,-0.0016611345500992388,-0.0009225350383452085,-0.00442499671514876,-0.0029055583603693185,0.00046826818333890394,-0.0058283402120744695,-0.002462961479239531,-0.001565991120151703,-0.0026107380414714648,-0.00503617488648956,-0.003976400395509035,-0.007417796756298724,-0.003992238829243312,-0.0015634149892639335,-0.0026089366541188043,-0.002579783889583897,-0.0008093401781893272,-0.0033490414217577577,-0.0023448977604082397,-0.0014353142623756295,-0.001958105950089501,-0.002286479072244579,-0.0022954506867263265,-0.009095663302791547,-0.005347930502899461,-0.0032156502881716294,-0.007615058815371946,-0.004118381826027936,-0.0029686600605414214,-0.00667021243083413,-0.00862801049997516,-0.008205438827340258,-0.004296502360291301,-0.006119805029658654,-0.005088369835680516,-0.006876208780791189,-0.0034117557431248813,-0.0030166726821686906,-0.0060356755810807156,-0.008842692296093562,-0.003487830667086374,-0.005400288274155355,-0.004495716910480614,-0.008467034171656184,-0.0068637657609179805,-0.006550924165041987,-0.0028459168410108118,-0.008076433112812968,-0.006901445252542946,-0.005313656860955831,-0.005078216944989336,-0.007401013513742955,-0.005542951339245045,-0.0062467208921799374,-0.009005929049429498,-0.005691131013367238
+52.413273,4.924928,-0.0009518335133377636,0.0058231214943687765,-0.000570012778529941,-0.0003791231833100001,-0.0014611345500992387,0.00027746496165479155,-0.00062499671514876,-0.0011055583603693181,-0.00013173181666109634,-0.00432834021207447,-0.0002629614792395308,3.400887984829695e-05,-0.0011107380414714652,-0.00433617488648956,-0.002976400395509035,-0.0033177967562987238,0.00010776117075668749,0.0005365850107360666,-8.936654118804556e-06,2.0216110416102786e-05,0.002490659821810673,-0.004049041421757758,-0.0009448977604082395,-0.0015353142623756293,-0.00015810595008950096,0.00011352092775542152,0.0011045493132736733,-0.006695663302791547,-0.0034479305028994613,0.0011843497118283702,-0.005115058815371946,-0.003818381826027936,-0.0016686600605414215,-0.0033702124308341293,-0.0032280104999751606,-0.005105438827340259,-0.002196502360291301,-0.0034198050296586546,-0.0036883698356805156,-0.004576208780791189,-0.0009117557431248812,-0.0024166726821686904,-0.005535675581080715,-0.005442692296093563,-0.0009878306670863734,-0.003000288274155355,-0.0005957169104806143,-0.004367034171656184,-0.00516376576091798,-0.0008509241650419873,-0.0005459168410108114,-0.003976433112812969,-0.0039014452525429457,-0.005113656860955831,-0.004478216944989335,-0.004601013513742955,-0.0022429513392450452,-0.004146720892179937,-0.003905929049429499,-0.0016911310133672379
+52.413177,4.925559,0.0014481664866622362,0.004923121494368776,-0.00037001277852994095,0.0007208768166899999,0.0008388654499007612,-0.0017225350383452084,-0.0016249967151487602,-0.0012055583603693182,-0.00043173181666109626,-0.0030283402120744696,-0.0017629614792395308,-0.001465991120151703,-0.003310738041471465,-0.00473617488648956,-0.002476400395509035,-0.005717796756298723,-0.0033922388292433126,-0.0031634149892639336,-0.0028089366541188044,-0.002579783889583897,-0.00020934017818932714,-0.003749041421757757,-0.0017448977604082399,-0.0029353142623756295,-0.00015810595008950096,-0.0018864790722445787,-0.002595450686726327,-0.005295663302791548,-0.002047930502899461,-0.0010156502881716299,-0.005315058815371946,-0.002418381826027936,-0.0011686600605414215,-0.0034702124308341295,-0.005728010499975161,-0.006105438827340258,-0.0041965023602913015,-0.0023198050296586543,-0.006088369835680516,-0.004776208780791189,-0.002711755743124881,-0.004516672682168691,-0.005735675581080716,-0.0063426922960935625,-0.003187830667086374,-0.006000288274155355,-0.004795716910480614,-0.005867034171656183,-0.00606376576091798,-0.005050924165041987,-0.0033459168410108113,-0.0031764331128129697,-0.004201445252542946,-0.005213656860955831,-0.004378216944989336,-0.004401013513742955,-0.003342951339245045,-0.004446720892179937,-0.006705929049429498,-0.0038911310133672387
+52.413201,4.925115,0.002148166486662236,0.0048231214943687765,-0.001070012778529941,0.00272087681669,0.0006388654499007614,0.00037746496165479154,-0.00192499671514876,-0.0017055583603693182,-0.0005317318166610961,-0.0024283402120744693,-0.002362961479239531,-0.002065991120151703,-0.002310738041471465,-0.0029361748864895594,-0.0041764003955090355,-0.003717796756298723,-0.004492238829243312,-0.0019634149892639335,-0.0019089366541188042,-0.0016797838895838972,-0.0008093401781893272,-0.0036490414217577576,-0.0035448977604082394,-0.0010353142623756293,-0.0005581059500895009,-0.0018864790722445787,-0.002095450686726327,-0.002995663302791548,-0.003547930502899461,-0.0016156502881716297,-0.004715058815371946,-0.003018381826027936,-0.0024686600605414214,-0.004570212430834129,-0.00522801049997516,-0.0055054388273402585,-0.003696502360291301,-0.005219805029658654,-0.004488369835680515,-0.005576208780791189,-0.002811755743124881,-0.0035166726821686907,-0.005935675581080714,-0.007842692296093563,-0.0029878306670863735,-0.005200288274155355,-0.0046957169104806145,-0.004967034171656184,-0.00716376576091798,-0.004150924165041987,-0.0028459168410108118,-0.0036764331128129693,-0.006401445252542945,-0.006313656860955831,-0.006278216944989336,-0.005001013513742955,-0.0016429513392450454,-0.004346720892179937,-0.005605929049429498,-0.001891131013367238
+52.413118,4.925708,0.0008481664866622363,0.005623121494368776,0.000929987221470059,0.0006208768166899998,0.0005388654499007613,-0.0009225350383452085,-0.00202499671514876,-0.0003055583603693182,0.0005682681833389038,-0.0027283402120744696,-0.0015629614792395307,-0.002265991120151703,-0.002810738041471465,-0.00443617488648956,-0.0017764003955090353,-0.004617796756298724,-0.0026922388292433125,-0.0013634149892639337,-0.0017089366541188046,-0.0018797838895838969,0.000990659821810673,-0.0023490414217577577,-0.0010448977604082393,-0.0019353142623756295,-0.001158105950089501,-0.0015864790722445784,-0.0022954506867263265,-0.003795663302791548,-0.00044793050289946114,-0.00151565028817163,-0.0035150588153719463,-0.003018381826027936,-0.0025686600605414212,-0.0014702124308341295,-0.0030280104999751605,-0.006405438827340258,-0.003996502360291301,-0.0033198050296586543,-0.004588369835680515,-0.0051762087807911885,-0.003111755743124881,-0.004916672682168691,-0.003235675581080715,-0.0010426922960935627,-0.0018878306670863734,-0.006000288274155355,-0.003995716910480614,-0.005867034171656183,-0.006563765760917981,-0.003550924165041987,-0.0008459168410108115,-0.0018764331128129693,-0.004101445252542945,-0.0036136568609558307,-0.004878216944989335,-0.003201013513742955,-0.0037429513392450453,-0.002146720892179937,-0.004705929049429498,-0.0012911310133672381
+52.413174,4.925139,-0.0004518335133377638,0.0030231214943687765,-0.002770012778529941,0.0022208768166899996,-0.0005611345500992388,0.0011774649616547916,-0.00082499671514876,0.0012944416396306817,-0.003031731816661096,-0.00422834021207447,-0.0013629614792395306,0.000834008879848297,-0.0008107380414714651,-0.00603617488648956,-0.0041764003955090355,-0.0025177967562987234,-0.0018922388292433126,-0.0008634149892639334,0.00019106334588119548,-0.0005797838895838973,0.0015906598218106728,-0.0005490414217577574,-0.0026448977604082396,-0.00033531426237562955,-0.0007581059500895009,-0.0015864790722445784,-0.0009954506867263266,-0.005195663302791548,-0.0032479305028994612,-1.5650288171629653e-05,-0.006215058815371946,-0.005518381826027936,-0.0019686600605414214,-0.004470212430834129,-0.0034280104999751602,-0.006005438827340259,-0.001496502360291301,-0.004819805029658654,-0.0032883698356805154,-0.0051762087807911885,-0.002811755743124881,-0.0015166726821686904,-0.006235675581080714,-0.005442692296093563,-0.0022878306670863734,-0.0038002882741553553,-0.003595716910480614,-0.008867034171656183,-0.00586376576091798,-0.004250924165041987,-0.0024459168410108116,-0.00467643311281297,-0.0055014452525429455,-0.001413656860955831,-0.004878216944989335,-0.0036010135137429546,-0.004542951339245045,-0.0018467208921799372,-0.006805929049429498,-0.0031911310133672386
+52.413161,4.925162,0.0007481664866622362,0.005723121494368776,-0.0004700127785299409,0.0025208768166899995,-0.0004611345500992387,0.0018774649616547915,-0.00152499671514876,0.0005944416396306818,-0.0006317318166610963,-0.005128340212074469,-0.0001629614792395308,0.000634008879848297,-0.0006107380414714651,-0.0038361748864895596,-0.001976400395509035,-0.002417796756298723,-0.0029922388292433124,-0.0007634149892639335,-0.0040089366541188045,-0.00027978388958389724,0.004390659821810673,-0.0009490414217577575,-0.0011448977604082396,0.00046468573762437055,0.00014189404991049896,-0.0005864790722445784,-0.0006954506867263265,-0.0044956633027915475,-0.001847930502899461,-0.0003156502881716298,-0.005615058815371946,-0.003918381826027936,-0.0011686600605414215,-0.0022702124308341294,-0.0035280104999751605,-0.005805438827340258,-0.001596502360291301,-0.005519805029658654,-0.0036883698356805156,-0.007676208780791189,-0.0015117557431248811,0.0007833273178313093,-0.005835675581080715,-0.004142692296093563,-0.002487830667086373,-0.005400288274155355,-0.0016957169104806142,-0.006467034171656184,-0.00416376576091798,-0.0055509241650419875,-0.00024591684101081144,-0.0028764331128129698,-0.0026014452525429457,0.001386343139044169,-0.0036782169449893353,-0.0015010135137429545,-0.0037429513392450453,-0.00044672089217993714,-0.004505929049429498,-0.002691131013367238
+52.413165,4.925128,4.816648666223621e-05,0.0027231214943687766,-0.0016700127785299408,0.0007208768166899999,-0.00016113455009923868,-2.253503834520848e-05,-0.00342499671514876,9.444163963068177e-05,-0.002631731816661096,-0.00392834021207447,-0.004262961479239531,-0.0011659911201517032,-0.0017107380414714652,-0.00533617488648956,-0.002976400395509035,-0.003717796756298723,-0.003492238829243312,-0.0018634149892639334,-0.0019089366541188042,-0.0010797838895838974,-0.0034093401781893273,-0.0014490414217577575,-0.003444897760408239,-0.0008353142623756296,-0.001158105950089501,-0.0020864790722445784,-0.0017954506867263265,-0.006695663302791547,-0.0037479305028994612,-0.0011156502881716297,-0.004715058815371946,-0.0049183818260279365,-0.0025686600605414212,-0.0049702124308341296,-0.0034280104999751602,-0.006405438827340258,-0.002496502360291301,-0.005119805029658654,-0.0036883698356805156,-0.005676208780791189,-0.002111755743124881,-0.0037166726821686903,-0.0063356755810807155,-0.007742692296093563,-0.0025878306670863733,-0.004800288274155355,-0.007095716910480615,-0.011967034171656184,-0.00566376576091798,-0.005650924165041987,-0.003545916841010812,-0.00497643311281297,-0.0012014452525429457,-0.001813656860955831,-0.004178216944989335,-0.004501013513742954,-0.003842951339245045,-0.003146720892179937,-0.006305929049429498,-0.0028911310133672386
+52.413059,4.925768,0.00014816648666223626,0.0032231214943687766,0.0004299872214700591,-0.00077912318331,-0.00016113455009923868,-0.0010225350383452085,-0.00112499671514876,0.0008944416396306817,-0.00023173181666109616,-0.0038283402120744695,-0.002162961479239531,-0.0009659911201517031,-0.0026107380414714648,-0.0033361748864895596,-0.0025764003955090348,-0.005317796756298723,-0.0022922388292433123,-0.0034634149892639335,-0.0012089366541188046,-0.002979783889583897,0.002690659821810673,-0.0035490414217577574,-0.0019448977604082395,-0.0015353142623756293,-0.001258105950089501,-0.0027864790722445785,-0.0027954506867263265,-0.003995663302791548,-0.005447930502899461,-0.00211565028817163,-0.004415058815371946,-0.002718381826027936,-0.0012686600605414213,-0.0038702124308341293,-0.00552801049997516,-0.005905438827340259,-0.002896502360291301,-0.0037198050296586545,-0.0042883698356805154,-0.006076208780791188,-0.0014117557431248809,-0.00471667268216869,-0.006235675581080714,-0.005842692296093562,-0.0012878306670863736,-0.006300288274155355,-0.004095716910480615,-0.005767034171656184,-0.00586376576091798,-0.0026509241650419873,-0.0026459168410108112,-0.0013764331128129693,-0.002001445252542946,-0.003913656860955831,-0.004478216944989335,-0.0039010135137429545,-0.002642951339245045,-0.002746720892179937,-0.0030059290494294988,-0.0014911310133672382
+52.41304,4.925711,-0.0009518335133377636,0.0034231214943687767,-0.0019700127785299408,-0.0021791231833100002,-0.002161134550099239,-0.004422535038345208,-0.0029249967151487597,-0.003405558360369318,-0.0024317318166610963,-0.005428340212074469,-0.0035629614792395308,-0.005865991120151703,-0.005510738041471465,-0.00573617488648956,-0.006076400395509035,-0.009117796756298722,-0.008692238829243313,-0.007663414989263934,-0.007108936654118805,-0.007679783889583898,-0.003309340178189327,-0.0062490414217577575,-0.006244897760408239,-0.006135314262375629,-0.0037581059500895013,-0.004786479072244578,-0.005595450686726326,-0.006395663302791547,-0.005147930502899461,-0.00401565028817163,-0.007215058815371946,-0.007518381826027936,-0.0038686600605414216,-0.006870212430834129,-0.00642801049997516,-0.0075054388273402585,-0.0044965023602913014,-0.007519805029658654,-0.008488369835680515,-0.007276208780791188,-0.004911755743124881,-0.007816672682168692,-0.008935675581080715,-0.007742692296093563,-0.008587830667086373,-0.010400288274155355,-0.009695716910480615,-0.011367034171656184,-0.01136376576091798,-0.007850924165041987,-0.008345916841010811,-0.00697643311281297,-0.007701445252542946,-0.007213656860955831,-0.007678216944989336,-0.005601013513742955,-0.007542951339245045,-0.005746720892179937,-0.008105929049429498,-0.004791131013367238
+52.412985,4.925979,-0.003651833513337764,0.0030231214943687765,-0.0016700127785299408,-0.0001791231833100002,-0.003761134550099239,-0.0026225350383452086,-0.00142499671514876,-0.0026055583603693186,-0.0019317318166610959,-0.0058283402120744695,-0.002962961479239531,-0.001565991120151703,-0.00031073804147146517,-0.00663617488648956,-0.002076400395509035,-0.0052177967562987235,-0.003992238829243312,-0.0030634149892639333,-0.0026089366541188043,-0.0035797838895838974,0.0003906598218106729,-0.003449041421757757,-0.0004448977604082395,0.0014646857376243705,-0.00015810595008950096,-0.0036864790722445783,-0.0016954506867263267,-0.004095663302791547,-0.003047930502899461,-0.002815650288171629,-0.005515058815371946,-0.0049183818260279365,-0.003368660060541421,-0.0039702124308341295,-0.007928010499975161,-0.010305438827340259,-0.003396502360291301,-0.0028198050296586548,-0.006088369835680516,-0.010976208780791188,-1.1755743124881087e-05,-0.0064166726821686905,-0.005535675581080715,-0.005442692296093563,-0.002487830667086373,-0.006300288274155355,-0.005495716910480614,-0.005467034171656184,-0.00866376576091798,-0.0008509241650419873,-0.0036459168410108113,0.00042356688718703055,-0.005901445252542946,-0.005813656860955831,-0.004978216944989336,-0.005401013513742955,-0.007442951339245046,-0.006446720892179937,-0.006005929049429498,-0.004091131013367238
+52.41297,4.926003,0.0019481664866622362,0.007923121494368777,0.0011299872214700591,0.0021208768166899998,-0.0014611345500992387,-0.00012253503834520847,-2.4996715148759984e-05,-0.00040555836036931824,0.0017682681833389039,-0.0008283402120744696,0.0012370385207604692,-0.001465991120151703,-0.002410738041471465,-0.002836174886489559,0.0009235996044909649,-0.0016177967562987234,-0.0032922388292433123,0.00023658501073606654,-0.0024089366541188042,-0.0007797838895838971,0.001390659821810673,-0.0013490414217577574,0.0008551022395917604,-0.0013353142623756292,-0.002658105950089501,-0.0003864790722445787,-0.002095450686726327,-0.002495663302791548,0.0006520694971005389,-0.0004156502881716296,-0.0033150588153719462,-0.002718381826027936,-0.002068660060541421,-0.0020702124308341293,-0.00412801049997516,-0.004105438827340258,-0.002896502360291301,-0.0013198050296586543,-0.0049883698356805155,-0.004376208780791188,-0.0035117557431248807,-0.0041166726821686905,-0.003135675581080715,-0.0014426922960935626,-0.0023878306670863736,-0.004400288274155355,-0.007095716910480615,-0.0036670341716561836,-0.00286376576091798,-0.0023509241650419874,-0.0008459168410108115,-0.0025764331128129694,-0.003001445252542946,-0.002913656860955831,-0.0008782169449893352,-0.003701013513742955,-0.0012429513392450452,-0.0030467208921799373,-0.0035059290494294988,0.00010886898663276185
+52.413046,4.92533,-0.0011518335133377637,0.006723121494368776,-0.001470012778529941,-0.00107912318331,-0.0028611345500992383,-0.0004225350383452085,-0.00302499671514876,-0.0014055583603693183,0.001368268183338904,-0.005128340212074469,-0.0010629614792395307,-0.000865991120151703,-0.0016107380414714652,-0.0033361748864895596,-0.004076400395509035,-0.0017177967562987237,-0.003192238829243312,-0.0013634149892639337,-0.0019089366541188042,-0.0009797838895838971,-0.000409340178189327,-0.003449041421757757,-0.00274489776040824,-0.0022353142623756294,-0.001058105950089501,-0.0016864790722445787,-0.0019954506867263266,-0.002195663302791548,-0.001047930502899461,-0.0010156502881716299,-0.006415058815371946,-0.0029183818260279364,-0.0019686600605414214,-0.0035702124308341293,-0.0036280104999751603,-0.006405438827340258,-0.004596502360291301,-0.004219805029658654,-0.004588369835680515,-0.003376208780791189,-0.0017117557431248808,-0.0024166726821686904,-0.008035675581080716,-0.005542692296093562,-0.0020878306670863737,-0.005900288274155355,-0.0019957169104806143,-0.0033670341716561837,-0.005963765760917981,-0.005350924165041987,-0.0007459168410108115,-0.0038764331128129698,-0.0032014452525429456,-0.004613656860955831,-0.003378216944989335,-0.005801013513742955,-0.005442951339245046,-0.003646720892179937,-0.0049059290494294985,-0.0033911310133672382
+52.413024,4.925447,0.0017481664866622361,0.006423121494368776,-0.000970012778529941,-0.00697912318331,-0.0018611345500992385,0.00047746496165479153,-0.00372499671514876,-0.003305558360369318,-0.00023173181666109616,-0.00462834021207447,-0.0001629614792395308,-0.0011659911201517032,-0.0017107380414714652,-0.0032361748864895594,-0.002976400395509035,-0.0029177967562987236,-0.004192238829243312,3.6585010736066444e-05,-0.00010893665411880449,-0.0005797838895838973,-0.00020934017818932714,-0.0030490414217577574,-0.0005448977604082393,-0.0006353142623756295,-0.0004581059500895009,-0.0011864790722445786,-0.0013954506867263267,-0.003995663302791548,-0.004147930502899461,-0.0017156502881716296,-0.004715058815371946,-0.002618381826027936,-0.0018686600605414211,-0.00467021243083413,-0.009328010499975161,-0.0036054388273402587,-0.002696502360291301,-0.006419805029658654,-0.0037883698356805154,-0.003976208780791189,0.001088244256875119,-0.00401667268216869,-0.0056356755810807145,-0.006642692296093562,-0.0013878306670863734,-0.005000288274155355,-0.0034957169104806144,-0.011167034171656183,-0.00666376576091798,-0.005450924165041988,-0.002545916841010812,-0.003976433112812969,-0.004701445252542945,-0.006413656860955831,-0.006178216944989335,-0.008901013513742954,-0.0053429513392450455,-0.004446720892179937,-0.008505929049429498,-0.003291131013367238
+52.41278,4.925976,0.00014816648666223626,0.0027231214943687766,-0.0008700127785299409,-0.0016791231833100002,-0.0012611345500992386,-0.00032253503834520845,-0.0026249967151487598,-0.00040555836036931824,-0.001031731816661096,-0.0032283402120744696,-0.002862961479239531,-0.0016659911201517032,-0.0036107380414714648,-0.006236174886489559,-0.002776400395509035,-0.006817796756298723,-0.003892238829243312,-0.0028634149892639337,-0.0036089366541188048,-0.004679783889583897,-0.001209340178189327,-0.0042490414217577575,-0.005744897760408239,-0.0032353142623756295,-0.0037581059500895013,-0.0024864790722445786,-0.0028954506867263268,-0.006395663302791547,-0.008047930502899462,-0.0016156502881716297,-0.006415058815371946,-0.004718381826027936,-0.0013686600605414215,-0.0037702124308341294,-0.00862801049997516,-0.007605438827340259,-0.004696502360291301,-0.005419805029658654,-0.006488369835680515,-0.005476208780791188,-0.002911755743124881,-0.003916672682168691,-0.007135675581080716,-0.007442692296093563,-0.0038878306670863732,-0.006900288274155355,-0.003995716910480614,-0.008867034171656183,-0.00866376576091798,-0.004150924165041987,-0.0037459168410108115,-0.00547643311281297,-0.005301445252542946,-0.004313656860955831,-0.004878216944989335,-0.0062010135137429544,-0.004842951339245045,-0.004346720892179937,-0.004405929049429498,-0.006291131013367238
+52.412716,4.926418,0.0020481664866622363,0.008623121494368776,0.000929987221470059,-0.0003791231833100001,0.0006388654499007614,0.0016774649616547914,-0.00232499671514876,-0.0032055583603693184,0.002268268183338904,-0.0034283402120744693,0.00023703852076046921,-0.002565991120151703,-0.003710738041471465,-0.00433617488648956,-0.003576400395509035,-0.007117796756298723,-0.0035922388292433122,-0.002963414989263933,-0.0031089366541188043,-0.001279783889583897,-0.000409340178189327,-0.0024490414217577575,-0.0006448977604082396,-0.0025353142623756294,-0.004758105950089501,-0.0014864790722445786,-0.0028954506867263268,-0.001395663302791548,-0.002847930502899461,-0.0001156502881716297,-0.004115058815371946,-0.002318381826027936,-0.0021686600605414215,-0.0029702124308341295,-0.005928010499975161,-0.005005438827340258,-0.004396502360291301,-0.0031198050296586547,-0.005088369835680516,-0.005376208780791189,-0.002611755743124881,-0.0061166726821686905,-0.0060356755810807156,-0.004642692296093562,-0.0020878306670863737,-0.005900288274155355,-0.002895716910480614,-0.004667034171656184,-0.00726376576091798,-0.003250924165041987,-0.004245916841010812,-0.0038764331128129698,-0.0029014452525429456,-0.003413656860955831,-0.004778216944989335,-0.004201013513742954,-0.0037429513392450453,-0.002846720892179937,-0.004105929049429498,-0.0037911310133672384
+52.412636,4.926663,-0.0016518335133377637,0.0048231214943687765,-0.002570012778529941,-0.00287912318331,-0.004461134550099239,-0.0030225350383452083,-0.00332499671514876,-0.003105558360369318,-0.0018317318166610965,-0.0058283402120744695,-0.005262961479239531,-0.005065991120151703,-0.005710738041471465,-0.007136174886489559,-0.003776400395509035,-0.008217796756298723,-0.005792238829243313,-0.007163414989263934,-0.004908936654118805,-0.004779783889583897,-0.0028093401781893266,-0.0072490414217577575,-0.003144897760408239,-0.0038353142623756293,-0.005558105950089501,-0.003286479072244579,-0.007195450686726326,-0.002995663302791548,-0.0032479305028994612,-0.005215650288171629,-0.006515058815371946,-0.007418381826027937,-0.003968660060541421,-0.004870212430834129,-0.008528010499975161,-0.006905438827340259,-0.0074965023602913015,-0.005419805029658654,-0.009688369835680515,-0.0074762087807911885,-0.007511755743124882,-0.007516672682168691,-0.010335675581080716,-0.004342692296093562,-0.005487830667086374,-0.009400288274155354,-0.007395716910480615,-0.007467034171656184,-0.01066376576091798,-0.0071509241650419865,-0.0067459168410108124,-0.0052764331128129695,-0.0078014452525429455,-0.008613656860955832,-0.007378216944989336,-0.008101013513742953,-0.007342951339245046,-0.006546720892179937,-0.008105929049429498,-0.006091131013367238
+52.412536,4.926473,-0.0015518335133377639,0.00042312149436877643,-0.00017001277852994086,-0.0009791231833100001,-0.0036611345500992386,7.746496165479157e-05,-0.00242499671514876,-0.002005558360369318,-0.0012317318166610962,-0.0018283402120744694,-0.0020629614792395307,-0.0013659911201517028,-0.0007107380414714652,-0.0026361748864895595,0.00042359960449096475,-0.004617796756298724,-0.0026922388292433125,0.00033658501073606647,-0.0008089366541188045,0.0003202161104161028,0.001890659821810673,-0.004049041421757758,-0.00464489776040824,-0.0009353142623756294,-0.001258105950089501,-0.0006864790722445786,-0.0014954506867263266,-0.004295663302791548,-0.005747930502899461,-0.00021565028817162974,-0.0030150588153719463,-0.004018381826027937,-6.866006054142139e-05,-0.0028702124308341292,-0.00642801049997516,-0.007205438827340259,-0.001496502360291301,-0.004219805029658654,-0.0033883698356805157,-0.004276208780791189,-0.00021175574312488107,-0.0029166726821686904,-0.005335675581080715,-0.005642692296093562,0.0005121693329136266,-0.0036002882741553548,-0.0056957169104806145,-0.004067034171656184,-0.00636376576091798,-0.004850924165041988,0.0003540831589891885,-0.005076433112812969,-0.0058014452525429454,-0.0065136568609558305,-0.005378216944989336,-0.007501013513742954,-0.005142951339245046,-0.005746720892179937,-0.006305929049429498,-0.006191131013367239
+52.412357,4.927283,0.0016481664866622363,0.005023121494368776,-0.000970012778529941,-0.00207912318331,-0.0009611345500992387,-0.0028225350383452087,-0.00252499671514876,-0.003705558360369318,-0.0015317318166610965,-0.0017283402120744696,-0.002662961479239531,-0.004165991120151703,-0.004910738041471466,-0.0039361748864895595,-0.0030764003955090348,-0.006417796756298723,-0.003192238829243312,-0.005063414989263933,-0.0029089366541188042,-0.003679783889583897,-0.0003093401781893272,-0.0052490414217577575,-0.0018448977604082393,-0.0020353142623756293,-0.003358105950089501,-0.003586479072244579,-0.003095450686726327,-0.003495663302791548,-0.0019479305028994613,-0.0019156502881716296,-0.003915058815371946,-0.004518381826027936,-0.0025686600605414212,-0.004470212430834129,-0.0034280104999751602,-0.0065054388273402585,-0.005896502360291301,-0.004919805029658654,-0.006488369835680515,-0.006276208780791189,-0.004911755743124881,-0.004916672682168691,-0.004635675581080715,-0.003942692296093562,-0.002887830667086373,-0.0078002882741553545,-0.005595716910480614,-0.005567034171656183,-0.00716376576091798,-0.005750924165041988,-0.003945916841010812,-0.003576433112812969,-0.004801445252542945,-0.005013656860955831,-0.006278216944989336,-0.005501013513742954,-0.004542951339245045,-0.004746720892179937,-0.006105929049429498,-0.0038911310133672387
+52.412256,4.927461,0.0019481664866622362,0.0028231214943687764,-0.000970012778529941,-0.0005791231833100002,-0.003761134550099239,-0.004422535038345208,-0.00452499671514876,-0.003405558360369318,-0.0024317318166610963,-0.00652834021207447,-0.00406296147923953,-0.003865991120151703,-0.004710738041471465,-0.00673617488648956,-0.003876400395509035,-0.007717796756298724,-0.0037922388292433128,-0.004263414989263934,-0.0043089366541188045,-0.0035797838895838974,-0.0008093401781893272,-0.006449041421757758,-0.003144897760408239,-0.005135314262375629,-0.0038581059500895007,-0.0028864790722445788,-0.003795450686726327,0.0020043366972084522,-0.004547930502899461,-0.0030156502881716297,-0.006215058815371946,-0.0065183818260279355,-0.0027686600605414213,-0.0052702124308341295,-0.00802801049997516,-0.006705438827340259,-0.004696502360291301,-0.006919805029658654,-0.007888369835680515,-0.006076208780791188,-0.006711755743124882,-0.00461667268216869,-0.006935675581080715,-0.008542692296093562,-0.003787830667086374,-0.007300288274155355,-0.008795716910480615,-0.006667034171656184,-0.00896376576091798,-0.004550924165041987,-0.003945916841010812,-0.008076433112812968,-0.004401445252542945,-0.006613656860955831,-0.006378216944989336,-0.010201013513742955,-0.005442951339245046,-0.005646720892179937,-0.005705929049429498,-0.0057911310133672384
+52.412283,4.927011,0.001248166486662236,0.005023121494368776,0.0004299872214700591,-7.912318331000016e-05,-6.113455009923864e-05,-0.0006225350383452085,-0.00312499671514876,-0.0016055583603693184,0.00016826818333890402,-0.0024283402120744693,-0.0014629614792395307,-0.0018659911201517028,-0.002410738041471465,-0.00433617488648956,-0.002276400395509035,-0.006317796756298723,-0.0027922388292433123,-0.0023634149892639332,-0.0022089366541188046,-0.002379783889583897,9.065982181067278e-05,-0.0039490414217577575,-0.0014448977604082395,-0.0022353142623756294,-0.002458105950089501,-0.0017864790722445785,-0.0015954506867263268,-0.004395663302791547,-0.004447930502899461,-0.0013156502881716298,-0.004515058815371946,-0.0035183818260279363,-0.0018686600605414211,-0.0029702124308341295,-0.00532801049997516,-0.006305438827340259,-0.0035965023602913013,-0.0047198050296586545,-0.005188369835680515,-0.004376208780791188,-0.002711755743124881,-0.0034166726821686904,-0.006235675581080714,-0.0053426922960935624,-0.0010878306670863735,-0.004600288274155355,-0.005195716910480614,-0.004967034171656184,-0.00676376576091798,-0.0012509241650419875,-0.002545916841010812,-0.0023764331128129693,-0.0034014452525429452,-0.004313656860955831,-0.004178216944989335,-0.004801013513742955,-0.004542951339245045,-0.003646720892179937,-0.004605929049429498,-0.0033911310133672382
+52.412262,4.926964,0.0006481664866622362,0.005023121494368776,2.998722147005907e-05,0.00042087681668999985,-0.0009611345500992387,-0.0008225350383452084,-0.00192499671514876,-0.0005055583603693183,0.0007682681833389039,-0.0005283402120744696,-0.0015629614792395307,-0.001765991120151703,-0.002010738041471465,-0.0034361748864895594,-0.002376400395509035,-0.006017796756298723,-0.0036922388292433125,-0.0028634149892639337,-0.0021089366541188043,-0.002379783889583897,-0.0005093401781893273,-0.004349041421757758,-4.489776040823932e-05,-0.0020353142623756293,-0.003958105950089501,-0.002586479072244579,-0.0022954506867263265,-0.003695663302791548,-0.005847930502899461,-0.0026156502881716295,-0.005315058815371946,-0.004318381826027937,-0.0015686600605414212,-0.0029702124308341295,-0.00642801049997516,-0.006905438827340259,-0.0041965023602913015,-0.005119805029658654,-0.005588369835680515,-0.004576208780791189,-0.003111755743124881,-0.00021667268216869057,-0.006635675581080715,-0.005542692296093562,-0.0023878306670863736,-0.006200288274155355,-0.005595716910480614,-0.005767034171656184,-0.00736376576091798,-0.002850924165041988,-0.0027459168410108115,-0.00407643311281297,-0.004301445252542946,-0.005213656860955831,-0.0036782169449893353,-0.005701013513742955,-0.004742951339245046,-0.003646720892179937,-0.0062059290494294985,-0.004291131013367238
+52.412184,4.92756,0.0024481664866622364,0.005023121494368776,-0.000670012778529941,0.0031208768166899998,-6.113455009923864e-05,-0.0011225350383452085,-0.00122499671514876,0.0007944416396306818,0.0018682681833389037,-0.0021283402120744694,0.0003370385207604692,-0.002465991120151703,-0.0018107380414714653,-0.0022361748864895593,-0.0041764003955090355,-0.0042177967562987235,-0.0016922388292433125,-0.0007634149892639335,-0.0009089366541188045,-0.0009797838895838971,0.002290659821810673,-0.0021490414217577576,-0.0009448977604082395,0.0006646857376243705,0.0024418940499104994,0.0010135209277554215,-0.0013954506867263267,-0.003595663302791548,0.0007520694971005388,-1.5650288171629653e-05,-0.0037150588153719464,-0.0025183818260279362,-6.866006054142139e-05,-0.0009702124308341295,-0.0001280104999751604,-0.0029054388273402586,-0.001896502360291301,-0.0015198050296586544,-0.0036883698356805156,-0.0025762087807911886,-0.0003117557431248811,-0.0011166726821686904,0.00036432441891928475,-0.0022426922960935626,0.0014121693329136266,-0.004300288274155355,-0.0022957169104806142,-0.000667034171656184,-0.00526376576091798,-0.0015509241650419874,-0.0001459168410108114,-0.0023764331128129693,-0.0011014452525429457,-0.002813656860955831,-0.002778216944989335,-0.002701013513742955,-0.0014429513392450453,-0.0012467208921799371,-0.0026059290494294986,-0.002391131013367238
+52.41217,4.927597,0.0016481664866622363,0.003823121494368777,-0.001570012778529941,0.00042087681668999985,-0.0028611345500992383,-0.0028225350383452087,-0.00112499671514876,-0.0017055583603693182,0.0011682681833389038,-0.0021283402120744694,-0.002162961479239531,-0.002365991120151703,-0.003210738041471465,-0.004836174886489559,-0.0011764003955090352,-0.005417796756298723,-0.005092238829243313,-0.0031634149892639336,-0.0021089366541188043,-0.003379783889583897,0.000490659821810673,-0.0028490414217577573,-0.0005448977604082393,-0.0030353142623756294,-0.003358105950089501,-0.0007864790722445785,-0.004195450686726326,-0.002695663302791548,-0.0014479305028994613,-0.0030156502881716297,-0.005115058815371946,-0.0035183818260279363,-0.00046866006054142146,-0.0018702124308341294,-0.004528010499975161,-0.007005438827340259,-0.006096502360291301,-0.0036198050296586542,-0.005888369835680515,-0.004876208780791189,-0.002911755743124881,-0.0051166726821686905,-0.006235675581080714,-0.005642692296093562,-0.0022878306670863734,-0.007200288274155355,-0.002895716910480614,-0.004567034171656184,-0.00806376576091798,-0.002850924165041988,-0.003245916841010812,-0.0022764331128129695,-0.003301445252542946,-0.002113656860955831,-0.003878216944989335,-0.003801013513742955,-0.003842951339245045,-0.004346720892179937,-0.0034059290494294985,-0.002691131013367238
+52.412233,4.926945,0.0018481664866622362,0.006723121494368776,0.001729987221470059,-0.00257912318331,0.00033886544990076133,-0.0035225350383452083,-0.00132499671514876,-0.0017055583603693182,0.0018682681833389037,-0.0023283402120744695,0.00023703852076046921,-0.0018659911201517028,-0.001410738041471465,-0.0036361748864895595,-0.0015764003955090352,-0.0042177967562987235,-0.004492238829243312,-0.0010634149892639335,-0.0011089366541188047,-0.0010797838895838974,0.0005906598218106728,-0.0024490414217577575,-0.0022448977604082395,-0.0009353142623756294,-0.001558105950089501,-0.0003864790722445787,-0.0016954506867263267,-0.003495663302791548,-0.00824793050289946,-0.0016156502881716297,-0.0033150588153719462,-0.002418381826027936,-6.866006054142139e-05,-0.0034702124308341295,-0.00832801049997516,-0.004305438827340259,-0.001896502360291301,-0.0031198050296586547,-0.004388369835680516,-0.006976208780791188,-0.002611755743124881,-0.005816672682168691,-0.0056356755810807145,-0.009842692296093563,-0.00038783066708637337,-0.004900288274155355,4.283089519385657e-06,-0.004367034171656184,-0.00696376576091798,0.0005490758349580126,-0.0020459168410108114,-0.00437643311281297,-0.004001445252542945,-0.005913656860955831,-0.003478216944989335,-0.0069010135137429545,-0.0032429513392450452,-0.0025467208921799373,-0.004805929049429498,-0.001891131013367238
+52.41212,4.927666,-0.002651833513337764,0.0015231214943687765,-0.004770012778529941,-0.00397912318331,-0.002461134550099239,-0.0035225350383452083,-0.00502499671514876,-0.002005558360369318,0.0009682681833389037,-0.006028340212074469,-0.005262961479239531,-0.0034659911201517027,-0.005410738041471465,-0.0049361748864895595,-0.003776400395509035,-0.007417796756298724,-0.0049922388292433124,-0.006963414989263934,-0.0038089366541188044,-0.0045797838895838975,-0.0015093401781893273,-0.007349041421757758,-0.0019448977604082395,-0.0032353142623756295,-0.003958105950089501,-0.004086479072244579,-0.0029954506867263266,-0.003395663302791548,-0.0036479305028994614,-0.00401565028817163,-0.003615058815371946,-0.005818381826027936,-0.006268660060541421,-0.00737021243083413,-0.005728010499975161,-0.00790543882734026,-0.004596502360291301,-0.006419805029658654,-0.006988369835680516,-0.006576208780791189,-0.0056117557431248815,-0.004516672682168691,-0.006135675581080715,-0.0017426922960935625,-0.002887830667086373,-0.011100288274155354,-0.0037957169104806143,-0.006767034171656184,-0.00566376576091798,-0.005750924165041988,-0.0021459168410108117,-0.004276433112812969,-0.0034014452525429452,-0.00821365686095583,-0.006678216944989336,-0.008101013513742953,-0.005442951339245046,-4.67208921799372e-05,-0.0026059290494294986,-0.004091131013367238
+52.412142,4.927289,-0.00015183351333776388,0.0032231214943687766,-0.002070012778529941,0.00102087681669,-0.0012611345500992386,-0.0002225350383452084,-0.00172499671514876,-0.003105558360369318,0.0006682681833389038,-0.0030283402120744696,-0.0017629614792395308,-0.002965991120151703,-0.002710738041471465,-0.0038361748864895596,-0.003776400395509035,-0.0055177967562987235,-0.0023922388292433126,-0.0020634149892639333,-0.0019089366541188042,-0.002279783889583897,9.065982181067278e-05,-0.0032490414217577574,-0.0026448977604082396,-0.0013353142623756292,-0.004058105950089501,-0.0026864790722445782,-0.0019954506867263266,-0.004095663302791547,0.00025206949710053885,-0.0017156502881716296,-0.0025150588153719463,-0.004718381826027936,-0.0046686600605414215,-0.004770212430834129,-0.00522801049997516,-0.005805438827340258,-0.0037965023602913013,-0.0031198050296586547,-0.005788369835680516,-0.004276208780791189,-0.0038117557431248806,-0.0029166726821686904,-0.003535675581080715,-0.0060426922960935625,-0.0025878306670863733,-0.005300288274155355,-0.005195716910480614,-0.006167034171656184,-0.00646376576091798,-0.0031509241650419877,-0.0019459168410108113,-0.0019764331128129696,-0.004701445252542945,-0.005713656860955831,-0.003878216944989335,-0.005001013513742955,-0.004042951339245046,-0.0035467208921799373,-0.0038059290494294987,-0.0020911310133672383
+52.412017,4.927882,-0.00015183351333776388,0.0032231214943687766,-0.002570012778529941,-0.0021791231833100002,-0.0010611345500992388,0.0012774649616547915,-0.0052249967151487605,-0.0029055583603693185,0.0011682681833389038,-0.0027283402120744696,-0.0009629614792395309,0.0021340088798482973,0.0005892619585285349,-0.0006361748864895595,-0.002076400395509035,-0.0052177967562987235,-0.0013922388292433123,-0.0016634149892639336,0.0014910633458811956,0.002320216110416103,0.0011906598218106728,-0.003449041421757757,-0.0007448977604082394,-0.0005353142623756294,-0.002158105950089501,-0.0012864790722445785,-0.0015954506867263268,0.0003043366972084521,-0.00034793050289946115,0.00028434971182837027,-0.005215058815371946,-0.003818381826027936,0.0013313399394585786,-0.0026702124308341296,-0.0028280104999751604,-0.0062054388273402586,-0.002696502360291301,-0.005419805029658654,-0.0038883698356805157,-0.0012762087807911887,-0.003911755743124881,-0.0014166726821686906,-0.002535675581080715,-0.0018426922960935626,0.0007121693329136266,-0.004500288274155355,-0.005095716910480615,0.0005329658283438161,-0.00416376576091798,-0.0013509241650419873,-0.0013459168410108115,-0.0011764331128129692,0.0006985547474570543,-0.004613656860955831,-0.0026782169449893352,-0.005801013513742955,-0.002442951339245045,-0.0020467208921799373,-0.0015059290494294985,-0.00019113101336723807
+52.41203,4.927801,-0.0006518335133377637,0.0011231214943687763,-0.001170012778529941,-0.0005791231833100002,-0.003061134550099239,-0.0002225350383452084,-0.0009249967151487601,0.0010944416396306818,0.0010682681833389038,-0.0003283402120744695,-0.0014629614792395307,-0.0011659911201517032,-0.002010738041471465,-0.002836174886489559,-0.003676400395509035,-0.004317796756298723,-0.0007922388292433125,-0.004263414989263934,0.00029106334588119547,-0.0010797838895838974,0.0031906598218106727,-0.0032490414217577574,-0.0004448977604082395,-3.531426237562952e-05,-0.003658105950089501,-0.0016864790722445787,-0.0016954506867263267,-0.003295663302791548,-0.005147930502899461,-0.0025156502881716293,-0.007215058815371946,-0.002818381826027936,-0.0029686600605414214,-0.0032702124308341294,-0.0018280104999751604,-0.009205438827340259,-0.001896502360291301,-0.005619805029658654,-0.004588369835680515,-0.004576208780791189,-0.003911755743124881,-0.0013166726821686905,-0.006235675581080714,-0.004342692296093562,0.0006121693329136267,-0.007200288274155355,-0.005895716910480614,-0.006367034171656184,-0.00716376576091798,-0.0003509241650419875,-0.0013459168410108115,-0.00437643311281297,-0.004601445252542946,-0.004113656860955831,-0.008078216944989334,-0.005101013513742955,-0.004242951339245045,-0.0038467208921799372,-0.006105929049429498,-0.0038911310133672387
+52.412077,4.92733,-0.008851833513337765,-0.007676878505631224,-0.001770012778529941,-0.00157912318331,-0.0023611345500992387,0.0010774649616547916,-0.00242499671514876,0.0004944416396306817,-0.004631731816661096,-0.0029283402120744697,0.0006370385207604692,-0.003965991120151703,-0.0026107380414714648,-0.0036361748864895595,-0.003676400395509035,-0.006617796756298724,-0.0027922388292433123,-0.0028634149892639337,-0.0020089366541188045,-0.004379783889583897,-0.0003093401781893272,-0.0030490414217577574,0.0010551022395917605,-0.0010353142623756293,-0.002658105950089501,-0.0003864790722445787,-0.0004954506867263267,-0.001395663302791548,-0.004447930502899461,-0.00241565028817163,-0.0032150588153719464,-0.002618381826027936,-0.0005686600605414215,-0.0037702124308341294,0.0016719895000248397,-0.007205438827340259,-0.004696502360291301,-0.004119805029658655,-0.005488369835680515,-0.004276208780791189,-0.0012117557431248812,-0.00461667268216869,-0.006135675581080715,-0.004642692296093562,0.0003121693329136266,-0.006100288274155355,-0.005195716910480614,-0.006367034171656184,-0.005963765760917981,-0.0025509241650419874,-0.0019459168410108113,-0.0036764331128129693,-0.0036014452525429458,-0.00971365686095583,-0.004978216944989336,-0.005701013513742955,-0.0014429513392450453,-0.004046720892179937,-0.005605929049429498,-0.0021911310133672377
+52.412055,4.927449,-0.0019518335133377636,0.0024231214943687767,-0.002270012778529941,-0.00157912318331,-0.003761134550099239,-0.0017225350383452084,-0.00582499671514876,-0.003105558360369318,-0.004531731816661097,-0.00492834021207447,-0.0009629614792395309,-0.002665991120151703,-0.0011107380414714652,-0.005836174886489559,-0.004676400395509035,-0.008317796756298724,-0.0019922388292433124,-0.0030634149892639333,-0.0040089366541188045,-0.0014797838895838971,-0.00020934017818932714,-0.004549041421757757,-0.003444897760408239,-0.0007353142623756295,-0.003058105950089501,0.0014135209277554215,-0.0026954506867263267,-0.007995663302791547,-0.007847930502899461,-0.0026156502881716295,-0.007515058815371946,-0.0069183818260279365,-0.0035686600605414217,-0.005570212430834129,-0.007728010499975161,-0.010005438827340257,-0.002496502360291301,-0.006319805029658654,-0.0035883698356805153,-0.006676208780791188,-0.005111755743124881,-0.003916672682168691,-0.007835675581080715,-0.008442692296093563,-8.783066708637345e-05,-0.004900288274155355,-0.005295716910480614,-0.007467034171656184,-0.00376376576091798,-0.002950924165041987,-0.005845916841010812,-0.0055764331128129695,-0.006601445252542946,-0.0065136568609558305,-0.006278216944989336,-0.008401013513742953,-0.008042951339245045,-0.006746720892179937,-0.0052059290494294985,-0.007191131013367238
+52.411981,4.927517,4.816648666223621e-05,0.0021231214943687763,-0.003370012778529941,-0.0018791231833100003,-0.004661134550099239,-0.0031225350383452086,-0.00632499671514876,-0.0019055583603693183,-0.00043173181666109626,-0.00522834021207447,-0.0007629614792395308,-0.002965991120151703,-0.0031107380414714648,-0.004836174886489559,-0.003976400395509035,-0.005017796756298723,-0.004792238829243313,-0.0028634149892639337,-0.0026089366541188043,-0.002779783889583897,-0.0015093401781893273,-0.004949041421757758,-0.00414489776040824,-0.0023353142623756293,-0.003458105950089501,-0.0011864790722445786,-0.004195450686726326,-0.005195663302791548,-0.006147930502899461,-0.0016156502881716297,-0.005915058815371946,-0.005618381826027936,-0.002868660060541421,-0.0042702124308341294,-0.00412801049997516,-0.008705438827340258,-0.003996502360291301,-0.007119805029658654,-0.006088369835680516,-0.006176208780791189,-0.003211755743124881,-0.004516672682168691,-0.007435675581080716,-0.0050426922960935625,-0.0006878306670863735,-0.005700288274155355,-0.0036957169104806144,-0.0062670341716561835,-0.0068637657609179805,-0.0018509241650419873,-0.0024459168410108116,-0.0036764331128129693,-0.004201445252542946,-0.005613656860955831,-0.005378216944989336,-0.005701013513742955,-0.005142951339245046,-0.004646720892179937,-0.006005929049429498,-0.000891131013367238
+52.411899,4.92806,-0.0004518335133377638,0.004223121494368776,-0.001370012778529941,-0.0003791231833100001,-0.002161134550099239,-0.0012225350383452086,-0.00202499671514876,-0.0014055583603693183,-3.173181666109607e-05,-0.0022283402120744696,3.7038520760469205e-05,-0.001965991120151703,-0.002010738041471465,-0.0029361748864895594,-0.0012764003955090353,-0.004917796756298724,-0.0026922388292433125,-0.0015634149892639335,0.0009910633458811956,-0.0009797838895838971,0.001990659821810673,-0.0026490414217577576,-0.002144897760408239,0.0002646857376243705,-0.002758105950089501,-0.0021864790722445787,-0.0014954506867263266,-0.002195663302791548,-0.0007479305028994612,0.00028434971182837027,-0.004015058815371946,-0.002418381826027936,-0.0013686600605414215,-0.0031702124308341296,-0.0040280104999751605,-0.005105438827340259,-0.003996502360291301,-0.0019198050296586543,-0.004888369835680515,-0.0035762087807911886,-0.001311755743124881,-0.0029166726821686904,-0.005435675581080715,-0.005442692296093563,-0.0002878306670863733,-0.0038002882741553553,-0.002595716910480614,-0.005067034171656184,-0.00606376576091798,-0.0012509241650419875,-0.0005459168410108114,-0.0026764331128129692,-0.004001445252542945,-0.004113656860955831,-0.003478216944989335,-0.0018010135137429544,-0.003342951339245045,-0.0017467208921799371,-0.004305929049429498,-0.0016911310133672379
+52.41186,4.928208,0.0006481664866622362,0.0022231214943687766,-0.0024700127785299408,-0.0009791231833100001,-0.002061134550099239,-0.0017225350383452084,-0.0038249967151487603,-0.002405558360369318,-0.00043173181666109626,-0.005728340212074469,0.00043703852076046914,-0.0034659911201517027,-0.004310738041471466,-0.0030361748864895597,-0.002276400395509035,-0.006417796756298723,-0.006292238829243312,-0.004563414989263934,0.00029106334588119547,-0.002279783889583897,-0.0010093401781893273,-0.004949041421757758,-0.0014448977604082395,-0.0015353142623756293,-0.004258105950089501,-8.647907224457857e-05,-0.002595450686726327,-0.004295663302791548,-0.001547930502899461,-0.0018156502881716298,-0.004115058815371946,-0.005018381826027936,-0.002068660060541421,-0.0031702124308341296,-0.0032280104999751606,-0.005005438827340258,-0.006096502360291301,-0.0047198050296586545,-0.005688369835680516,-0.0041762087807911885,-0.002611755743124881,-0.0032166726821686903,-0.003935675581080715,-0.004542692296093563,-0.0026878306670863735,-0.007500288274155355,-0.005395716910480615,-0.002467034171656184,-0.00706376576091798,-0.0037509241650419876,-0.0034459168410108116,-0.0030764331128129694,-0.004001445252542945,-0.004313656860955831,-0.005178216944989335,-0.005701013513742955,-0.003042951339245045,-0.004146720892179937,-0.004405929049429498,-0.0020911310133672383
+52.411854,4.928162,-0.00035183351333776375,0.0037231214943687766,-0.002170012778529941,-0.0018791231833100003,-0.004161134550099239,-0.0018225350383452086,-0.0038249967151487603,-0.004105558360369318,-0.001031731816661096,-0.0037283402120744692,-0.0013629614792395306,-0.003865991120151703,-0.004910738041471466,-0.005436174886489559,-0.003776400395509035,-0.007417796756298724,-0.005492238829243313,-0.0035634149892639338,-0.0017089366541188046,-0.005679783889583897,-0.0005093401781893273,-0.005049041421757758,-0.0022448977604082395,-0.0029353142623756295,-0.004358105950089501,-0.0013864790722445787,-0.004295450686726326,-0.0041956633027915476,-0.002547930502899461,-0.003115650288171629,-0.005215058815371946,-0.005018381826027936,-0.0022686600605414213,-0.0026702124308341296,-0.005428010499975161,-0.006905438827340259,-0.005396502360291301,-0.004919805029658654,-0.007788369835680516,-0.004876208780791189,-0.004511755743124881,-0.005216672682168691,-0.0063356755810807155,-0.005142692296093563,-0.002187830667086373,-0.008100288274155355,-0.005395716910480615,-0.004167034171656184,-0.00676376576091798,-0.0024509241650419876,-0.003545916841010812,-0.0026764331128129692,-0.005101445252542945,-0.007313656860955831,-0.006378216944989336,-0.005001013513742955,-0.004442951339245046,-0.004246720892179937,-0.006105929049429498,-0.0027911310133672384
+52.411899,4.927719,-5.1833513337763834e-05,0.0032231214943687766,2.998722147005907e-05,-0.00077912318331,-0.0018611345500992385,-0.0013225350383452084,-0.00192499671514876,-0.0012055583603693182,6.826818333890376e-05,-0.00392834021207447,-0.0004629614792395308,-0.001765991120151703,-0.002410738041471465,-0.00433617488648956,-0.003176400395509035,-0.006417796756298723,-0.0033922388292433126,-0.0020634149892639333,-0.0029089366541188042,-0.003279783889583897,-0.0001093401781893271,-0.004149041421757757,-0.002444897760408239,-0.0020353142623756293,-0.001958105950089501,-0.0019864790722445786,-0.0015954506867263268,-0.003695663302791548,-0.005647930502899461,0.00018434971182837022,-0.004415058815371946,-0.003618381826027936,-0.0019686600605414214,-0.004170212430834129,-0.00462801049997516,-0.008105438827340258,-0.005696502360291301,-0.0030198050296586544,-0.0049883698356805155,-0.004076208780791188,-0.004211755743124881,-0.005216672682168691,-0.005835675581080715,-0.003942692296093562,-0.0013878306670863734,-0.0055002882741553545,-0.005095716910480615,-0.004667034171656184,-0.00736376576091798,-0.0020509241650419874,-0.0021459168410108117,-0.002976433112812969,-0.0022014452525429455,-0.0036136568609558307,-0.0045782169449893355,-0.007101013513742955,-0.005042951339245046,-0.004146720892179937,-0.005305929049429498,-0.002391131013367238
+52.411851,4.927727,0.0010481664866622362,0.0048231214943687765,0.001929987221470059,0.0005208768166899998,-0.0012611345500992386,-0.0017225350383452084,-0.00412499671514876,-0.0003055583603693182,0.0010682681833389038,-0.00422834021207447,-0.0025629614792395308,-0.004565991120151703,-0.003410738041471465,-0.006236174886489559,-0.00017640039550903517,-0.006717796756298723,-0.0059922388292433125,-0.002963414989263933,-0.0027089366541188046,-0.0035797838895838974,-0.000409340178189327,-0.006049041421757758,-0.00304489776040824,-0.0033353142623756297,0.0016418940499104992,-0.0020864790722445784,-0.0050954506867263265,-0.003795663302791548,-0.0029479305028994613,-0.00211565028817163,-0.005415058815371946,-0.005318381826027936,-0.0017686600605414213,-0.0030702124308341293,-0.0013280104999751604,-0.008805438827340258,-0.002196502360291301,-0.005419805029658654,-0.010088369835680516,-0.006276208780791189,-0.002711755743124881,-0.006916672682168691,-0.006835675581080714,-0.0053426922960935624,-0.0023878306670863736,-0.009000288274155355,-0.004095716910480615,-0.007767034171656184,-0.00696376576091798,-0.0023509241650419874,-0.0034459168410108116,-0.005076433112812969,-0.006301445252542946,-0.0065136568609558305,-0.005378216944989336,-0.006101013513742955,-0.004542951339245045,-0.003446720892179937,-0.007005929049429498,-0.002991131013367238
+52.411781,4.927916,0.0006481664866622362,0.004123121494368776,-0.00037001277852994095,0.00012087681668999993,-0.0013611345500992387,-0.0008225350383452084,-0.00112499671514876,-0.0010055583603693183,0.0008682681833389039,-0.0035283402120744696,-0.0011629614792395308,-0.000365991120151703,-0.003310738041471465,-0.00433617488648956,-0.0025764003955090348,-0.004917796756298724,-0.0027922388292433123,-0.0009634149892639335,0.0004910633458811955,-0.0013797838895838973,-0.001209340178189327,-0.0024490414217577575,-0.00034489776040823967,-0.0013353142623756292,-0.004158105950089501,-0.0019864790722445786,-0.0028954506867263268,-0.0004956633027915478,-0.003847930502899461,-0.0009156502881716296,-0.004915058815371946,-0.004718381826027936,-0.0007686600605414214,-0.0006702124308341295,-0.00492801049997516,-0.004905438827340259,-0.006596502360291301,-0.0028198050296586548,-0.005488369835680515,-0.002476208780791189,-0.0037117557431248813,-0.0036166726821686905,-0.005235675581080715,-0.0027426922960935626,0.0003121693329136266,-0.006100288274155355,-0.0046957169104806145,-0.004167034171656184,-0.00836376576091798,-0.0025509241650419874,-0.002545916841010812,-0.0030764331128129694,-0.002001445252542946,-0.004313656860955831,-0.002378216944989335,-0.0036010135137429546,-0.0018429513392450453,-0.003146720892179937,-0.004405929049429498,-0.006091131013367238
+52.411637,4.92869,0.0025481664866622363,0.0036231214943687764,-0.0012700127785299409,-0.0023791231833100003,-0.0018611345500992385,-0.0016225350383452086,-0.00312499671514876,-0.0006055583603693181,0.0016682681833389038,-0.004028340212074469,0.00023703852076046921,-0.000365991120151703,-0.001910738041471465,-0.0031361748864895595,-0.002476400395509035,-0.0055177967562987235,-0.003892238829243312,-0.0013634149892639337,-0.0011089366541188047,-0.0011797838895838972,0.00019065982181067282,-0.004049041421757758,-0.0010448977604082393,-0.0007353142623756295,-0.0028581059500895007,0.0005135209277554215,-0.002095450686726327,-0.002495663302791548,-0.0005479305028994612,-0.0003156502881716298,-0.0029150588153719465,-0.002318381826027936,-6.866006054142139e-05,-0.0031702124308341296,0.0010719895000248396,-0.005105438827340259,-0.003396502360291301,-0.0038198050296586548,-0.0034883698356805155,-0.004976208780791189,-0.002511755743124881,-0.0026166726821686905,-0.0040356755810807155,-0.0037426922960935626,1.2169332913626596e-05,-0.0058002882741553545,-0.006095716910480615,-0.005567034171656183,-0.00676376576091798,-0.003550924165041987,-0.0037459168410108115,0.0009235668871870307,-0.002301445252542946,-0.004713656860955831,-0.002778216944989335,-0.006501013513742954,-0.0043429513392450455,-0.0025467208921799373,-0.0037059290494294984,-0.002291131013367238
+52.41163,4.928236,0.0038481664866622358,0.009223121494368776,0.002429987221470059,0.0019208768166899997,0.0018388654499007613,0.0031774649616547915,0.0008750032848512399,0.0043944416396306816,0.0062682681833389035,0.0006716597879255304,0.00013703852076046917,0.001034008879848297,0.0007892619585285348,0.0006638251135104405,0.0014235996044909649,-0.0004177967562987235,0.0008077611707566876,0.0024365850107360663,0.0020910633458811954,2.0216110416102786e-05,0.002690659821810673,-4.904142175775751e-05,0.0026551022395917604,0.0020646857376243706,0.00014189404991049896,0.00011352092775542152,0.0012045493132736733,0.003904336697208452,0.0028520694971005387,0.0014843497118283702,0.00048494118462805364,-0.001218381826027936,0.0030313399394585787,-0.0014702124308341295,0.0013719895000248396,-0.0019054388273402586,-0.001096502360291301,-0.0009198050296586543,-0.0013883698356805156,-0.0015762087807911886,0.0008882442568751189,0.0019833273178313095,0.0007643244189192849,-0.006442692296093563,0.0030121693329136267,-0.002000288274155355,-0.0004957169104806144,0.00023296582834381597,-0.00366376576091798,0.0004490758349580125,0.0012540831589891886,0.0017235668871870306,0.0004985547474570544,-0.0009136568609558309,-0.0011782169449893352,-0.0019010135137429547,-0.0009429513392450453,0.001653279107820063,-0.0006059290494294985,0.0005088689866327619
+52.411521,4.928487,-0.002651833513337764,0.0025231214943687765,-0.002270012778529941,-0.00157912318331,-0.004961134550099239,0.00037746496165479154,-0.00412499671514876,-0.002305558360369318,-0.0011317318166610964,-0.007028340212074469,-0.0020629614792395307,-0.0018659911201517028,-0.003810738041471465,-0.00603617488648956,-0.0041764003955090355,-0.004917796756298724,-0.0033922388292433126,-0.0030634149892639333,-0.0010089366541188045,-0.0018797838895838969,-0.0013093401781893272,-0.008449041421757758,-0.00374489776040824,-0.002135314262375629,-0.005158105950089501,-0.0026864790722445782,-0.002095450686726327,-0.004995663302791548,-0.0008479305028994612,-0.0032156502881716294,-0.005715058815371946,-0.007418381826027937,-0.004768660060541422,-0.0052702124308341295,-0.0023280104999751604,-0.007205438827340259,-0.006196502360291302,-0.009819805029658655,-0.006088369835680516,-0.008676208780791188,-0.005711755743124882,-0.0041166726821686905,-0.004435675581080715,-0.006942692296093562,-0.0026878306670863735,-0.008100288274155355,-0.007295716910480614,-0.009067034171656184,-0.01126376576091798,-0.006250924165041987,-0.004245916841010812,-0.0024764331128129696,-0.007601445252542945,-0.006813656860955831,-0.006078216944989336,-0.008901013513742954,-0.002042951339245045,-0.006046720892179937,-0.0049059290494294985,-0.0027911310133672384
+52.411273,4.928846,-0.0022518335133377637,0.0005231214943687765,-0.003870012778529941,-0.00397912318331,0.00033886544990076133,-0.00032253503834520845,0.0007750032848512401,-0.003105558360369318,-0.002331731816661096,-0.00752834021207447,-0.0025629614792395308,-0.003565991120151703,-0.004310738041471466,-0.00853617488648956,-0.002776400395509035,-0.0052177967562987235,-0.0033922388292433126,-0.0038634149892639337,-0.0015089366541188045,-0.002979783889583897,-0.003609340178189327,-0.003749041421757757,-0.008644897760408238,-0.0016353142623756292,-0.005958105950089501,-0.002986479072244578,-0.0031954506867263267,-0.009195663302791547,-0.00974793050289946,-0.0036156502881716296,-0.009015058815371946,-0.007618381826027936,-0.0035686600605414217,-0.00707021243083413,-0.013328010499975161,-0.01070543882734026,-0.004896502360291301,-0.011619805029658654,-0.0049883698356805155,-0.00907620878079119,-0.002511755743124881,-0.00571667268216869,-0.006735675581080715,-0.008642692296093563,-0.0009878306670863734,-0.006400288274155355,-0.0046957169104806145,-0.006567034171656183,-0.00646376576091798,-0.0037509241650419876,-0.0021459168410108117,-0.00877643311281297,-0.008501445252542945,-0.009213656860955832,-0.004378216944989336,-0.010201013513742955,-0.006542951339245045,-0.007446720892179937,-0.006805929049429498,-0.004291131013367238
+52.410694,4.93051,0.0016481664866622363,0.0009231214943687763,-0.002170012778529941,0.0014208768166899999,-0.00026113455009923873,0.0014774649616547916,-0.00242499671514876,-0.0016055583603693184,0.004668268183338904,-0.0012283402120744696,-0.0008629614792395309,-0.002265991120151703,-0.003710738041471465,-0.0034361748864895594,-0.002976400395509035,-0.0038177967562987233,-0.0006922388292433124,-0.004563414989263934,-0.004208936654118805,0.0004202161104161028,0.0006906598218106728,-0.0042490414217577575,-0.0038448977604082393,-0.0016353142623756292,-0.003158105950089501,-0.00048647907224457854,-0.0013954506867263267,-0.0017956633027915478,0.0017520694971005389,-0.0026156502881716295,-0.004715058815371946,-0.003118381826027936,-0.0007686600605414214,-0.0008702124308341294,-0.0011280104999751603,-0.005005438827340258,-0.0025965023602913012,-0.005119805029658654,-0.0052883698356805155,-0.0020762087807911886,-0.0008117557431248811,-0.0025166726821686906,-0.005335675581080715,-0.005442692296093563,0.00021216933291362658,-0.0058002882741553545,-0.003595716910480614,-0.0023670341716561837,-0.00506376576091798,-0.002950924165041987,-0.0017459168410108113,-0.00437643311281297,-0.0028014452525429454,-0.003713656860955831,-0.004178216944989335,-0.0033010135137429546,-0.0027429513392450452,-0.0014467208921799372,-0.0024059290494294985,-0.002291131013367238
+52.410574,4.930723,-0.0009518335133377636,0.00022312149436877645,-0.0024700127785299408,-0.0009791231833100001,-0.002761134550099239,-0.0007225350383452086,-0.00222499671514876,-0.0016055583603693184,-0.001031731816661096,-0.00362834021207447,-0.003662961479239531,-0.0033659911201517033,-0.001910738041471465,-0.006236174886489559,-0.0030764003955090348,-0.004117796756298723,-0.004392238829243313,-0.003663414989263933,-0.0034089366541188043,-0.004979783889583897,-0.002009340178189327,-0.005949041421757758,-0.0012448977604082394,-0.0029353142623756295,-0.004558105950089501,-0.0011864790722445786,-0.003795450686726327,-0.002195663302791548,-0.0034479305028994613,-0.0006156502881716297,-0.004515058815371946,-0.004118381826027936,-0.0025686600605414212,-0.0034702124308341295,-0.0023280104999751604,-0.004705438827340258,-0.003196502360291301,-0.0050198050296586545,-0.0033883698356805157,-0.004676208780791188,-0.0034117557431248813,-0.00461667268216869,-0.0040356755810807155,-0.0060426922960935625,-0.0023878306670863736,-0.004800288274155355,-0.005395716910480615,-0.004767034171656184,-0.00746376576091798,-0.005750924165041988,-0.0020459168410108114,-0.00437643311281297,-0.004001445252542945,-0.003313656860955831,-0.004078216944989336,-0.004101013513742955,-0.003342951339245045,-0.003646720892179937,-0.0035059290494294988,-0.0006911310133672381
+52.410552,4.930817,0.002948166486662236,0.0027231214943687766,-0.001070012778529941,0.0026208768166899998,0.002538865449900761,0.0006774649616547915,-0.00082499671514876,0.0009944416396306817,0.0017682681833389039,-0.0006283402120744695,-0.0014629614792395307,-0.0030659911201517034,-0.0026107380414714648,-0.005136174886489559,-0.001876400395509035,-0.0042177967562987235,-0.005092238829243313,-0.0006634149892639335,-0.0032089366541188046,-0.001579783889583897,0.00019065982181067282,-0.005049041421757758,0.0002551022395917606,-0.0010353142623756293,-0.0044581059500895005,-8.647907224457857e-05,-0.0011954506867263267,0.0015043366972084522,0.004352069497100539,-0.0010156502881716299,-0.0022150588153719464,-0.0025183818260279362,-0.0006686600605414213,-0.0006702124308341295,-0.0011280104999751603,-0.0042054388273402585,-0.0022965023602913013,-0.0030198050296586544,-0.0005883698356805155,-0.0001762087807911886,-0.001611755743124881,-0.0018166726821686905,-0.005535675581080715,-0.004142692296093563,1.2169332913626596e-05,-0.007300288274155355,-0.0012957169104806142,-0.002767034171656184,-0.00406376576091798,-0.0013509241650419873,0.0009540831589891886,-0.006176433112812969,-0.0014014452525429458,-0.002013656860955831,-0.002278216944989335,-0.0018010135137429544,-0.0016429513392450454,-0.002746720892179937,-0.0025059290494294987,-0.000491131013367238
+52.410441,4.93055,-0.0002518335133377637,-0.00027687850563122356,-0.002870012778529941,2.0876816689999883e-05,-0.0009611345500992387,0.0017774649616547915,-0.00172499671514876,0.0002944416396306818,-0.00023173181666109616,-0.0025283402120744695,0.0014370385207604693,-0.002065991120151703,-0.002010738041471465,-0.00413617488648956,-0.0008764003955090352,-0.0012177967562987235,-0.003992238829243312,-0.0012634149892639334,-0.0004089366541188045,-0.001579783889583897,0.000990659821810673,-0.004849041421757757,-0.0025448977604082394,0.0020646857376243706,-0.0007581059500895009,0.0003135209277554214,0.00010454931327367339,-0.003895663302791548,-0.003347930502899461,8.434971182837018e-05,-0.0038150588153719463,-0.004118381826027936,-0.00046866006054142146,-0.0011702124308341293,-0.0018280104999751604,-0.0036054388273402587,-0.001096502360291301,-0.0025198050296586544,-0.00018836983568051554,-0.002176208780791189,-0.0017117557431248808,8.332731783130944e-05,-0.0040356755810807155,-0.004842692296093563,0.0017121693329136267,-0.004300288274155355,-0.0022957169104806142,-0.002867034171656184,-0.00166376576091798,-0.0008509241650419873,0.0016540831589891886,-0.002976433112812969,-0.0005014452525429456,-0.004813656860955831,-0.0014782169449893351,-0.003701013513742955,-0.004042951339245046,-0.0009467208921799372,0.0002940709505705015,-0.0017911310133672381
+52.410364,4.930737,0.0013481664866622362,-0.006976878505631224,-0.000570012778529941,-7.912318331000016e-05,3.88654499007613e-05,0.00027746496165479155,-0.0016249967151487602,0.0014944416396306818,0.003468268183338904,-0.004028340212074469,-0.002362961479239531,-0.000865991120151703,-0.0006107380414714651,-0.00473617488648956,0.0001235996044909648,-0.0009177967562987235,-0.0020922388292433126,-0.0005634149892639335,0.0006910633458811954,-0.001579783889583897,-0.008409340178189327,-0.004049041421757758,-0.0009448977604082395,6.468573762437053e-05,-0.0013581059500895009,0.00041352092775542144,0.0004045493132736734,0.001904336697208452,0.0049520694971005395,0.0006843497118283702,-0.0030150588153719463,-0.001918381826027936,-0.003668660060541421,-0.0007702124308341296,-0.0013280104999751604,-0.005605438827340259,-0.000996502360291301,-0.0047198050296586545,-0.0037883698356805154,-0.008876208780791189,-0.002411755743124881,-0.0022166726821686903,-0.004435675581080715,-0.004542692296093563,0.0033121693329136266,-0.0058002882741553545,-0.0056957169104806145,-0.003067034171656184,-0.00836376576091798,0.0006490758349580126,0.0010540831589891885,-0.0024764331128129696,0.0003985547474570543,-0.005313656860955831,-0.0026782169449893352,-0.0021010135137429545,-0.004242951339245045,-0.0039467208921799375,-0.004205929049429498,-0.0011911310133672379
+52.416001,4.919401,-0.0006518335133377637,-0.0010768785056312236,-0.000570012778529941,0.0007208768166899999,-0.0004611345500992387,-2.253503834520848e-05,-0.0026249967151487598,-0.002405558360369318,0.0021682681833389036,-0.0015283402120744695,-0.0014629614792395307,-0.001565991120151703,-0.0042107380414714655,-0.0069361748864895595,-0.0064764003955090355,-0.0007177967562987234,-0.0029922388292433124,-0.0011634149892639336,-0.0027089366541188046,-0.0026797838895838972,9.065982181067278e-05,-0.004749041421757757,-0.0015448977604082394,-0.00033531426237562955,-0.001958105950089501,-0.0009864790722445786,-0.0019954506867263266,-0.002195663302791548,-0.0026479305028994614,-0.0005156502881716299,-0.004315058815371946,-0.006418381826027936,-0.0037686600605414213,-0.004170212430834129,-0.005128010499975161,-0.004805438827340259,-0.003996502360291301,-0.0038198050296586548,-0.004688369835680516,-0.004576208780791189,-0.001811755743124881,-0.0029166726821686904,-0.002035675581080715,-0.006542692296093562,-0.0013878306670863734,-0.003300288274155355,-0.003595716910480614,-0.004967034171656184,-0.006563765760917981,-0.005650924165041987,-0.0030459168410108114,-0.0024764331128129696,-0.0035014452525429455,-0.004113656860955831,-0.003778216944989335,-0.003201013513742955,-0.004442951339245046,-0.004346720892179937,-0.0025059290494294987,-0.0028911310133672386
+52.416059,4.918807,-0.0019518335133377636,0.0016231214943687763,-0.002570012778529941,-0.00197912318331,0.00033886544990076133,-0.0019225350383452085,-0.0029249967151487597,-0.0016055583603693184,0.002068268183338904,-0.0021283402120744694,-0.0017629614792395308,-0.002465991120151703,-0.0017107380414714652,-0.0049361748864895595,-0.003276400395509035,-0.0016177967562987234,-0.004492238829243312,-0.0020634149892639333,-0.0020089366541188045,-0.002479783889583897,-0.0022093401781893268,-0.0022490414217577574,-0.00414489776040824,-0.0014353142623756295,-0.003158105950089501,-0.0006864790722445786,-0.004195450686726326,-0.002495663302791548,-0.0008479305028994612,-0.0005156502881716299,-0.0014150588153719462,-0.0029183818260279364,-0.0022686600605414213,-0.0033702124308341293,-0.0033280104999751604,-0.005605438827340259,-0.001596502360291301,-0.004619805029658654,-0.005488369835680515,-0.006276208780791189,-0.002011755743124881,-0.0009166726821686906,-0.002735675581080715,-0.0032426922960935626,-0.003787830667086374,-0.003400288274155355,-0.0019957169104806143,-0.004367034171656184,-0.00756376576091798,-0.003850924165041988,-0.0012459168410108112,0.0011235668871870305,-0.011201445252542946,-0.005613656860955831,-0.003278216944989335,-0.0020010135137429547,-0.003842951339245045,-0.0018467208921799372,-0.0018059290494294986,-0.00039113101336723816
+52.415998,4.919198,-0.002051833513337764,-0.0026768785056312232,-0.002370012778529941,-7.912318331000016e-05,-0.0006611345500992386,-0.0022225350383452084,-0.00452499671514876,-0.0012055583603693182,0.0012682681833389039,-0.0018283402120744694,-0.0008629614792395309,-0.0031659911201517028,-0.003210738041471465,-0.004536174886489559,-0.004676400395509035,-0.0045177967562987234,0.0019077611707566877,-0.004663414989263934,-0.003908936654118805,-0.003479783889583897,-0.0013093401781893272,-0.004449041421757757,-0.00524489776040824,-0.0030353142623756294,-0.004958105950089501,-0.0016864790722445787,-0.0023954506867263268,-0.004295663302791548,-0.002547930502899461,-0.0001156502881716297,-0.003615058815371946,-0.005418381826027937,-0.0030686600605414212,-0.004770212430834129,-0.00522801049997516,-0.006705438827340259,-0.005596502360291301,-0.004119805029658655,-0.0038883698356805157,-0.005576208780791189,-0.002711755743124881,-0.0032166726821686903,-0.004435675581080715,-0.004642692296093562,-0.0019878306670863734,-0.006400288274155355,-0.0036957169104806144,-0.003867034171656184,-0.00696376576091798,-0.003550924165041987,-0.004145916841010812,-0.0038764331128129698,-0.003301445252542946,-0.005113656860955831,-0.0036782169449893353,-0.0018010135137429544,-0.0018429513392450453,-0.003346720892179937,-0.0028059290494294987,-0.0027911310133672384
+52.41595,4.919392,-5.1833513337763834e-05,-0.0017768785056312235,-0.00037001277852994095,-0.0027791231833100005,-0.00016113455009923868,-0.0022225350383452084,-0.00132499671514876,-0.0032055583603693184,0.0014682681833389037,-0.0027283402120744696,-0.0014629614792395307,-0.003265991120151703,-0.004410738041471465,-0.00573617488648956,-0.004376400395509035,-0.0045177967562987234,-0.007592238829243312,-0.004563414989263934,-0.005908936654118805,-0.003679783889583897,-0.0035093401781893267,-0.0062490414217577575,-0.004244897760408239,-0.0022353142623756294,-0.005058105950089501,-0.0031864790722445787,-0.0029954506867263266,-0.004595663302791548,-0.003947930502899461,-0.0005156502881716299,-0.004115058815371946,-0.0042183818260279355,-0.0030686600605414212,-0.00507021243083413,-0.00812801049997516,-0.007105438827340258,-0.0032965023602913013,-0.005119805029658654,-0.005488369835680515,-0.005676208780791189,-0.002511755743124881,-0.005516672682168691,-0.007035675581080715,-0.004442692296093563,-0.005487830667086374,-0.005000288274155355,-0.0043957169104806145,-0.004267034171656184,-0.00586376576091798,-0.002850924165041988,0.00025408315898918857,-0.0068764331128129685,-0.0021014452525429453,-0.005313656860955831,-0.0036782169449893353,-0.0030010135137429547,-0.0053429513392450455,-0.005046720892179937,-0.004505929049429498,-0.0057911310133672384
+52.415895,4.919655,-0.0014518335133377636,-0.0009768785056312236,-0.001770012778529941,0.0003208768166899998,-0.0015611345500992386,-0.0013225350383452084,-0.00212499671514876,-0.002005558360369318,-0.0009317318166610963,-0.0048283402120744695,-0.0009629614792395309,-0.0005659911201517031,-0.004010738041471465,-0.0034361748864895594,-0.005576400395509036,-0.0065177967562987235,-0.0036922388292433125,-0.0027634149892639334,-0.0015089366541188045,-0.0009797838895838971,-0.001209340178189327,-0.003449041421757757,-0.00304489776040824,-0.0030353142623756294,-0.003258105950089501,-0.0018864790722445787,-0.0013954506867263267,-0.003295663302791548,-0.0007479305028994612,-0.0016156502881716297,-0.004115058815371946,-0.002618381826027936,-0.0022686600605414213,-0.0033702124308341293,-0.0030280104999751605,-0.005805438827340258,-0.004396502360291301,-0.0028198050296586548,-0.004888369835680515,-0.002476208780791189,-0.00011175574312488113,-0.0011166726821686904,-0.003335675581080715,-0.0012426922960935625,-0.004087830667086374,-0.0015002882741553551,-0.002095716910480614,-0.004667034171656184,-0.00646376576091798,-0.0018509241650419873,-0.0019459168410108113,0.00022356688718703057,-0.0012014452525429457,-0.0055136568609558305,-0.002778216944989335,-0.0021010135137429545,-0.002642951339245045,-0.001646720892179937,-0.0029059290494294985,-0.000591131013367238
+52.415823,4.919641,-0.0011518335133377637,-0.0006768785056312236,0.001329987221470059,0.0018208768166899998,-0.00026113455009923873,-0.0017225350383452084,-0.0016249967151487602,-0.004405558360369318,-0.0028317318166610965,-0.0011283402120744696,-0.002362961479239531,-0.002065991120151703,-0.003710738041471465,-0.00663617488648956,0.003823599604490965,-0.0036177967562987237,-0.0027922388292433123,-0.0010634149892639335,-0.0013089366541188044,0.0003202161104161028,9.065982181067278e-05,-0.0024490414217577575,-0.0007448977604082394,0.0010646857376243705,-0.001058105950089501,-0.0005864790722445784,0.00030454931327367343,-0.0022956633027915478,-0.0026479305028994614,-0.0010156502881716299,-0.0018150588153719464,-0.003018381826027936,-0.0006686600605414213,-0.0034702124308341295,-0.0038280104999751604,-0.0035054388273402584,-0.002196502360291301,-0.0019198050296586543,-0.0031883698356805156,-0.0017762087807911887,0.0002882442568751189,8.332731783130944e-05,-0.0029356755810807152,-0.0022426922960935626,0.0019121693329136266,-0.003700288274155355,-0.0022957169104806142,-6.703417165618395e-05,0.0014362342390820196,0.007949075834958012,-0.006545916841010812,0.007023566887187031,0.0005985547474570543,-0.001813656860955831,0.001021783055010665,0.0019989864862570454,-0.0016429513392450454,0.0005532791078200628,-0.0012059290494294986,0.0002088689866327619
+52.41572,4.919684,0.003548166486662236,0.005423121494368776,0.0005299872214700591,0.00302087681669,0.002238865449900761,0.0007774649616547916,0.0018750032848512401,0.003194441639630682,0.008268268183338904,7.165978792553034e-05,0.002337038520760469,0.001234008879848297,0.0005892619585285349,-0.00413617488648956,0.0013235996044909648,0.0012822032437012766,-0.0008922388292433124,0.002936585010736067,0.0019910633458811956,0.0007202161104161028,0.003590659821810673,0.0009509585782422425,0.0051551022395917604,0.0020646857376243706,-0.002758105950089501,0.0008135209277554214,0.0011045493132736733,0.0018043366972084521,0.0017520694971005389,0.0029843497118283704,8.494118462805365e-05,-1.8381826027936195e-05,0.0012313399394585786,0.0006297875691658704,-2.801049997516042e-05,-0.002005438827340259,-0.000396502360291301,-0.0006198050296586544,-0.0014883698356805155,-0.0013762087807911887,0.002188244256875119,0.0019833273178313095,0.001464324418919285,-0.0009426922960935626,0.0020121693329136266,0.004899711725844645,-0.0017957169104806142,-0.001067034171656184,-0.00716376576091798,0.0016490758349580125,0.0005540831589891886,0.0020235668871870305,0.0005985547474570543,-0.00041365686095583097,0.002021783055010665,0.0012989864862570455,0.00035704866075495477,0.002153279107820063,0.0006940709505705015,0.0032088689866327617
+52.415368,4.920819,-0.0021518335133377635,0.0024231214943687767,-7.001277852994092e-05,-0.00077912318331,-0.0010611345500992388,-0.0019225350383452085,-0.00332499671514876,-0.0019055583603693183,0.0005682681833389038,-0.00392834021207447,-0.0020629614792395307,-0.003265991120151703,-0.002410738041471465,-0.004236174886489559,-0.004376400395509035,-0.0032177967562987235,-0.004292238829243312,-0.0022634149892639334,-0.0012089366541188046,-0.0018797838895838969,-0.0005093401781893273,-0.0033490414217577577,-0.00274489776040824,-0.003435314262375629,-0.0037581059500895013,-0.00028647907224457845,-0.002095450686726327,-0.002495663302791548,-0.003547930502899461,-0.0018156502881716298,-0.0034150588153719465,-0.0020183818260279362,-0.0029686600605414214,-0.004170212430834129,-0.0035280104999751605,-0.006105438827340258,-0.004596502360291301,-0.004919805029658654,-0.004588369835680515,-0.006276208780791189,-0.0034117557431248813,-0.0033166726821686906,-0.004635675581080715,-0.0053426922960935624,-0.0026878306670863735,-0.006700288274155355,-0.005995716910480614,-0.006167034171656184,-0.008163765760917981,-0.003250924165041987,-0.004545916841010812,-0.0037764331128129695,-0.0034014452525429452,-0.0065136568609558305,-0.004478216944989335,-0.0035010135137429547,-0.0046429513392450454,-0.002846720892179937,-0.005105929049429498,-0.003691131013367238
+52.415319,4.920607,-0.002651833513337764,0.00042312149436877643,-0.001170012778529941,0.0005208768166899998,-0.00016113455009923868,-0.0018225350383452086,-0.0036249967151487598,-0.002405558360369318,-0.000331731816661096,-0.0030283402120744696,-0.002662961479239531,-0.003865991120151703,-0.0026107380414714648,-0.00763617488648956,-0.005576400395509036,-0.004417796756298723,-0.005292238829243312,-0.003663414989263933,-0.0026089366541188043,-0.0035797838895838974,-0.0024093401781893273,-0.005349041421757758,-0.00414489776040824,-0.0030353142623756294,-0.004258105950089501,-0.0009864790722445786,-0.004295450686726326,-0.004295663302791548,-0.004547930502899461,-0.0029156502881716295,-0.004215058815371946,-0.004418381826027936,-0.0037686600605414213,-0.005570212430834129,-0.007428010499975161,-0.007605438827340259,-0.0051965023602913015,-0.004319805029658654,-0.005988369835680516,-0.006176208780791189,-0.003611755743124881,-0.005216672682168691,-0.0063356755810807155,-0.0050426922960935625,-0.004087830667086374,-0.005900288274155355,-0.006595716910480614,-0.006567034171656183,-0.008763765760917981,-0.005150924165041988,-0.0047459168410108115,-0.003976433112812969,-0.0039014452525429457,-0.007113656860955831,-0.0042782169449893355,-0.0069010135137429545,-0.006442951339245046,-0.007146720892179937,-0.004705929049429498,-0.0037911310133672384
+52.415241,4.921217,-0.0005518335133377638,0.0018231214943687764,2.998722147005907e-05,2.0876816689999883e-05,0.0010388654499007613,-0.0012225350383452086,-0.00112499671514876,-0.00040555836036931824,0.002568268183338904,-0.0009283402120744696,-0.0025629614792395308,-0.00046599112015170306,-0.0017107380414714652,-0.002836174886489559,-0.004076400395509035,-0.0042177967562987235,-0.002892238829243312,-0.0030634149892639333,-0.0023089366541188044,-0.003279783889583897,-0.0008093401781893272,-0.0012490414217577574,-0.0002448977604082394,-0.0012353142623756294,-0.002358105950089501,0.0003135209277554214,-0.0028954506867263268,-0.002695663302791548,-0.001847930502899461,-0.0020156502881716297,-0.0032150588153719464,-0.001718381826027936,-0.002368660060541421,-0.0039702124308341295,-0.0021280104999751607,-0.004105438827340258,-0.0032965023602913013,-0.004819805029658654,-0.005488369835680515,-0.004876208780791189,-0.002111755743124881,-0.0028166726821686906,-0.002135675581080715,-0.003942692296093562,-0.0023878306670863736,-0.005900288274155355,-0.004195716910480614,-0.004267034171656184,-0.00696376576091798,-0.002950924165041987,-0.0028459168410108118,-0.0015764331128129694,-0.0019014452525429458,-0.006113656860955831,-0.004078216944989336,-0.0021010135137429545,-0.002442951339245045,-0.002746720892179937,-0.0031059290494294986,-0.0007911310133672381
+52.415171,4.921305,0.0017481664866622361,0.005623121494368776,0.0012299872214700592,0.0011208768166899997,0.0009388654499007613,0.0017774649616547915,-0.00012499671514876003,0.0007944416396306818,-0.000831731816661096,-0.0022283402120744696,0.0019370385207604691,0.000534008879848297,0.0004892619585285348,-0.0013361748864895596,-0.0015764003955090352,-0.0003177967562987236,-0.0015922388292433124,-0.0013634149892639337,-0.0008089366541188045,-0.0010797838895838974,-0.0021093401781893274,-0.0018490414217577575,0.0004551022395917605,-0.0032353142623756295,4.189404991049913e-05,0.0018135209277554214,-0.002095450686726327,-0.002395663302791548,0.001452069497100539,-0.0011156502881716297,-0.00011505881537194632,-0.0029183818260279364,-0.0017686600605414213,-0.0035702124308341293,-0.0032280104999751606,-0.005005438827340258,-0.001596502360291301,-0.0031198050296586547,-0.0038883698356805157,-0.004776208780791189,-0.002311755743124881,-0.0041166726821686905,-0.000935675581080715,-0.0040426922960935625,-0.0032878306670863734,-0.003400288274155355,-0.002395716910480614,-0.000867034171656184,-0.00576376576091798,-0.0022509241650419875,-0.0009459168410108113,0.0005235668871870306,-0.0009014452525429456,-0.004713656860955831,-0.005178216944989335,-0.0021010135137429545,-0.0012429513392450452,-0.002846720892179937,-0.0015059290494294985,0.0002088689866327619
+52.415101,4.921495,-0.0007518335133377639,0.004023121494368776,-0.001170012778529941,-0.00157912318331,3.88654499007613e-05,-0.0035225350383452083,-0.00222499671514876,-0.0025055583603693183,0.00046826818333890394,-0.004728340212074469,-0.00036296147923953084,-0.003565991120151703,-0.002510738041471465,-0.00533617488648956,-0.003676400395509035,-0.002117796756298723,-0.006292238829243312,-0.004063414989263933,-0.0032089366541188046,-0.003079783889583897,-0.000409340178189327,-0.003449041421757757,-0.00304489776040824,-0.0024353142623756295,-0.0025581059500895008,-0.0009864790722445786,-0.004595450686726326,-0.003695663302791548,-0.004047930502899461,-0.0007156502881716295,-0.0060150588153719455,-0.006718381826027936,-0.004268660060541421,-0.006570212430834129,-0.00502801049997516,-0.007205438827340259,-0.0054965023602913015,-0.0050198050296586545,-0.007688369835680516,-0.007276208780791188,-0.0034117557431248813,-0.00671667268216869,-0.004935675581080715,-0.005442692296093563,-0.0038878306670863732,-0.007900288274155355,-0.006495716910480614,-0.005067034171656184,-0.00766376576091798,-0.005250924165041988,-0.004845916841010812,-0.0018764331128129693,-0.0036014452525429458,-0.005713656860955831,-0.004978216944989336,-0.005001013513742955,-0.005442951339245046,-0.004546720892179937,-0.004705929049429498,-0.002691131013367238
+52.415088,4.921564,0.004048166486662236,0.007823121494368776,0.004329987221470059,0.00752087681669,0.008238865449900762,0.004877464961654791,0.00327500328485124,0.005794441639630682,0.003468268183338904,0.0024716597879255306,0.004637038520760469,0.004134008879848296,0.003589261958528535,0.0022638251135104403,0.002323599604490965,0.002882203243701276,0.0025077611707566873,0.0037365850107360663,0.004391063345881195,0.0040202161104161025,0.004690659821810673,0.004050958578242243,0.0037551022395917602,0.004764685737624371,0.004741894049910499,0.006013520927755421,0.004204549313273674,0.003204336697208452,0.001452069497100539,0.0049843497118283705,0.0019849411846280538,0.001381618173972064,0.003731339939458579,0.0011297875691658706,0.0008719895000248396,0.0014945611726597413,0.001303497639708699,-0.00031980502965865443,0.0014116301643194843,-0.0001762087807911886,0.004888244256875118,0.0017833273178313096,0.0010643244189192849,-4.2692296093562636e-05,0.0028121693329136266,0.0003997117258446449,0.002204283089519386,0.0018329658283438158,-0.0008637657609179802,0.0020490758349580125,0.0025540831589891885,0.0038235668871870305,0.0063985547474570545,0.00018634313904416903,0.0012217830550106646,0.0016989864862570455,0.0011570486607549546,0.0018532791078200628,0.0028940709505705015,0.003608868986632762
+52.415163,4.920919,0.0007481664866622362,0.004923121494368776,0.0004299872214700591,0.0013208768166899998,0.0007388654499007613,0.0009774649616547915,0.0023750032848512403,0.0010944416396306818,0.001968268183338904,0.00037165978792553047,0.0005370385207604691,-0.0009659911201517031,-0.00021073804147146515,-0.0009361748864895595,-0.0011764003955090352,-0.0005177967562987236,-0.0020922388292433126,-0.0031634149892639336,-0.0005089366541188046,-0.0013797838895838973,0.0023906598218106727,0.0008509585782422427,0.0024551022395917603,-0.00013531426237562945,-0.0005581059500895009,0.0003135209277554214,-0.0002954506867263266,-0.0006956633027915479,0.0003520694971005389,-1.5650288171629653e-05,-0.0025150588153719463,-0.0020183818260279362,-6.866006054142139e-05,-0.0019702124308341295,0.00017198950002483956,-0.0036054388273402587,-0.001496502360291301,-0.0004198050296586544,-0.0017883698356805156,-0.0025762087807911886,0.0008882442568751189,-0.0007166726821686905,-0.001035675581080715,-0.0002426922960935625,-0.0010878306670863735,-0.006300288274155355,-0.0015957169104806144,-0.0013670341716561839,-0.00516376576091798,-0.0019509241650419876,-0.0014459168410108113,-0.00027643311281296944,0.00019855474745705435,-0.002313656860955831,-0.0013782169449893353,9.898648625704542e-05,0.00035704866075495477,-0.0003467208921799372,-0.0011059290494294985,0.0004088689866327619
+52.415056,4.921544,-0.0011518335133377637,0.0019231214943687767,-0.0036700127785299413,-0.0026791231833100003,-0.002461134550099239,-0.0035225350383452083,-0.00412499671514876,-0.003705558360369318,-0.002031731816661096,-0.005028340212074469,-0.00406296147923953,-0.004265991120151703,-0.004910738041471466,-0.007136174886489559,-0.005076400395509035,-0.005417796756298723,-0.005392238829243313,-0.004263414989263934,-0.004208936654118805,-0.004779783889583897,-0.001709340178189327,-0.004449041421757757,-0.003944897760408239,-0.004135314262375629,-0.004058105950089501,-0.0024864790722445786,-0.004495450686726327,-0.006195663302791548,-0.00524793050289946,-0.004515650288171629,-0.006515058815371946,-0.0032183818260279363,-0.003668660060541421,-0.00707021243083413,-0.0060280104999751605,-0.007305438827340259,-0.006796502360291301,-0.004919805029658654,-0.007088369835680516,-0.007276208780791188,-0.004211755743124881,-0.0054166726821686904,-0.004935675581080715,-0.004442692296093563,-0.004287830667086373,-0.008300288274155356,-0.005295716910480614,-0.005067034171656184,-0.00896376576091798,-0.006650924165041988,-0.004845916841010812,-0.004476433112812969,-0.004001445252542945,-0.006213656860955831,-0.0065782169449893355,-0.0059010135137429545,-0.005742951339245046,-0.005146720892179937,-0.0052059290494294985,-0.0044911310133672385
+52.415041,4.921549,-0.0006518335133377637,0.0025231214943687765,-0.003370012778529941,-0.0011791231833100002,-0.0019611345500992385,-0.0019225350383452085,-0.0032249967151487596,-0.002705558360369318,-0.001331731816661096,-0.00462834021207447,-0.002162961479239531,-0.002565991120151703,-0.0036107380414714648,-0.0049361748864895595,-0.004876400395509036,-0.0033177967562987238,-0.004292238829243312,-0.0033634149892639333,-0.004108936654118805,-0.004079783889583897,-0.0006093401781893271,-0.0033490414217577577,-0.0026448977604082396,-0.0030353142623756294,-0.0025581059500895008,-0.0013864790722445787,-0.0038954506867263264,-0.005595663302791548,-0.0046479305028994606,-0.003115650288171629,-0.005815058815371946,-0.0032183818260279363,-0.0031686600605414215,-0.005870212430834129,-0.004828010499975161,-0.005705438827340259,-0.005596502360291301,-0.004819805029658654,-0.005688369835680516,-0.006176208780791189,-0.003211755743124881,-0.00401667268216869,-0.004635675581080715,-0.004842692296093563,-0.004087830667086374,-0.007400288274155355,-0.004195716910480614,-0.005067034171656184,-0.00806376576091798,-0.0055509241650419875,-0.0036459168410108113,-0.003576433112812969,-0.0036014452525429458,-0.006013656860955831,-0.005678216944989336,-0.004701013513742955,-0.005042951339245046,-0.003446720892179937,-0.004205929049429498,-0.0031911310133672386
+52.414933,4.921803,-0.0007518335133377639,0.004123121494368776,-0.001570012778529941,0.00102087681669,-0.00036113455009923866,-0.0007225350383452086,0.0007750032848512401,-0.0017055583603693182,0.003768268183338904,-0.0031283402120744694,-0.0012629614792395308,-0.000765991120151703,-0.002410738041471465,-0.0023361748864895596,-0.002976400395509035,-0.0031177967562987232,-0.004092238829243313,-0.0027634149892639334,-0.0009089366541188045,-0.0018797838895838969,0.0007906598218106729,-0.0039490414217577575,-0.0004448977604082395,-0.0004353142623756294,-0.005358105950089501,-0.00018647907224457862,-0.0015954506867263268,-0.003295663302791548,-0.00024793050289946116,-0.00021565028817162974,-0.004215058815371946,-0.0029183818260279364,-0.0021686600605414215,-0.0027702124308341294,-0.0013280104999751604,-0.0037054388273402585,-0.001396502360291301,-0.0050198050296586545,-0.004688369835680516,-0.006876208780791189,-0.001611755743124881,-0.0051166726821686905,-0.002535675581080715,-0.004642692296093562,-0.0008878306670863734,-0.005100288274155355,-0.0019957169104806143,-0.004767034171656184,-0.006563765760917981,-0.0023509241650419874,5.408315898918848e-05,-0.0008764331128129693,-0.0035014452525429455,-0.003313656860955831,-0.003978216944989336,-0.003201013513742955,-0.003442951339245045,-0.002246720892179937,-0.0006059290494294985,0.000608868986632762
+52.414941,4.921733,-0.00035183351333776375,0.005123121494368776,-0.002670012778529941,-0.0013791231833100003,0.0001388654499007613,-0.0023225350383452087,-0.00332499671514876,-0.002005558360369318,0.00016826818333890402,-0.0035283402120744696,-0.0011629614792395308,-0.000765991120151703,-0.002410738041471465,-0.00563617488648956,-0.003676400395509035,-0.0038177967562987233,-0.003492238829243312,-0.0030634149892639333,-0.0005089366541188046,-0.003079783889583897,-0.00020934017818932714,-0.0029490414217577575,-0.00374489776040824,-0.0017353142623756294,-0.0025581059500895008,0.00011352092775542152,-0.0012954506867263265,-0.004395663302791547,-0.002847930502899461,-0.0004156502881716296,-0.004015058815371946,-0.003918381826027936,-0.002068660060541421,-0.0039702124308341295,-0.0038280104999751604,-0.004705438827340258,-0.001496502360291301,-0.004119805029658655,-0.0034883698356805155,-0.004476208780791189,-0.002511755743124881,-0.0025166726821686906,-0.004235675581080715,-0.0033426922960935624,-0.002187830667086373,-0.005600288274155355,-0.004295716910480614,-0.004667034171656184,-0.00706376576091798,-0.0036509241650419873,-0.002245916841010811,-0.0024764331128129696,-0.004001445252542945,-0.005913656860955831,-0.003978216944989336,-0.004101013513742955,-0.003042951339245045,-0.003346720892179937,-0.0026059290494294986,-0.002691131013367238
+52.415003,4.921254,-0.0008518335133377638,0.005523121494368776,0.0007299872214700591,0.00012087681668999993,-0.00016113455009923868,0.0008774649616547915,-0.00152499671514876,0.0003944416396306818,0.0036682681833389037,-0.0011283402120744696,0.00043703852076046914,3.400887984829695e-05,-0.0011107380414714652,-0.0031361748864895595,-0.0025764003955090348,-0.0003177967562987236,-0.0023922388292433126,-0.0023634149892639332,-0.0025089366541188045,-0.002479783889583897,0.002590659821810673,0.00035095857824224246,0.0006551022395917606,0.0006646857376243705,-0.000958105950089501,0.0008135209277554214,-0.0008954506867263266,-0.0007956633027915479,-0.002547930502899461,0.0010843497118283702,-0.0018150588153719464,-0.001618381826027936,-0.0011686600605414215,-0.00407021243083413,-0.0030280104999751605,-0.005705438827340259,-0.000896502360291301,-0.0012198050296586545,-0.004088369835680516,-0.0035762087807911886,-0.000611755743124881,-0.0021166726821686905,0.0016643244189192851,-0.0008426922960935626,-0.0007878306670863733,-0.005300288274155355,-0.0014957169104806143,-0.001467034171656184,-0.00396376576091798,-0.0022509241650419875,-0.0026459168410108112,-0.0021764331128129692,-1.4452525429457406e-06,-0.005113656860955831,-0.0042782169449893355,-0.0015010135137429545,-0.002442951339245045,-0.0030467208921799373,-0.0026059290494294986,-0.002391131013367238
+52.4149,4.921899,0.001248166486662236,0.006623121494368776,-0.0002700127785299409,0.00272087681669,0.0011388654499007614,0.00047746496165479153,-0.00082499671514876,0.00019444163963068176,0.002268268183338904,-0.0031283402120744694,-0.0002629614792395308,-0.001265991120151703,-0.0010107380414714651,-0.0016361748864895595,-0.002876400395509035,0.0020822032437012765,-0.003192238829243312,-0.0003634149892639335,0.0014910633458811956,0.0011202161104161027,0.0014906598218106728,-0.0002490414217577574,-0.0019448977604082395,0.0002646857376243705,0.00034189404991049905,0.0008135209277554214,-0.0023954506867263268,-0.0006956633027915479,-0.001647930502899461,0.0009843497118283704,-0.0019150588153719463,-0.0014183818260279362,3.133993945857855e-05,-0.0021702124308341296,-0.0021280104999751607,-0.004005438827340259,-0.001996502360291301,-0.003219805029658654,-0.0027883698356805154,-0.0035762087807911886,-0.00011175574312488113,-0.0017166726821686905,-0.003535675581080715,-0.003542692296093563,-0.0014878306670863732,-0.004000288274155355,-0.0021957169104806144,-0.003067034171656184,-0.004263765760917981,-0.0011509241650419872,-0.0007459168410108115,-0.0005764331128129694,-0.0016014452525429455,-0.003513656860955831,-0.002978216944989335,-0.0008010135137429546,-0.0027429513392450452,-0.0012467208921799371,-0.0006059290494294985,-0.002591131013367238
+52.414927,4.921433,-0.0024518335133377634,0.0030231214943687765,0.0005299872214700591,0.0014208768166899999,0.0024388654499007613,-0.0002225350383452084,-0.00182499671514876,-0.0012055583603693182,0.00016826818333890402,-0.006428340212074469,-0.002362961479239531,-0.002765991120151703,-0.002210738041471465,-0.0025361748864895593,-0.0008764003955090352,-0.002117796756298723,-0.004092238829243313,-0.0024634149892639335,-0.0006089366541188046,-0.0013797838895838973,0.0010906598218106728,-0.0021490414217577576,-0.0010448977604082393,-0.0016353142623756292,-0.0013581059500895009,0.00011352092775542152,-0.0026954506867263267,0.007604336697208452,-0.002747930502899461,0.00048434971182837036,-0.0035150588153719463,-0.001218381826027936,-0.0007686600605414214,-0.0012702124308341294,0.0018719895000248394,-0.0036054388273402587,-0.0037965023602913013,-0.0034198050296586546,-0.0030883698356805153,-0.004276208780791189,-0.0015117557431248811,-0.0054166726821686904,-0.002235675581080715,-0.010442692296093563,-0.0012878306670863736,-0.006400288274155355,-0.0014957169104806143,-0.002467034171656184,-0.00666376576091798,-0.0027509241650419875,-0.0018459168410108115,-0.0034764331128129696,-0.0016014452525429455,-0.005313656860955831,-0.004178216944989335,-0.002701013513742955,0.00035704866075495477,-0.0014467208921799372,-0.0030059290494294988,-0.001591131013367238
+52.414855,4.921566,0.0011481664866622363,0.006923121494368776,-0.0004700127785299409,0.0006208768166899998,0.0006388654499007614,0.00037746496165479154,-0.00072499671514876,0.0004944416396306817,0.002968268183338904,0.00037165978792553047,0.0003370385207604692,-0.0013659911201517028,-0.0007107380414714652,-0.00443617488648956,-0.002776400395509035,-0.002017796756298724,-0.0021922388292433125,0.00033658501073606647,-0.0017089366541188046,-0.00027978388958389724,-0.000409340178189327,-0.0019490414217577575,-0.0006448977604082396,-0.0007353142623756295,-0.000258105950089501,0.0013135209277554214,-0.0010954506867263264,-0.0002956633027915479,0.0010520694971005388,0.0005843497118283702,-0.00041505881537194634,-0.003718381826027936,-0.0029686600605414214,-0.0019702124308341295,-0.0006280104999751605,-0.004805438827340259,-0.0017965023602913009,-0.0020198050296586544,-0.0032883698356805154,-0.0018762087807911887,-0.000611755743124881,-0.0008166726821686905,-0.0024356755810807152,0.005057307703906438,-0.0016878306670863733,-0.004400288274155355,-0.0014957169104806143,-0.000667034171656184,-0.00466376576091798,-0.0018509241650419873,-0.0019459168410108113,0.00042356688718703055,-0.002401445252542946,-0.005113656860955831,-0.003778216944989335,-0.0025010135137429547,-0.00044295133924504527,-0.001046720892179937,-0.0025059290494294987,0.000908868986632762
+52.414732,4.922258,0.0009481664866622362,0.005123121494368776,-0.002570012778529941,0.0006208768166899998,-6.113455009923864e-05,-0.0018225350383452086,0.0004750032848512399,0.0010944416396306818,-0.0006317318166610963,-0.004028340212074469,-0.0002629614792395308,0.00023400887984829693,-0.003710738041471465,-0.0038361748864895596,-0.004576400395509036,-0.0009177967562987235,-0.0046922388292433125,-0.0011634149892639336,-0.0009089366541188045,-0.0021797838895838972,0.0021906598218106726,-0.0032490414217577574,-0.0017448977604082399,-0.0027353142623756294,-0.001458105950089501,0.0007135209277554214,-0.0029954506867263266,-0.0067956633027915474,-0.00044793050289946114,8.434971182837018e-05,-0.004215058815371946,-0.005318381826027936,-0.0038686600605414216,-0.0049702124308341296,-0.0032280104999751606,-0.004305438827340259,-0.0037965023602913013,-0.0025198050296586544,-0.005488369835680515,-0.004776208780791189,-0.003011755743124881,-0.0032166726821686903,-0.004135675581080715,-0.0014426922960935626,-0.002487830667086373,-0.006600288274155355,-0.0026957169104806144,-0.004067034171656184,-0.00716376576091798,-0.005450924165041988,-0.0030459168410108114,-0.004776433112812969,-0.004901445252542946,-0.007813656860955831,-0.004378216944989336,-0.005201013513742954,-0.0014429513392450453,-0.004146720892179937,-0.0034059290494294985,-0.002591131013367238
+52.414697,4.921901,-0.0015518335133377639,0.0010231214943687765,-0.002670012778529941,-0.00077912318331,-0.0016611345500992388,-0.0016225350383452086,-0.0035249967151487604,-0.00040555836036931824,-0.001031731816661096,-0.0032283402120744696,-0.002862961479239531,-0.002265991120151703,-0.002910738041471465,-0.00443617488648956,-0.004376400395509035,-0.003917796756298724,-0.005392238829243313,-0.003963414989263933,-0.0036089366541188048,-0.003779783889583897,-0.00020934017818932714,-0.0023490414217577577,-0.005344897760408239,-0.00013531426237562945,-0.003158105950089501,0.0007135209277554214,-0.0027954506867263265,-0.0041956633027915476,-0.003947930502899461,-0.0026156502881716295,-0.0060150588153719455,-0.0049183818260279365,-0.0029686600605414214,-0.004170212430834129,-0.0018280104999751604,-0.004505438827340258,-0.000496502360291301,-0.0047198050296586545,-0.005688369835680516,-0.0058762087807911895,-0.002011755743124881,-0.005216672682168691,-0.009235675581080715,-0.007142692296093562,-0.003187830667086374,-0.006000288274155355,-0.006495716910480614,-0.006667034171656184,-0.007963765760917979,-0.004750924165041987,-0.0033459168410108113,-0.00437643311281297,-0.006401445252542945,-0.006113656860955831,-0.007478216944989335,-0.005001013513742955,-0.0014429513392450453,-0.0025467208921799373,-0.007805929049429498,-0.004091131013367238
+52.414654,4.922028,0.0015481664866622362,0.0024231214943687767,-0.0019700127785299408,-0.00047912318331000013,-0.0007611345500992386,-0.0019225350383452085,-0.00242499671514876,-0.0009055583603693183,0.002768268183338904,-0.004028340212074469,-0.0012629614792395308,-0.0034659911201517027,-0.003010738041471465,-0.006136174886489559,-0.002876400395509035,-0.003017796756298724,-0.004092238829243313,-0.0025634149892639338,-0.0015089366541188045,-0.002779783889583897,-0.001409340178189327,-0.004149041421757757,-0.0022448977604082395,-0.0018353142623756293,-0.002358105950089501,-0.0003864790722445787,-0.0005954506867263265,0.0005043366972084522,-0.005047930502899461,-0.0008156502881716298,-0.003615058815371946,-0.003918381826027936,-0.002868660060541421,-0.004770212430834129,-0.00752801049997516,-0.0052054388273402585,-0.004096502360291301,-0.0028198050296586548,-0.005088369835680516,-0.005476208780791188,-0.001311755743124881,-0.003916672682168691,-0.003835675581080715,-0.0070426922960935626,-0.0014878306670863732,-0.007400288274155355,-0.006095716910480615,-0.004367034171656184,-0.006263765760917981,-0.004350924165041988,-0.0034459168410108116,-0.003976433112812969,-0.003301445252542946,-0.005213656860955831,-0.005778216944989335,-0.004001013513742955,-0.004042951339245046,-0.003646720892179937,-0.0049059290494294985,-0.000891131013367238
+52.414466,4.922859,0.0013481664866622362,0.003823121494368777,0.0006299872214700591,0.00042087681668999985,0.00023886544990076134,0.0008774649616547915,-0.00142499671514876,-0.0012055583603693182,0.0014682681833389037,-0.00012834021207446954,-0.0009629614792395309,-0.000865991120151703,-0.0007107380414714652,-0.0016361748864895595,-7.640039550903516e-05,-0.0007177967562987234,-0.004192238829243312,-0.0017634149892639334,-0.0006089366541188046,-0.002079783889583897,0.001790659821810673,-0.0015490414217577575,-0.00204489776040824,0.0005646857376243705,0.000241894049910499,0.0038135209277554215,-0.0013954506867263267,-0.002695663302791548,-0.003947930502899461,0.0003843497118283703,-0.0030150588153719463,-0.002618381826027936,-0.0009686600605414215,-0.0022702124308341294,-0.0032280104999751606,-0.004305438827340259,-0.003496502360291301,-0.0025198050296586544,-0.004688369835680516,-0.004776208780791189,-0.0012117557431248812,-0.003916672682168691,-0.003335675581080715,-0.004942692296093562,0.00021216933291362658,-0.005600288274155355,-0.002395716910480614,-0.002967034171656184,-0.00526376576091798,-0.0026509241650419873,-0.0017459168410108113,-0.0018764331128129693,-0.0035014452525429455,-0.002913656860955831,-0.003278216944989335,-0.003201013513742955,-0.0032429513392450452,-0.002346720892179937,-0.0030059290494294988,-0.001991131013367238
+52.414442,4.922905,0.003248166486662236,0.0068231214943687765,0.004729987221470059,0.00282087681669,0.0023388654499007615,0.0031774649616547915,-0.00042499671514876,0.0024944416396306818,0.004968268183338904,-0.0012283402120744696,0.00393703852076047,0.002734008879848297,0.0009892619585285347,-0.0004361748864895596,0.003123599604490965,0.0013822032437012764,0.0005077611707566877,0.002036585010736066,0.0011910633458811954,0.0014202161104161027,0.003090659821810673,-0.0006490414217577575,0.0008551022395917604,0.0023646857376243705,0.0031418940499104995,0.004213520927755421,0.0021045493132736733,-0.0008956633027915479,0.0018520694971005387,0.0017843497118283703,0.0013849411846280537,0.0009816181739720638,0.0014313399394585784,2.97875691658705e-05,0.0018719895000248394,-0.0010054388273402588,0.000303497639708699,-0.0007198050296586544,0.0003116301643194845,-0.002476208780791189,0.004488244256875119,0.0012833273178313096,0.002864324418919285,-0.0014426922960935626,0.003812169332913626,-0.001900288274155355,0.0013042830895193857,0.001532965828343816,-0.0008637657609179802,0.0012490758349580126,0.0019540831589891887,0.0015235668871870305,0.0005985547474570543,-0.0009136568609558309,0.001521783055010665,-0.0005010135137429547,-0.0003429513392450452,0.002353279107820063,-0.0012059290494294986,0.002308868986632762
+52.414312,4.923206,0.0020481664866622363,0.006423121494368776,-0.000970012778529941,-0.0033791231833100004,-0.0025611345500992384,-0.0017225350383452084,-0.00402499671514876,-0.0028055583603693183,0.00016826818333890402,-0.00392834021207447,-0.003862961479239531,-0.002765991120151703,-0.0026107380414714648,-0.00533617488648956,-0.0030764003955090348,-0.004417796756298723,-0.0056922388292433125,-0.006963414989263934,-0.0022089366541188046,-0.004179783889583897,-0.003009340178189327,-0.004849041421757757,-0.00524489776040824,-0.00493531426237563,-0.0028581059500895007,0.0012135209277554216,-0.0047954506867263266,-0.006195663302791548,-0.0009479305028994612,-0.003115650288171629,-0.005215058815371946,-0.006018381826027937,-0.004568660060541422,-0.00697021243083413,-0.004528010499975161,-0.007605438827340259,-0.0037965023602913013,-0.006119805029658654,-0.005588369835680515,-0.008576208780791189,-0.004911755743124881,-0.00561667268216869,-0.003535675581080715,-0.005942692296093562,-0.004187830667086374,-0.006200288274155355,-0.005895716910480614,-0.005367034171656184,-0.00786376576091798,-0.006650924165041988,-0.004845916841010812,-0.00407643311281297,-0.006001445252542945,-0.00791365686095583,-0.006978216944989336,-0.007701013513742955,-0.005942951339245045,-0.0059467208921799375,-0.006405929049429498,-0.0031911310133672386
+52.41427,4.923128,0.0007481664866622362,0.004623121494368776,-0.001070012778529941,-0.0001791231833100002,-0.0005611345500992388,-0.0026225350383452086,-0.00212499671514876,-0.0016055583603693184,-0.001031731816661096,-0.0018283402120744694,-0.0017629614792395308,-0.0011659911201517032,-0.003810738041471465,-0.005236174886489559,-0.0041764003955090355,-0.0038177967562987233,-0.003992238829243312,-0.003663414989263933,-0.0017089366541188046,-0.004079783889583897,-0.0010093401781893273,-0.003749041421757757,-0.003944897760408239,-0.0010353142623756293,-0.001058105950089501,-0.0011864790722445786,-0.0029954506867263266,-0.005095663302791547,-0.0034479305028994613,-0.00211565028817163,-0.005215058815371946,-0.006618381826027937,-0.003368660060541421,-0.00567021243083413,-0.00642801049997516,-0.005305438827340259,-0.0041965023602913015,-0.0050198050296586545,-0.0062883698356805155,-0.004076208780791188,-0.001811755743124881,-0.00461667268216869,-0.005835675581080715,-0.007242692296093562,-0.0017878306670863736,-0.008600288274155356,-0.005795716910480614,-0.0072670341716561835,-0.00896376576091798,-0.005350924165041987,-0.004345916841010811,-0.00467643311281297,-0.002701445252542946,-0.007113656860955831,-0.005478216944989335,-0.004301013513742955,-0.006042951339245046,-0.004646720892179937,-0.0052059290494294985,-0.004391131013367238
+52.414244,4.923276,0.0017481664866622361,0.007623121494368777,2.998722147005907e-05,0.0011208768166899997,-0.0008611345500992387,-0.0017225350383452084,-0.00202499671514876,-0.002305558360369318,0.006368268183338904,-0.0018283402120744694,-0.0008629614792395309,-0.001065991120151703,-0.002310738041471465,-0.00413617488648956,-0.003176400395509035,-0.0029177967562987236,-0.0046922388292433125,-0.002663414989263933,-0.0007089366541188044,-0.002879783889583897,-0.0013093401781893272,-0.0027490414217577574,-0.0008448977604082397,-0.0025353142623756294,-0.001958105950089501,0.00011352092775542152,-0.0021954506867263267,-0.003895663302791548,-0.0009479305028994612,-0.003115650288171629,-0.0023150588153719462,-0.003618381826027936,-0.002868660060541421,-0.0029702124308341295,-0.0038280104999751604,-0.0055054388273402585,-0.004096502360291301,-0.004319805029658654,-0.004788369835680516,-0.004376208780791188,-0.002511755743124881,-0.0029166726821686904,-0.002235675581080715,-0.004242692296093562,-0.002187830667086373,-0.006700288274155355,-0.004995716910480614,-0.0035670341716561842,-0.00756376576091798,-0.003250924165041987,-0.0021459168410108117,-0.0025764331128129694,-0.003301445252542946,-0.004213656860955831,-0.003978216944989336,-0.0031010135137429545,-0.0022429513392450452,-0.0030467208921799373,-0.003905929049429499,-0.000891131013367238
+52.414261,4.922844,-0.0031518335133377635,-0.0008768785056312235,0.001929987221470059,0.00242087681669,0.005838865449900761,0.0030774649616547916,0.00287500328485124,0.003594441639630682,0.002268268183338904,0.0038716597879255308,0.0017370385207604692,0.000334008879848297,-0.0005107380414714651,0.0019638251135104404,0.0019235996044909647,-0.0009177967562987235,-0.0009922388292433124,-0.0011634149892639336,0.0007910633458811955,0.0005202161104161028,0.002290659821810673,0.0015509585782422424,0.0030551022395917606,0.00046468573762437055,4.189404991049913e-05,0.0014135209277554215,-9.545068672632659e-05,0.0002043366972084521,0.0015520694971005388,-0.0005156502881716299,0.0001849411846280537,-0.00011838182602793624,-0.0002686600605414215,-0.0019702124308341295,-0.0006280104999751605,-0.0033054388273402588,-0.001596502360291301,0.0009801949703413457,-0.0020883698356805157,-0.008876208780791189,0.000988244256875119,-0.0008166726821686905,-0.004935675581080715,-0.0022426922960935626,0.0003121693329136266,-0.002400288274155355,-0.0002957169104806143,-0.0009670341716561839,-0.00466376576091798,0.0005490758349580126,-0.0015459168410108116,-0.0004764331128129693,0.0015985547474570544,-0.005713656860955831,-0.002078216944989335,-0.0003010135137429545,-0.0015429513392450453,0.003153279107820063,0.0019940709505705013,0.001808868986632762
+52.414165,4.92348,-0.0007518335133377639,0.0035231214943687765,-0.002770012778529941,-0.0013791231833100003,-0.0028611345500992383,-0.0023225350383452087,-0.0028249967151487603,-0.0039055583603693177,-0.001031731816661096,-0.004128340212074469,-0.003662961479239531,-0.0030659911201517034,-0.0036107380414714648,-0.0036361748864895595,-0.004776400395509035,-0.005317796756298723,-0.007192238829243313,-0.0035634149892639338,-0.0013089366541188044,-0.002879783889583897,-0.0018093401781893272,-0.005349041421757758,-0.00464489776040824,-0.0028353142623756293,-0.004858105950089501,-0.0024864790722445786,-0.0036954506867263267,-0.004595663302791548,-0.0031479305028994614,-0.00431565028817163,-0.006815058815371946,-0.005518381826027936,-0.0046686600605414215,-0.007570212430834129,-0.00532801049997516,-0.007005438827340259,-0.005796502360291301,-0.005119805029658654,-0.006788369835680516,-0.006676208780791188,-0.003211755743124881,-0.004816672682168691,-0.003135675581080715,-0.005542692296093562,-0.0030878306670863737,-0.005400288274155355,-0.0066957169104806145,-0.006067034171656184,-0.00746376576091798,-0.005250924165041988,-0.005445916841010812,-0.0034764331128129696,-0.005601445252542946,-0.007713656860955831,-0.005678216944989336,-0.006601013513742955,-0.006042951339245046,-0.005646720892179937,-0.007705929049429499,-0.004191131013367239
+52.414177,4.923351,-5.1833513337763834e-05,0.006723121494368776,-0.0019700127785299408,-0.00047912318331000013,-0.0009611345500992387,-0.0019225350383452085,-0.00272499671514876,-0.0019055583603693183,0.001368268183338904,-0.00422834021207447,-0.0018629614792395307,-0.002265991120151703,-0.002910738041471465,-0.004036174886489559,-0.001976400395509035,-0.004617796756298724,-0.004392238829243313,-0.0031634149892639336,-0.0016089366541188043,-0.001279783889583897,0.001390659821810673,-0.0029490414217577575,-0.0014448977604082395,-0.0011353142623756296,-0.001958105950089501,0.0007135209277554214,-0.0015954506867263268,-0.002695663302791548,-0.002347930502899461,-0.00371565028817163,-0.0033150588153719462,-0.0049183818260279365,-0.002868660060541421,-0.004870212430834129,-0.0034280104999751602,-0.006605438827340259,-0.004296502360291301,-0.004919805029658654,-0.005188369835680515,-0.0051762087807911885,-0.001111755743124881,-0.004216672682168691,-0.003235675581080715,-0.005442692296093563,-0.0012878306670863736,-0.008000288274155356,-0.004595716910480614,-0.003867034171656184,-0.00746376576091798,-0.004850924165041988,-0.002245916841010811,-0.0019764331128129696,-0.002401445252542946,-0.004013656860955831,-0.004078216944989336,-0.0025010135137429547,-0.004742951339245046,-0.004146720892179937,-0.004305929049429498,-0.0030911310133672383
+52.414176,4.923,-0.0009518335133377636,0.004323121494368776,-0.001870012778529941,-0.0021791231833100002,0.0001388654499007613,-0.0015225350383452085,-0.0009249967151487601,-0.002405558360369318,0.0007682681833389039,-0.0021283402120744694,-0.0002629614792395308,-0.002265991120151703,-0.003810738041471465,-0.00413617488648956,-0.002376400395509035,-0.0042177967562987235,-0.0021922388292433125,-0.010163414989263932,-0.0015089366541188045,-0.002779783889583897,-0.001909340178189327,-0.004849041421757757,-0.0029448977604082396,-0.0027353142623756294,-0.002358105950089501,-0.0023864790722445783,-0.0029954506867263266,-0.0005956633027915479,-0.004347930502899461,-0.0019156502881716296,-0.0038150588153719463,-0.003718381826027936,-0.0026686600605414215,-0.0032702124308341294,-0.00472801049997516,-0.004805438827340259,-0.002396502360291301,-0.0038198050296586548,-0.004488369835680515,-0.003976208780791189,-0.001011755743124881,-0.00441667268216869,-0.003335675581080715,-0.004442692296093563,-0.0018878306670863734,-0.005700288274155355,-0.005095716910480615,-0.005067034171656184,-0.00576376576091798,-0.0017509241650419875,-0.0021459168410108117,-0.0017764331128129695,-0.0018014452525429456,-0.007813656860955831,-0.004978216944989336,-0.0030010135137429547,-0.0032429513392450452,0.005253279107820063,-0.0036059290494294986,-0.0037911310133672384
+52.414028,4.923679,-0.003651833513337764,0.0026231214943687763,-0.006270012778529941,-0.00047912318331000013,-0.0032611345500992385,-0.0042225350383452084,-0.0035249967151487604,-0.003705558360369318,-0.0017317318166610962,-0.005328340212074469,-0.005162961479239531,-0.005665991120151703,-0.005010738041471465,-0.00833617488648956,-0.0074764003955090355,-0.008417796756298723,-0.006092238829243313,-0.0054634149892639336,-0.0021089366541188043,-0.005179783889583897,-0.003609340178189327,-0.006549041421757757,-0.005444897760408239,-0.0052353142623756295,-0.004958105950089501,-0.0021864790722445787,-0.004995450686726326,-0.007195663302791548,-0.004247930502899461,-0.00341565028817163,-0.006715058815371946,-0.005118381826027936,-0.004568660060541422,-0.005570212430834129,-0.00582801049997516,-0.008405438827340258,-0.004796502360291301,-0.008319805029658655,-0.006488369835680515,-0.006776208780791189,-0.002911755743124881,-0.0041166726821686905,-0.005535675581080715,-0.007942692296093562,-0.0007878306670863733,-0.006500288274155355,-0.0066957169104806145,-0.005967034171656184,-0.00726376576091798,-0.004750924165041987,-0.003945916841010812,-0.00497643311281297,-0.006101445252542945,-0.0055136568609558305,-0.006078216944989336,-0.005701013513742955,-0.003942951339245045,-0.003646720892179937,-0.008005929049429499,-0.0038911310133672387
+52.414075,4.923212,-0.0005518335133377638,-0.0008768785056312235,-0.000570012778529941,-0.00047912318331000013,0.0020388654499007616,0.0012774649616547915,-0.00372499671514876,0.0006944416396306818,-0.0005317318166610961,-0.0028283402120744695,0.0008370385207604693,-0.0005659911201517031,-0.0008107380414714651,-0.0035361748864895593,-0.002376400395509035,-0.0012177967562987235,-0.003192238829243312,-0.0006634149892639335,0.0010910633458811954,-0.0009797838895838971,9.065982181067278e-05,-0.003149041421757757,-0.0033448977604082397,-0.0005353142623756294,-0.001658105950089501,0.0007135209277554214,-0.003395450686726327,-0.006695663302791547,-0.0069479305028994605,0.0012843497118283703,-0.006415058815371946,-0.004418381826027936,-0.0018686600605414211,-0.00437021243083413,-0.004528010499975161,-0.005005438827340258,-0.007796502360291301,-0.003519805029658654,-0.0023883698356805157,-0.005076208780791189,-0.001311755743124881,-0.0024166726821686904,-0.002535675581080715,-0.006242692296093562,0.0008121693329136265,-0.004300288274155355,-0.0037957169104806143,-0.004367034171656184,-0.00546376576091798,-0.0033509241650419874,-0.0018459168410108115,-0.004176433112812969,-0.0055014452525429455,-0.004613656860955831,-0.003478216944989335,-0.004601013513742955,-0.0053429513392450455,-0.003246720892179937,-0.004605929049429498,-0.0031911310133672386
+52.414017,4.923417,0.0009481664866622362,0.005323121494368776,-0.0007700127785299409,0.00022087681668999976,0.00023886544990076134,7.746496165479157e-05,-0.0028249967151487603,-0.0003055583603693182,0.0005682681833389038,0.0002716597879255304,0.0007370385207604692,-0.00026599112015170297,-0.0011107380414714652,-0.0021361748864895595,-0.001976400395509035,-0.004117796756298723,-0.0026922388292433125,-0.0005634149892639335,-0.0004089366541188045,-0.0007797838895838971,0.0010906598218106728,-0.0020490414217577573,0.0002551022395917606,-0.0009353142623756294,-0.001158105950089501,0.0010135209277554215,-0.0005954506867263265,-0.002895663302791548,-0.0031479305028994614,0.00048434971182837036,-0.003915058815371946,-0.001918381826027936,-0.0012686600605414213,-0.0026702124308341296,-0.00752801049997516,-0.0062054388273402586,-0.003696502360291301,-0.0050198050296586545,-0.004488369835680515,-0.004676208780791188,-0.0014117557431248809,-0.0020166726821686906,-0.0060356755810807156,-0.005642692296093562,1.2169332913626596e-05,-0.005000288274155355,-0.0005957169104806143,-0.0023670341716561837,-0.00546376576091798,-0.0015509241650419874,-0.0024459168410108116,0.0021235668871870308,-0.0021014452525429453,-0.002413656860955831,-0.003278216944989335,-0.0026010135137429545,-0.002542951339245045,-0.003346720892179937,-0.0028059290494294987,-0.001391131013367238
+52.420936,4.90725,4.816648666223621e-05,-0.004376878505631224,-0.002070012778529941,-0.0011791231833100002,-0.002461134550099239,-0.0014225350383452085,-0.00452499671514876,-0.0028055583603693183,0.00046826818333890394,-0.00432834021207447,-0.0008629614792395309,0.001834008879848297,-0.0009107380414714652,-0.0038361748864895596,-0.0006764003955090352,-0.00021779675629872354,-0.0019922388292433124,-0.005663414989263934,0.0011910633458811954,0.0003202161104161028,-0.0001093401781893271,-0.0020490414217577573,0.0012551022395917604,-0.0007353142623756295,-0.001758105950089501,-0.0005864790722445784,4.549313273673455e-06,-0.001695663302791548,-0.0006479305028994611,-0.0011156502881716297,-0.003915058815371946,-0.003818381826027936,-0.0037686600605414213,-0.0026702124308341296,-0.004828010499975161,-0.0031054388273402587,-0.0020965023602913012,-0.004019805029658654,-0.0032883698356805154,-0.007376208780791189,-0.003111755743124881,0.0007833273178313093,-0.0043356755810807154,-0.004742692296093563,-0.0010878306670863735,-0.001700288274155355,-0.0017957169104806142,-0.0052670341716561835,-0.0048637657609179805,-5.092416504198739e-05,-0.0009459168410108113,-0.0027764331128129695,-0.003701445252542945,-0.006613656860955831,-0.002878216944989335,-0.0049010135137429545,-0.006042951339245046,-0.004646720892179937,-0.004505929049429498,-0.003991131013367238
+52.420908,4.907217,0.004548166486662236,-0.0007768785056312236,-7.001277852994092e-05,0.0021208768166899998,-6.113455009923864e-05,-0.0010225350383452085,-0.00062499671514876,-0.0016055583603693184,0.003268268183338904,-0.0025283402120744695,-0.0004629614792395308,0.000334008879848297,-0.00021073804147146515,-0.0011361748864895595,-0.0002764003955090352,0.0007822032437012764,-0.0018922388292433126,-0.0013634149892639337,0.0004910633458811955,0.0017202161104161026,0.001390659821810673,-0.0004490414217577575,0.0016551022395917604,0.0002646857376243705,-0.001958105950089501,0.00041352092775542144,0.00020454931327367338,4.336697208452112e-06,0.006152069497100539,0.0005843497118283702,-0.002115058815371946,-0.001918381826027936,-0.0016686600605414215,-0.0018702124308341294,0.0018719895000248394,-0.002705438827340259,-0.000896502360291301,-0.0026198050296586542,-0.0018883698356805154,-0.0035762087807911886,-0.001111755743124881,0.0010833273178313095,-0.0017356755810807151,-0.0020426922960935625,-0.00038783066708637337,0.0001997117258446448,4.283089519385657e-06,-0.002267034171656184,-0.00416376576091798,0.0021490758349580127,-0.0001459168410108114,0.0012235668871870306,0.0003985547474570543,-0.003713656860955831,-0.0031782169449893352,-0.0005010135137429547,-0.0012429513392450452,-0.001946720892179937,-0.0009059290494294986,0.000908868986632762
+52.420894,4.906894,0.0009481664866622362,-0.0026768785056312232,-0.000670012778529941,-0.0001791231833100002,-0.0016611345500992388,-0.0010225350383452085,-0.0028249967151487603,-0.002305558360369318,-3.173181666109607e-05,-0.00392834021207447,-0.0018629614792395307,-0.0013659911201517028,-0.002510738041471465,-0.00413617488648956,-0.003376400395509035,-0.0035177967562987234,-0.004792238829243313,-0.003663414989263933,-0.0027089366541188046,-0.001579783889583897,-0.0024093401781893273,-0.003149041421757757,-0.0013448977604082397,-0.0020353142623756293,-0.004258105950089501,-0.0009864790722445786,-0.0013954506867263267,-0.002095663302791548,-0.0005479305028994612,-0.0016156502881716297,-0.0024150588153719465,-0.003118381826027936,-0.004568660060541422,-0.004570212430834129,-0.0025280104999751605,-0.0052054388273402585,-0.003896502360291301,-0.003519805029658654,-0.004488369835680515,-0.007076208780791189,-0.0043117557431248815,-0.0024166726821686904,-0.005935675581080714,-0.004742692296093563,-0.004487830667086374,-0.004900288274155355,-0.0037957169104806143,-0.006967034171656184,-0.00786376576091798,-0.0018509241650419873,-0.004845916841010812,-0.0025764331128129694,-0.0009014452525429456,-0.007313656860955831,-0.004978216944989336,-0.0049010135137429545,-0.0056429513392450455,-0.004646720892179937,-0.0049059290494294985,-0.0012911310133672381
+52.420811,4.907463,0.003648166486662236,0.0013231214943687764,0.001729987221470059,0.00392087681669,0.0023388654499007615,0.0027774649616547913,0.00057500328485124,0.0022944416396306817,0.004968268183338904,-0.0003283402120744695,0.0011370385207604692,0.004034008879848297,0.0010892619585285348,-0.0007361748864895595,0.002223599604490965,0.002582203243701276,0.0008077611707566876,0.0021365850107360664,0.0031910633458811957,0.003320216110416103,0.002090659821810673,0.0024509585782422428,0.00405510223959176,0.0037646857376243707,0.0004418940499104991,0.0018135209277554214,0.0025045493132736735,0.002504336697208452,0.005352069497100539,0.0027843497118283703,0.0010849411846280536,0.0007816181739720637,0.0009313399394585786,0.0010297875691658706,0.0030719895000248395,-0.0003054388273402587,0.000603497639708699,-0.0001198050296586544,-8.83698356805156e-05,-0.0028762087807911885,0.000988244256875119,0.0021833273178313095,-0.00043567558108071496,0.00035730770390643733,0.0013121693329136265,0.002199711725844645,0.0023042830895193857,-0.00026703417165618393,-0.0014637657609179802,0.0031490758349580128,0.0021540831589891883,0.0025235668871870305,0.0026985547474570543,-0.0010136568609558309,-0.0002782169449893352,0.0010989864862570454,5.7048660754954745e-05,0.0002532791078200628,0.0016940709505705014,0.003008868986632762
+52.420779,4.907607,0.006048166486662236,0.0005231214943687765,0.002629987221470059,0.0029208768166899997,0.005038865449900761,0.0005774649616547916,0.0018750032848512401,0.0029944416396306813,0.005068268183338904,0.0012716597879255302,0.002437038520760469,0.004034008879848297,0.0056892619585285345,0.0023638251135104406,0.003623599604490965,0.005982203243701276,0.008807761170756689,0.004036585010736066,0.004891063345881195,0.005820216110416103,0.0047906598218106725,0.004550958578242242,0.006355102239591761,0.005864685737624371,0.004041894049910499,0.004613520927755421,0.004904549313273674,0.004304336697208452,0.00745206949710054,0.0035843497118283702,0.004184941184628054,0.002181618173972064,0.004431339939458578,0.004129787569165871,0.0020719895000248395,0.0005945611726597415,0.002103497639708699,0.0011801949703413455,0.0015116301643194846,0.0008237912192088112,0.002188244256875119,0.004383327317831309,0.0027643244189192845,0.0019573077039064376,0.0015121693329136266,0.003999711725844645,0.004604283089519386,0.001732965828343816,-0.00036376576091798037,0.006249075834958012,0.004754083158989188,0.004923566887187031,0.004598554747457054,0.001086343139044169,0.00032178305501066477,0.0014989864862570454,0.003657048660754955,0.004053279107820063,0.003594070950570501,0.009508868986632762
+52.420834,4.906939,0.00034816648666223613,-0.00037687850563122356,-0.001570012778529941,-0.00077912318331,-0.0007611345500992386,-0.0015225350383452085,-0.00302499671514876,-0.0013055583603693182,-0.0006317318166610963,-0.00462834021207447,-0.0020629614792395307,-0.000865991120151703,-0.002810738041471465,-0.00573617488648956,-0.003376400395509035,-0.0019177967562987233,-0.0029922388292433124,-0.0033634149892639333,-0.0020089366541188045,-0.001579783889583897,-0.0013093401781893272,-0.003449041421757757,-0.0010448977604082393,-0.0025353142623756294,-0.004958105950089501,-0.0021864790722445787,-0.0027954506867263265,-0.002195663302791548,-0.00024793050289946116,-0.0011156502881716297,-0.0027150588153719464,-0.005318381826027936,-0.0025686600605414212,-0.0025702124308341293,-0.0005280104999751604,-0.005605438827340259,-0.0032965023602913013,-0.004819805029658654,-0.0035883698356805153,-0.005076208780791189,-0.002911755743124881,-0.0012166726821686905,-0.004435675581080715,-0.007142692296093562,-0.0049878306670863735,-0.004000288274155355,-0.003595716910480614,-0.006967034171656184,-0.00736376576091798,-0.0018509241650419873,-0.0028459168410108118,0.0005235668871870306,-0.0022014452525429455,-0.005713656860955831,-0.0042782169449893355,-0.004701013513742955,-0.003942951339245045,-0.003346720892179937,-0.0026059290494294986,-0.002691131013367238
+52.420818,4.90695,0.0006481664866622362,-0.0013768785056312237,-0.001870012778529941,2.0876816689999883e-05,-0.0014611345500992387,-0.0011225350383452085,-0.00122499671514876,-0.0011055583603693181,0.0031682681833389036,-0.0032283402120744696,-0.0017629614792395308,-0.001065991120151703,-0.0018107380414714653,-0.0029361748864895594,-0.0030764003955090348,-0.0029177967562987236,-0.0027922388292433123,-0.0034634149892639335,-0.0031089366541188043,-0.001779783889583897,-0.0015093401781893273,-0.0025490414217577573,0.0006551022395917606,-0.0020353142623756293,-0.005658105950089501,-0.0015864790722445784,-0.0026954506867263267,-0.002195663302791548,0.001152069497100539,-0.0013156502881716298,-0.0008150588153719463,-0.0022183818260279363,-0.0022686600605414213,-0.0024702124308341295,-0.0005280104999751604,-0.006105438827340258,-0.003196502360291301,-0.006119805029658654,-0.0036883698356805156,-0.005376208780791189,-0.003311755743124881,-0.0015166726821686904,-0.004835675581080715,-0.0013426922960935626,-0.007387830667086374,-0.0042002882741553555,-0.0043957169104806145,-0.006867034171656183,-0.008163765760917981,-0.0013509241650419873,-0.0030459168410108114,-0.00027643311281296944,-0.0018014452525429456,-0.006413656860955831,-0.005378216944989336,-0.0033010135137429546,-0.0032429513392450452,-0.003346720892179937,-0.004005929049429498,-0.0020911310133672383
+52.420684,4.907686,0.002648166486662236,0.0005231214943687765,0.0006299872214700591,0.00272087681669,0.0006388654499007614,0.0018774649616547915,0.0003750032848512399,-0.00040555836036931824,0.00046826818333890394,-0.0014283402120744695,0.003537038520760469,-0.00046599112015170306,-0.002210738041471465,-0.0035361748864895593,0.0011235996044909647,-0.0008177967562987235,-9.223882924331238e-05,0.00023658501073606654,0.0021910633458811953,-0.0014797838895838971,0.001790659821810673,-0.0020490414217577573,0.0007551022395917604,0.0021646857376243704,-0.001158105950089501,0.0012135209277554216,-0.0003954506867263266,0.002204336697208452,0.005352069497100539,0.0030843497118283702,0.0013849411846280537,0.0028816181739720636,0.0006313399394585786,0.0002297875691658705,0.0029719895000248396,-0.0009054388273402586,0.001703497639708699,0.0013801949703413456,0.0014116301643194843,-0.0015762087807911886,0.0017882442568751189,0.009183327317831308,0.0013643244189192848,0.004957307703906438,0.0026121693329136265,0.0023997117258446445,0.0042042830895193855,-0.003167034171656184,-0.00366376576091798,0.005749075834958012,0.0030540831589891885,0.002823566887187031,0.0009985547474570544,-0.001113656860955831,0.0004217830550106648,0.002398986486257045,0.0010570486607549548,0.0004532791078200628,0.0023940709505705015,0.002908868986632762
+52.420603,4.907497,0.0013481664866622362,-0.0015768785056312234,0.0007299872214700591,0.00202087681669,0.0005388654499007613,-0.0021225350383452086,0.0003750032848512399,0.0012944416396306817,0.0023682681833389037,-0.0037283402120744692,0.00423703852076047,0.003934008879848297,0.003989261958528534,0.0005638251135104406,0.002723599604490965,0.005282203243701276,0.0015077611707566875,0.003036585010736066,0.0030910633458811954,0.002720216110416103,0.005290659821810673,0.0009509585782422425,0.0008551022395917604,0.0032646857376243707,0.001241894049910499,0.0043135209277554215,0.0036045493132736734,0.002404336697208452,0.0021520694971005386,0.0035843497118283702,-0.0009150588153719463,0.0006816181739720639,0.0007313399394585785,-0.0009702124308341295,0.0027719895000248396,-0.0003054388273402587,0.002903497639708699,0.00028019497034134557,0.0015116301643194846,0.002723791219208811,0.0015882442568751188,0.0033833273178313097,0.0010643244189192849,-4.2692296093562636e-05,0.0032121693329136263,0.003999711725844645,0.003204283089519386,-0.000167034171656184,0.00013623423908201964,0.004949075834958013,0.003654083158989189,0.0019235668871870307,0.004498554747457055,-0.00021365686095583094,0.0009217830550106648,0.0013989864862570455,0.001957048660754955,0.0007532791078200627,0.0014940709505705013,0.002908868986632762
+52.420472,4.908231,0.003148166486662236,0.0025231214943687765,-0.0002700127785299409,0.00352087681669,0.0036388654499007614,0.0006774649616547915,0.0020750032848512396,0.004094441639630682,0.004868268183338903,0.00227165978792553,0.002937038520760469,0.001734008879848297,0.0007892619585285348,-0.0015361748864895595,0.0007235996044909648,-0.0026177967562987237,-0.0022922388292433123,-0.0016634149892639336,-0.0038089366541188044,0.001020216110416103,0.002090659821810673,0.0007509585782422424,0.0033551022395917605,-0.0006353142623756295,-0.0013581059500895009,0.0031135209277554214,0.00010454931327367339,0.0008043366972084521,0.004052069497100539,0.00318434971182837,0.0005849411846280537,0.0007816181739720637,0.0018313399394585786,0.0016297875691658706,0.00417198950002484,-0.0001054388273402586,0.0009034976397086991,-0.0010198050296586544,0.0009116301643194845,-0.0010762087807911886,0.002488244256875119,0.0007833273178313093,0.001264324418919285,0.0005573077039064374,-0.0007878306670863733,-0.001000288274155355,0.0010042830895193857,-0.0017670341716561839,-0.00356376576091798,0.0026490758349580123,0.0021540831589891883,0.0019235668871870307,0.0021985547474570543,-0.000113656860955831,0.0011217830550106648,0.0006989864862570454,0.0009570486607549547,0.0005532791078200628,0.0022940709505705013,0.004508868986632762
+52.420324,4.908514,0.0017481664866622361,0.0016231214943687763,-0.000970012778529941,0.0017208768166899998,0.003838865449900761,-0.0009225350383452085,-0.00022499671514876007,-0.007005558360369318,0.0017682681833389039,-0.0025283402120744695,0.0006370385207604692,-0.00016599112015170292,-0.0026107380414714648,-0.0007361748864895595,-7.640039550903516e-05,-0.004717796756298723,-0.005192238829243313,-0.006163414989263934,-0.0024089366541188042,-0.003279783889583897,0.0012906598218106729,-0.0005490414217577574,0.0012551022395917604,-0.00893531426237563,-0.0005581059500895009,0.004713520927755422,-0.0024954506867263266,4.336697208452112e-06,0.0003520694971005389,-0.0009156502881716296,-0.0006150588153719463,0.00028161817397206394,-0.0003686600605414214,-0.0005702124308341295,-0.0013280104999751604,-0.0026054388273402587,-0.002996502360291301,-0.0024198050296586546,-0.004388369835680516,-0.005676208780791189,0.0001882442568751189,-0.0038166726821686906,-0.000935675581080715,-0.0036426922960935623,-0.0012878306670863736,-0.003700288274155355,-0.0019957169104806143,-0.001967034171656184,-0.00536376576091798,0.0036490758349580123,0.0013540831589891886,-0.0011764331128129692,0.0002985547474570543,-0.003013656860955831,-0.0015782169449893354,-0.0010010135137429545,-0.0005429513392450453,-0.0003467208921799372,0.0007940709505705015,0.0011088689866327619
+52.420379,4.908056,0.004748166486662236,0.0013231214943687764,0.0011299872214700591,0.00152087681669,0.002838865449900761,0.0011774649616547916,0.0009750032848512399,0.002194441639630682,0.006668268183338905,-0.0015283402120744695,0.0006370385207604692,-0.00046599112015170306,-0.0008107380414714651,-0.0030361748864895597,0.0006235996044909648,-0.0007177967562987234,-0.0018922388292433126,0.0007365850107360664,0.0005910633458811955,-0.0005797838895838973,-0.0016093401781893271,-0.005449041421757758,0.0027551022395917607,-0.0004353142623756294,-0.003358105950089501,0.0010135209277554215,-0.00019545068672632664,0.0005043366972084522,0.002552069497100539,0.0005843497118283702,0.0001849411846280537,0.0035816181739720637,0.0002313399394585786,0.00032978756916587047,0.0016719895000248397,-0.0018054388273402587,-0.0020965023602913012,0.00048019497034134566,-0.0017883698356805156,-0.004676208780791188,-0.0007117557431248811,-0.0004166726821686905,-0.0012356755810807151,-0.0013426922960935626,-0.0023878306670863736,-0.0012002882741553552,-0.0018957169104806143,-0.004367034171656184,-0.00566376576091798,0.0006490758349580126,-0.0008459168410108115,0.0018235668871870304,0.0023985547474570544,-0.001113656860955831,-0.0003782169449893352,-0.0001010135137429546,-0.0006429513392450453,0.0009532791078200628,0.0008940709505705015,0.002008868986632762
+52.420248,4.908864,0.002948166486662236,0.0020231214943687765,0.001929987221470059,0.0022208768166899996,0.0019388654499007613,0.004277464961654791,0.0020750032848512396,0.0014944416396306818,0.0042682681833389035,-0.0020283402120744695,0.002637038520760469,0.000734008879848297,-0.0005107380414714651,-0.0008361748864895595,0.0011235996044909647,8.220324370127643e-05,0.0006077611707566875,0.0015365850107360664,0.0006910633458811954,0.001020216110416103,0.0033906598218106728,5.0958578242242536e-05,0.0023551022395917605,0.0026646857376243704,-0.001658105950089501,0.0030135209277554215,0.0011045493132736733,0.003904336697208452,0.006252069497100539,0.0024843497118283704,-0.0007150588153719464,0.0022816181739720638,0.0016313399394585785,-0.0004702124308341295,0.007871989500024839,-0.0025054388273402584,0.000103497639708699,0.0014801949703413455,0.0008116301643194845,-0.005076208780791189,0.001988244256875119,0.0009833273178313094,-3.5675581080715e-05,-0.0010426922960935627,0.0015121693329136266,-2.882741553550828e-07,0.0008042830895193856,-0.000167034171656184,-0.00406376576091798,0.0029490758349580122,0.0021540831589891883,0.0023235668871870304,0.0018985547474570544,-0.001713656860955831,0.0002217830550106648,-0.0012010135137429546,-4.295133924504526e-05,0.006853279107820063,-0.0035059290494294988,0.004208868986632762
+52.420313,4.908237,0.004648166486662236,0.0025231214943687765,0.0007299872214700591,0.00802087681669,0.0019388654499007613,0.0010774649616547916,0.00067500328485124,0.0015944416396306818,0.005168268183338903,-0.0013283402120744697,0.002337038520760469,0.0034340088798482968,-0.00021073804147146515,-0.0006361748864895595,-0.0007764003955090351,-1.7796756298723562e-05,-0.0010922388292433124,-0.00026341498926393353,0.0008910633458811955,0.0018202161104161028,0.001990659821810673,0.0012509585782422424,0.0007551022395917604,0.00046468573762437055,-0.0025581059500895008,0.0009135209277554214,0.0007045493132736734,0.002104336697208452,0.002252069497100539,0.0027843497118283703,0.0008849411846280537,-0.0007183818260279362,0.0014313399394585784,0.0005297875691658706,0.0009719895000248396,-0.0001054388273402586,-0.001496502360291301,0.0003801949703413456,-0.0011883698356805156,-0.0028762087807911885,0.001388244256875119,0.0007833273178313093,0.0001643244189192851,-0.0017426922960935625,0.00041216933291362656,-0.0009002882741553551,-0.0010957169104806143,-0.001967034171656184,-0.00366376576091798,0.0035490758349580125,-0.0014459168410108113,0.0007235668871870306,0.004898554747457055,0.0002863431390441691,-0.0018782169449893353,0.0008989864862570453,0.0018570486607549547,0.0010532791078200628,0.0013940709505705013,0.001708868986632762
+52.420231,4.908468,0.0025481664866622363,-0.0011768785056312236,-0.0002700127785299409,0.0021208768166899998,0.0021388654499007614,0.0013774649616547915,-0.00142499671514876,0.0009944416396306817,0.0008682681833389039,-0.0022283402120744696,0.00043703852076046914,0.001034008879848297,0.0015892619585285348,-0.0033361748864895596,0.00042359960449096475,-0.0023177967562987237,-0.0015922388292433124,-0.0017634149892639334,-0.0003089366541188046,0.002020216110416103,-0.000409340178189327,-0.0015490414217577575,0.0011551022395917606,-0.00033531426237562955,-0.002358105950089501,0.0024135209277554213,0.00030454931327367343,-0.001195663302791548,0.002252069497100539,0.0008843497118283702,-0.0012150588153719464,-0.00041838182602793616,-0.0012686600605414213,-0.0007702124308341296,-2.801049997516042e-05,-0.0031054388273402587,-0.000296502360291301,-0.0036198050296586542,-0.0012883698356805154,-0.0051762087807911885,0.0004882442568751189,0.0015833273178313095,-0.001835675581080715,-0.002842692296093563,0.00021216933291362658,-0.0011002882741553551,-0.0004957169104806144,-0.002167034171656184,-0.00526376576091798,-5.092416504198739e-05,-0.0003459168410108115,0.0017235668871870306,0.0009985547474570544,-0.003413656860955831,0.00032178305501066477,0.0004989864862570455,-0.0018429513392450453,-0.0007467208921799371,0.0013940709505705013,0.001408868986632762
+52.420127,4.909014,0.0020481664866622363,0.0023231214943687764,-0.002270012778529941,0.0022208768166899996,0.0013388654499007615,-0.0014225350383452085,-0.00192499671514876,0.0006944416396306818,0.0036682681833389037,-0.004028340212074469,3.7038520760469205e-05,0.000534008879848297,-0.001410738041471465,-0.002836174886489559,-0.0004764003955090351,-0.0010177967562987236,-0.0004922388292433125,-0.0011634149892639336,-0.0007089366541188044,0.0004202161104161028,0.0015906598218106728,-4.904142175775751e-05,0.0016551022395917604,6.468573762437053e-05,-0.0025581059500895008,0.0020135209277554215,4.549313273673455e-06,0.004004336697208452,0.004152069497100539,0.0011843497118283702,-0.00041505881537194634,-0.001618381826027936,-0.0012686600605414213,-0.0006702124308341295,-0.0007280104999751604,-0.0016054388273402586,-0.001596502360291301,-0.0012198050296586545,-0.0029883698356805155,-0.005076208780791189,0.0008882442568751189,0.0004833273178313094,-3.5675581080715e-05,-0.0006426922960935626,0.0010121693329136266,-0.0003002882741553551,-0.0016957169104806142,-0.002967034171656184,-0.00526376576091798,0.0014490758349580126,0.0020540831589891885,0.0018235668871870304,0.0015985547474570544,-0.002213656860955831,0.0009217830550106648,9.898648625704542e-05,0.003257048660754955,0.0007532791078200627,0.0026940709505705015,0.0015088689866327618
+52.42006,4.909165,0.002148166486662236,-0.0009768785056312236,-0.002670012778529941,-0.0001791231833100002,0.0001388654499007613,-0.0005225350383452085,-0.00142499671514876,0.0007944416396306818,0.0028682681833389037,-0.0021283402120744694,0.0003370385207604692,0.000634008879848297,0.00018926195852853487,-0.0027361748864895598,-0.0015764003955090352,-0.002017796756298724,-0.0015922388292433124,-0.0010634149892639335,-0.00010893665411880449,-0.0004797838895838972,0.0010906598218106728,-0.0015490414217577575,0.0006551022395917606,6.468573762437053e-05,-0.002758105950089501,0.0013135209277554214,0.0011045493132736733,-0.0002956633027915479,0.0038520694971005387,0.0007843497118283703,-0.0009150588153719463,-0.002418381826027936,-0.0016686600605414215,-0.0007702124308341296,-0.0007280104999751604,-0.0028054388273402583,0.000503497639708699,-0.0015198050296586544,-0.0031883698356805156,-0.0041762087807911885,-0.0008117557431248811,-0.0008166726821686905,-0.0006356755810807151,-0.0010426922960935627,-0.0017878306670863736,-0.002900288274155355,-0.0013957169104806143,-0.005167034171656184,-0.00446376576091798,-0.0008509241650419873,5.408315898918848e-05,-0.0004764331128129693,-0.0017014452525429458,-0.0045136568609558305,-0.0011782169449893352,-0.0039010135137429545,-0.0008429513392450453,-0.0003467208921799372,-0.0010059290494294985,0.0005088689866327619
+52.420095,4.908812,0.002348166486662236,-0.0028768785056312233,-0.001870012778529941,0.0017208768166899998,0.0017388654499007612,0.0030774649616547916,-0.00152499671514876,0.00019444163963068176,0.0016682681833389038,-0.006328340212074469,0.0003370385207604692,-0.0006659911201517029,-0.0012107380414714652,-0.00433617488648956,-0.001876400395509035,-0.0006177967562987236,-0.004092238829243313,-0.0018634149892639334,-0.0016089366541188043,-0.0010797838895838974,0.001890659821810673,-0.0011490414217577574,0.00015510223959176034,0.0007646857376243705,-0.002258105950089501,1.352092775542147e-05,4.549313273673455e-06,4.336697208452112e-06,0.001452069497100539,0.0024843497118283704,-0.0014150588153719462,-0.001218381826027936,0.00013133993945857854,-0.0009702124308341295,-0.0016280104999751605,-0.0036054388273402587,0.000303497639708699,-0.0020198050296586544,-0.0011883698356805156,-0.0037762087807911887,0.0005882442568751189,-1.667268216869056e-05,-0.002235675581080715,-0.0017426922960935625,-0.0001878306670863735,-0.001400288274155355,-0.0002957169104806143,-0.005767034171656184,-0.0045637657609179805,0.0007490758349580125,-0.0001459168410108114,-0.0022764331128129695,0.00019855474745705435,-0.002513656860955831,-0.0002782169449893352,-0.0007010135137429545,0.0007570486607549547,0.0011532791078200629,0.0010940709505705014,0.000808868986632762
+52.420121,4.908586,0.004248166486662236,0.0011231214943687763,-0.0012700127785299409,0.00502087681669,0.003138865449900761,0.0020774649616547916,0.00067500328485124,0.0030944416396306816,0.004068268183338904,-0.0010283402120744695,0.0008370385207604693,0.001134008879848297,0.0007892619585285348,-0.0010361748864895597,0.00042359960449096475,0.0010822032437012765,-0.0011922388292433125,0.0007365850107360664,0.00019106334588119548,0.0019202161104161027,0.003290659821810673,-0.00014904142175775755,0.0035551022395917606,0.0014646857376243705,-0.001258105950089501,0.0028135209277554214,0.0014045493132736734,0.0017043366972084523,0.004352069497100539,0.00238434971182837,0.0021849411846280534,-0.0003183818260279361,0.0014313399394585784,0.0011297875691658706,0.0024719895000248396,0.0008945611726597414,0.001803497639708699,0.0010801949703413455,-8.83698356805156e-05,-0.0022762087807911887,0.001388244256875119,0.0028833273178313096,-0.00033567558108071513,-0.0024426922960935626,1.2169332913626596e-05,9.971172584464496e-05,0.0008042830895193856,-0.002867034171656184,-0.00286376576091798,0.0016490758349580125,0.0021540831589891883,0.0014235668871870307,9.85547474570543e-05,-0.0010136568609558309,0.0012217830550106646,-0.0010010135137429545,0.002257048660754955,0.0010532791078200628,0.0027940709505705013,0.003608868986632762
+52.419982,4.909505,0.00034816648666223613,0.004223121494368776,-0.005970012778529941,-0.0005791231833100002,0.003538865449900761,-0.0010225350383452085,0.00427500328485124,-0.0035055583603693184,0.006768268183338904,-0.0006283402120744695,-0.0008629614792395309,-0.00026599112015170297,-0.0009107380414714652,-0.0020361748864895597,-0.003376400395509035,-0.0011177967562987236,-0.0013922388292433123,-0.0008634149892639334,0.0018910633458811953,0.0012202161104161028,0.000490659821810673,-4.904142175775751e-05,0.003955102239591761,0.0015646857376243706,-0.001458105950089501,0.0014135209277554215,-0.0004954506867263267,0.0051043366972084525,0.004452069497100539,0.0015843497118283702,0.0005849411846280537,-0.0006183818260279361,0.0018313399394585786,0.0031297875691658704,0.0022719895000248395,-0.00040543882734025874,-0.0006965023602913009,0.002380194970341346,0.0005116301643194843,-0.004476208780791189,-0.001111755743124881,0.0010833273178313095,-0.005135675581080715,0.0012573077039064373,0.0021121693329136265,0.0003997117258446449,4.283089519385657e-06,-0.005367034171656184,-0.00676376576091798,-0.0019509241650419876,-0.0013459168410108115,0.002823566887187031,0.0036985547474570543,0.003286343139044169,-0.003078216944989335,-0.0025010135137429547,0.0005570486607549546,0.006153279107820063,0.004594070950570502,0.002808868986632762
+52.419937,4.909448,0.0025481664866622363,-0.0007768785056312236,0.001329987221470059,0.0025208768166899995,0.0010388654499007613,0.0012774649616547915,0.00067500328485124,0.0017944416396306817,0.004668268183338904,-0.0012283402120744696,0.003037038520760469,0.0021340088798482973,-0.0006107380414714651,0.00046382511351044037,0.0019235996044909647,0.0011822032437012763,-0.0016922388292433125,0.0009365850107360665,0.00039106334588119546,0.00022021611041610282,0.005990659821810673,-0.0008490414217577574,0.004655102239591761,0.0024646857376243703,-0.000958105950089501,0.0043135209277554215,0.0017045493132736736,0.0018043366972084521,0.0037520694971005385,0.0035843497118283702,0.0007849411846280537,0.0006816181739720639,0.0008313399394585786,0.0001297875691658705,0.0015719895000248394,-0.0013054388273402587,0.001103497639708699,0.00028019497034134557,-0.0011883698356805156,-0.0017762087807911887,0.0017882442568751189,0.0015833273178313095,0.0008643244189192848,-0.00034269229609356256,0.0018121693329136265,0.0006997117258446448,0.0018042830895193857,-0.0023670341716561837,-0.0014637657609179802,0.0025490758349580125,0.0030540831589891885,0.0017235668871870306,-0.00010144525254294568,-0.000813656860955831,0.0012217830550106646,0.0014989864862570454,-0.002342951339245045,0.001953279107820063,0.0027940709505705013,0.0011088689866327619
+52.419895,4.90927,0.0038481664866622358,-0.00027687850563122356,-0.00037001277852994095,0.0026208768166899998,0.0016388654499007614,-0.0011225350383452085,-0.00062499671514876,-0.00010555836036931822,0.0038682681833389037,0.0004716597879255305,-0.0001629614792395308,0.003534008879848297,0.0004892619585285348,-0.0025361748864895593,-0.0010764003955090352,0.00038220324370127646,-0.0006922388292433124,-0.0004634149892639335,-0.0004089366541188045,-0.00027978388958389724,0.001390659821810673,-0.0028490414217577573,0.00015510223959176034,-0.00033531426237562955,-0.0025581059500895008,-0.0006864790722445786,0.0016045493132736733,-0.002895663302791548,0.0007520694971005388,-0.0010156502881716299,-0.0023150588153719462,-0.003418381826027936,-0.0024686600605414214,-0.0035702124308341293,-0.0037280104999751606,-0.004405438827340258,-0.002196502360291301,-0.0034198050296586546,-0.0038883698356805157,-0.006076208780791188,-0.00021175574312488107,-0.0004166726821686905,-0.004835675581080715,-0.0029426922960935627,0.0014121693329136266,-0.0015002882741553551,-0.0005957169104806143,-0.0032670341716561843,-0.00506376576091798,0.0007490758349580125,-0.0014459168410108113,-0.0009764331128129695,-0.0009014452525429456,-0.004213656860955831,-0.0021782169449893352,-0.0008010135137429546,0.0016570486607549546,-0.004046720892179937,-0.003905929049429499,-0.0024911310133672385
+52.419831,4.90974,0.0002481664866622363,0.0029231214943687767,-0.003470012778529941,-0.0008791231833100003,0.0001388654499007613,-0.0017225350383452084,-0.0052249967151487605,-0.0010055583603693183,-0.0014317318166610963,-0.005028340212074469,-0.0025629614792395308,-0.003265991120151703,-0.003510738041471465,-0.006136174886489559,-0.003576400395509035,-0.0029177967562987236,-0.004492238829243312,-0.003663414989263933,-0.0027089366541188046,-0.0011797838895838972,-0.0003093401781893272,-0.0072490414217577575,0.00015510223959176034,-0.0028353142623756293,-0.005358105950089501,-0.0019864790722445786,-0.003095450686726327,-0.0022956633027915478,0.002752069497100539,-0.00241565028817163,-0.0024150588153719465,-0.005218381826027936,-0.003968660060541421,-0.00637021243083413,-0.0030280104999751605,-0.002705438827340259,-0.004896502360291301,-0.0030198050296586544,-0.005488369835680515,-0.008276208780791189,-0.0046117557431248814,-0.0038166726821686906,-0.006435675581080715,-0.006742692296093563,-0.007087830667086374,-0.0038002882741553553,-0.005295716910480614,-0.007967034171656184,-0.00696376576091798,-0.0023509241650419874,-0.003245916841010812,-0.006176433112812969,-0.0019014452525429458,-0.006213656860955831,-0.003978216944989336,-0.004601013513742955,-0.004742951339245046,-0.004246720892179937,-0.005105929049429498,-0.002591131013367238
+52.419788,4.909972,0.0019481664866622362,-0.0029768785056312236,-0.003270012778529941,-0.0003791231833100001,0.002238865449900761,0.0010774649616547916,-0.00012499671514876003,-0.0005055583603693183,0.001368268183338904,-0.00362834021207447,-0.002862961479239531,-0.0033659911201517033,-0.002410738041471465,-0.005436174886489559,-0.0041764003955090355,-0.0038177967562987233,-0.004292238829243312,-0.0035634149892639338,-0.0034089366541188043,-0.0011797838895838972,-0.001709340178189327,-0.004149041421757757,-0.0004448977604082395,-0.0019353142623756295,-0.0037581059500895013,0.00011352092775542152,-0.0010954506867263264,-0.001395663302791548,0.0001520694971005388,-0.0001156502881716297,-0.0029150588153719465,-0.003418381826027936,-0.0027686600605414213,0.0001297875691658705,-0.0026280104999751603,-0.004405438827340258,-0.005396502360291301,-0.0031198050296586547,-0.0025883698356805153,-0.006176208780791189,-0.002111755743124881,-0.0034166726821686904,-0.003035675581080715,-0.0031426922960935627,-0.0029878306670863735,-0.007300288274155355,-0.004595716910480614,-0.005367034171656184,-0.0045637657609179805,-0.0008509241650419873,-0.002945916841010812,-0.0019764331128129696,0.0008985547474570543,-0.005213656860955831,-0.001778216944989335,-0.0010010135137429545,-0.0006429513392450453,0.0008532791078200627,0.0002940709505705015,-0.00019113101336723807
+52.419801,4.909775,0.0007481664866622362,-0.0025768785056312234,-0.002870012778529941,-0.00257912318331,-0.0010611345500992388,0.0006774649616547915,-0.00332499671514876,-0.00040555836036931824,0.0007682681833389039,-0.0021283402120744694,-6.29614792395308e-05,-0.0030659911201517034,-0.002910738041471465,-0.0023361748864895596,-0.001976400395509035,-0.0026177967562987237,-0.005192238829243313,-0.0037634149892639334,-0.0021089366541188043,-0.003779783889583897,-0.002309340178189327,-0.004149041421757757,-0.00034489776040823967,-0.0017353142623756294,-0.005158105950089501,-0.00028647907224457845,-0.0029954506867263266,-0.0005956633027915479,0.001152069497100539,-0.0025156502881716293,-0.0028150588153719462,-0.003318381826027936,-0.002868660060541421,-0.00597021243083413,-0.0020280104999751605,-0.0042054388273402585,-0.0032965023602913013,-0.005219805029658654,-0.004588369835680515,-0.0058762087807911895,-0.003211755743124881,-0.0019166726821686904,-0.004835675581080715,-0.003842692296093563,-0.004587830667086373,-0.004800288274155355,-0.002395716910480614,-0.006567034171656183,-0.00566376576091798,-0.0027509241650419875,-0.004545916841010812,-0.0023764331128129693,-0.002301445252542946,-0.006113656860955831,-0.005478216944989335,-0.004201013513742954,-0.002442951339245045,-0.001146720892179937,-0.0029059290494294985,-0.0009911310133672382
+52.419764,4.910012,0.0008481664866622363,-0.0019768785056312236,-0.002270012778529941,0.0012208768166899998,0.0012388654499007612,-0.0006225350383452085,0.0015750032848512398,0.0018944416396306817,0.005568268183338904,-0.00552834021207447,0.0003370385207604692,-0.002265991120151703,-0.0010107380414714651,-0.0019361748864895594,0.0011235996044909647,-0.0019177967562987233,-0.0014922388292433124,0.0025365850107360666,0.0011910633458811954,-0.0005797838895838973,0.002990659821810673,-0.0021490414217577576,0.0016551022395917604,0.0005646857376243705,-0.000658105950089501,0.00021352092775542134,-0.0002954506867263266,0.0009043366972084522,0.002252069497100539,0.00388434971182837,-0.0012150588153719464,0.000881618173972064,0.0006313399394585786,0.0005297875691658706,0.0015719895000248394,0.0003945611726597414,-0.000396502360291301,-0.0014198050296586546,-0.0010883698356805155,-0.003976208780791189,-1.1755743124881087e-05,0.0009833273178313094,-0.001335675581080715,-0.0011426922960935625,0.0023121693329136266,0.0010997117258446448,-0.0019957169104806143,-0.003167034171656184,-0.00506376576091798,0.0007490758349580125,-0.0014459168410108113,0.00512356688718703,0.0016985547474570543,-0.003713656860955831,-0.003878216944989335,-0.0008010135137429546,0.004157048660754954,0.0009532791078200628,0.0024940709505705014,0.001708868986632762
+52.419792,4.909491,0.006248166486662236,0.0035231214943687765,0.003729987221470059,0.006120876816689999,0.0043388654499007615,0.0034774649616547914,0.00427500328485124,0.003994441639630681,0.006368268183338904,0.0024716597879255306,0.00653703852076047,0.007934008879848298,0.005089261958528535,0.004063825113510441,0.004823599604490965,0.0037822032437012766,0.004407761170756687,0.005236585010736066,0.006291063345881195,0.005220216110416103,0.010390659821810672,0.005750958578242243,0.00845510223959176,0.0076646857376243705,0.004241894049910499,0.006613520927755421,0.007004549313273674,0.004904336697208452,0.008852069497100538,0.00628434971182837,0.004684941184628054,0.001981618173972064,0.002731339939458579,0.005729787569165871,0.006071989500024839,0.005294561172659741,0.004803497639708699,0.0038801949703413455,0.0033116301643194845,0.0028237912192088112,0.004988244256875119,0.0057833273178313094,0.0052643244189192855,0.006257307703906438,0.006112169332913626,0.006899711725844646,0.006304283089519386,0.0056329658283438165,0.0034362342390820196,0.0073490758349580125,0.004954083158989189,0.00652356688718703,0.008398554747457054,0.003986343139044169,0.005621783055010664,0.0002989864862570454,0.004057048660754955,0.010853279107820062,0.005294070950570502,0.006908868986632762
+52.419772,4.909544,0.001248166486662236,-0.0010768785056312236,-0.000670012778529941,0.0016208768166899997,-0.0007611345500992386,-0.0004225350383452085,-0.00072499671514876,-0.00010555836036931822,0.0033682681833389037,-0.0007283402120744696,0.0007370385207604692,0.002834008879848297,-1.0738041471465142e-05,-0.0008361748864895595,0.0011235996044909647,-1.7796756298723562e-05,0.0005077611707566877,0.0019365850107360665,0.0038910633458811954,0.004920216110416103,0.004390659821810673,-0.0013490414217577574,0.0027551022395917607,0.0013646857376243705,-0.001158105950089501,0.0023135209277554214,0.0007045493132736734,-0.0009956633027915478,0.0018520694971005387,8.434971182837018e-05,-0.00041505881537194634,-0.002618381826027936,-0.0012686600605414213,-0.0011702124308341293,-0.0020280104999751605,-0.0032054388273402585,-0.001396502360291301,-0.0034198050296586546,-0.0033883698356805157,-0.0051762087807911885,-0.00011175574312488113,0.0020833273178313093,-0.001535675581080715,-0.0031426922960935627,0.0026121693329136265,0.002899711725844645,0.0011042830895193858,-0.0032670341716561843,-0.00406376576091798,-0.00015092416504198744,-0.0001459168410108114,0.0007235668871870306,0.0004985547474570544,-0.005113656860955831,-0.002978216944989335,-0.003201013513742955,-0.0016429513392450454,-0.003346720892179937,-0.0009059290494294986,-0.004291131013367238
+52.419664,4.910129,-5.1833513337763834e-05,-0.0029768785056312236,-0.002870012778529941,-0.00027912318331000025,-0.0007611345500992386,-0.0006225350383452085,-0.00222499671514876,-0.001505558360369318,0.0009682681833389037,-0.005628340212074469,-0.0011629614792395308,-0.0016659911201517032,-0.002510738041471465,-0.004836174886489559,-0.0025764003955090348,-0.003417796756298723,-0.0046922388292433125,-0.009063414989263933,-0.0027089366541188046,-0.0011797838895838972,-0.001209340178189327,-0.005049041421757758,-0.0010448977604082393,-0.0027353142623756294,-0.005058105950089501,-0.0007864790722445785,-0.0019954506867263266,-0.0022956633027915478,-0.00014793050289946117,-0.00951565028817163,-0.0025150588153719463,-0.004518381826027936,-0.002868660060541421,-0.0023702124308341292,-0.0027280104999751606,-0.004805438827340259,-0.0030965023602913012,-0.004619805029658654,-0.004188369835680515,-0.006776208780791189,-0.0014117557431248809,-0.0016166726821686904,-0.005435675581080715,-0.004142692296093563,-0.0036878306670863736,-0.0032002882741553555,-0.004095716910480615,-0.004667034171656184,-0.00776376576091798,-0.0022509241650419875,-0.0024459168410108116,-0.003576433112812969,-0.0031014452525429453,-0.005913656860955831,-0.003878216944989335,-0.004301013513742955,-0.0037429513392450453,-0.003346720892179937,-0.0029059290494294985,-0.002391131013367238
+52.41965,4.909833,0.0005481664866622362,-0.0027768785056312235,-0.000670012778529941,-0.00207912318331,-0.0029611345500992385,-0.0034225350383452085,-0.00662499671514876,-0.0016055583603693184,0.003768268183338904,-0.0013283402120744697,-6.29614792395308e-05,0.000334008879848297,-0.0009107380414714652,-0.0012361748864895595,0.0005235996044909648,-0.0007177967562987234,0.00020776117075668754,0.0006365850107360664,0.0045910633458811955,0.0007202161104161028,-0.002909340178189327,-0.0021490414217577576,0.00595510223959176,-0.0004353142623756294,-0.001458105950089501,0.0033135209277554215,-0.0014954506867263266,0.0017043366972084523,0.0012520694971005389,-0.0014156502881716296,-0.0006150588153719463,-0.006318381826027937,-0.0015686600605414212,-0.0013702124308341294,0.0036719895000248393,-0.005605438827340259,-0.001496502360291301,-0.0017198050296586545,-0.0021883698356805156,-0.004576208780791189,-0.0007117557431248811,0.0007833273178313093,-0.003035675581080715,-0.003842692296093563,0.004712169332913627,-0.002100288274155355,-0.00019571691048061434,-0.005767034171656184,-0.00556376576091798,0.0014490758349580126,0.0012540831589891886,-0.00467643311281297,-0.0005014452525429456,-0.005113656860955831,-0.003578216944989335,-0.006001013513742955,-0.004442951339245046,-0.0059467208921799375,-0.0030059290494294988,-0.002991131013367238
+52.419559,4.910486,0.0041481664866622366,-0.0034768785056312236,-0.000570012778529941,0.00332087681669,0.0026388654499007614,0.0016774649616547914,0.0013750032848512401,0.0008944416396306817,0.004968268183338904,-0.0016283402120744696,0.0013370385207604693,-0.00026599112015170297,0.00028926195852853483,-0.0032361748864895594,0.0003235996044909648,-0.0028177967562987233,-0.0025922388292433122,0.0001365850107360665,0.0012910633458811955,0.001020216110416103,0.001390659821810673,-0.0023490414217577577,0.00565510223959176,0.0037646857376243707,0.0006418940499104992,0.005113520927755421,0.0014045493132736734,0.0003043366972084521,0.003552069497100539,0.00448434971182837,0.0001849411846280537,0.0010816181739720637,0.0008313399394585786,0.0008297875691658705,-0.0001280104999751604,-0.002005438827340259,0.001603497639708699,0.00018019497034134563,0.0013116301643194845,-0.0005762087807911888,0.0023882442568751187,0.0003833273178313095,-0.0017356755810807151,0.00015730770390643745,0.0017121693329136267,0.00029971172584464484,-0.0027957169104806143,-0.002967034171656184,-0.00666376576091798,-0.0018509241650419873,0.00045408315898918855,0.0003235668871870306,0.0027985547474570546,-0.001613656860955831,0.00032178305501066477,-0.0018010135137429544,-0.0018429513392450453,0.0005532791078200628,0.0012940709505705015,-0.0007911310133672381
+52.419596,4.909965,-0.00035183351333776375,-0.0012768785056312235,0.0008299872214700591,0.0008208768166899998,-0.0012611345500992386,-0.0012225350383452086,-0.00242499671514876,-5.558360369318171e-06,0.0028682681833389037,-0.0025283402120744695,-0.00036296147923953084,0.004434008879848296,-0.00031073804147146517,-0.0009361748864895595,0.003023599604490965,8.220324370127643e-05,0.0007077611707566875,0.0025365850107360666,0.0034910633458811956,0.003020216110416103,0.0031906598218106727,-0.0042490414217577575,0.0023551022395917605,-0.0008353142623756296,-0.003158105950089501,0.0005135209277554215,-0.0018954506867263268,-0.006395663302791547,0.0006520694971005389,-0.0025156502881716293,-0.0006150588153719463,-0.003918381826027936,-0.0024686600605414214,0.0010297875691658706,-0.00022801049997516046,-0.0031054388273402587,-0.001496502360291301,-0.0030198050296586544,-0.004688369835680516,-0.004776208780791189,-0.0008117557431248811,0.0007833273178313093,-0.002335675581080715,-0.0019426922960935626,0.0010121693329136266,0.0015997117258446448,-0.0005957169104806143,-0.003767034171656184,-0.0048637657609179805,-5.092416504198739e-05,-0.0018459168410108115,-0.0016764331128129692,-0.0017014452525429458,-0.005313656860955831,-0.002478216944989335,-0.0030010135137429547,-0.0043429513392450455,-0.004446720892179937,-0.0023059290494294987,-0.002591131013367238
+52.419566,4.910046,-0.0011518335133377637,-0.006176878505631224,0.001429987221470059,-0.0008791231833100003,-0.0035611345500992393,-0.004322535038345209,-0.00482499671514876,-0.0010055583603693183,-0.004631731816661096,-0.0024283402120744693,-0.0001629614792395308,0.001134008879848297,-0.003310738041471465,-0.0025361748864895593,0.0014235996044909649,-0.0019177967562987233,-0.0007922388292433125,-0.0025634149892639338,0.0021910633458811953,0.0022202161104161026,0.0006906598218106728,-0.0039490414217577575,0.0007551022395917604,-0.0023353142623756293,-0.0038581059500895007,0.0012135209277554216,-0.002595450686726327,-0.0044956633027915475,0.0010520694971005388,-0.00021565028817162974,-0.0027150588153719464,-0.005618381826027936,-0.0021686600605414215,-0.0014702124308341295,-0.00222801049997516,-0.004105438827340258,-0.0037965023602913013,-0.004519805029658654,-0.004488369835680515,-0.005776208780791188,-0.002511755743124881,-0.0009166726821686906,-0.003235675581080715,-0.004742692296093563,-0.0010878306670863735,0.0010997117258446448,-0.0012957169104806142,-0.003867034171656184,-0.006563765760917981,-0.0007509241650419875,-0.0018459168410108115,-0.0034764331128129696,-0.002001445252542946,-0.00831365686095583,-0.005378216944989336,-0.007501013513742954,-0.007942951339245045,-0.009946720892179937,-0.006405929049429498,-0.0024911310133672385
+52.419506,4.910156,-0.0016518335133377637,-0.0006768785056312236,0.0005299872214700591,0.00042087681668999985,-0.003461134550099239,-0.0015225350383452085,-0.00082499671514876,-0.0016055583603693184,0.004768268183338904,-0.00022834021207446958,0.0007370385207604692,0.005334008879848297,0.0015892619585285348,0.00556382511351044,0.004923599604490965,0.0026822032437012764,0.0029077611707566875,0.0041365850107360665,0.0075910633458811955,0.008720216110416103,0.005490659821810673,-0.0023490414217577577,0.0011551022395917606,0.0024646857376243703,-0.001158105950089501,0.0023135209277554214,-0.0002954506867263266,-0.0015956633027915477,0.001452069497100539,-0.0032156502881716294,0.003484941184628054,-0.006118381826027936,-0.0013686600605414215,0.0010297875691658706,-0.0012280104999751605,-0.0028054388273402583,-0.0030965023602913012,-0.005319805029658654,-0.006188369835680515,-0.004976208780791189,-0.001111755743124881,0.0037833273178313094,-0.004835675581080715,-0.0007426922960935626,0.005812169332913626,0.004499711725844645,0.0029042830895193855,-0.002467034171656184,-0.0026637657609179803,0.0019490758349580127,0.0008540831589891886,0.00022356688718703057,-0.0018014452525429456,-0.0045136568609558305,-0.003478216944989335,-0.004101013513742955,-0.005242951339245045,-0.006146720892179937,-0.004205929049429498,-0.0028911310133672386
+52.419414,4.91088,0.0017481664866622361,-0.005576878505631224,-0.000570012778529941,-0.006879123183310001,0.0006388654499007614,0.0017774649616547915,-0.00072499671514876,0.0006944416396306818,0.0015682681833389038,-0.00362834021207447,0.002537038520760469,-0.00046599112015170306,0.0009892619585285347,-0.00843617488648956,-0.008976400395509036,-0.0010177967562987236,-0.0015922388292433124,-0.00026341498926393353,0.00029106334588119547,0.002020216110416103,-0.0011093401781893271,-0.0023490414217577577,0.0021551022395917604,0.00016468573762437057,-0.0070581059500895,0.0007135209277554214,4.549313273673455e-06,-0.003995663302791548,0.0024520694971005385,-0.0008156502881716298,-0.0024150588153719465,-0.003318381826027936,-0.0034686600605414214,-0.0028702124308341292,-0.00432801049997516,-0.004605438827340259,-0.003696502360291301,-0.004219805029658654,-0.0033883698356805157,-0.004676208780791188,0.004688244256875119,0.0024833273178313095,-0.005935675581080714,-0.0037426922960935626,-0.005187830667086374,-0.00010028827415535513,-0.003995716910480614,-0.005467034171656184,-0.00466376576091798,-0.0034509241650419876,-0.002245916841010811,-0.002976433112812969,0.0020985547474570545,-0.007113656860955831,-0.002078216944989335,-0.0035010135137429547,-0.003642951339245045,-0.003146720892179937,-0.0036059290494294986,-0.0031911310133672386
+52.419492,4.910199,-0.001251833513337764,-0.0017768785056312235,-0.0012700127785299409,-0.0006791231833100002,-0.0033611345500992387,-0.0039225350383452085,-0.00272499671514876,-0.0017055583603693182,0.003068268183338904,-0.0006283402120744695,0.0006370385207604692,0.005634008879848297,0.00038926195852853477,0.00416382511351044,0.003723599604490965,0.0036822032437012764,0.005107761170756687,0.004036585010736066,0.008591063345881195,0.009320216110416103,0.005790659821810673,-0.0004490414217577575,0.007555102239591761,0.0037646857376243707,-0.001058105950089501,0.0017135209277554214,0.0005045493132736734,0.0009043366972084522,0.001152069497100539,-0.0023156502881716296,0.0008849411846280537,-0.005518381826027936,-0.0006686600605414213,0.0014297875691658705,-0.0015280104999751605,-0.0026054388273402587,-0.0022965023602913013,-0.0028198050296586548,-0.0062883698356805155,-0.0038762087807911886,-0.00011175574312488113,0.0021833273178313095,0.0002643244189192849,-0.0011426922960935625,0.005312169332913627,0.005899711725844645,0.0030042830895193858,-0.001667034171656184,-0.00226376576091798,0.0019490758349580127,0.0007540831589891886,0.00012356688718703052,-0.0013014452525429456,-0.003913656860955831,-0.002578216944989335,-0.0049010135137429545,-0.003942951339245045,-0.005546720892179937,-0.005105929049429498,-0.0031911310133672386
+52.419412,4.910812,0.0004481664866622362,-0.0031768785056312233,-0.002270012778529941,-0.00077912318331,-0.0016611345500992388,-0.0023225350383452087,-0.0028249967151487603,-0.0017055583603693182,0.0014682681833389037,-0.0015283402120744695,0.0006370385207604692,-0.001765991120151703,-0.002910738041471465,-0.0013361748864895596,-0.001976400395509035,-0.0011177967562987236,-0.004392238829243313,-0.0009634149892639335,-0.00020893665411880454,-0.00027978388958389724,-0.0007093401781893269,-0.0029490414217577575,0.0004551022395917605,-0.0004353142623756294,-0.0028581059500895007,0.0009135209277554214,-0.0012954506867263265,-0.002095663302791548,-0.0006479305028994611,-0.0016156502881716297,-0.0038150588153719463,-0.004718381826027936,-0.0024686600605414214,-0.0011702124308341293,-0.0031280104999751603,-0.004305438827340259,-0.002696502360291301,-0.004819805029658654,-0.004088369835680516,-0.004576208780791189,-0.0017117557431248808,-0.0006166726821686906,-0.003335675581080715,-0.0031426922960935627,-0.0025878306670863733,-0.001300288274155355,-0.0016957169104806142,-0.001967034171656184,-0.00526376576091798,-0.00015092416504198744,-0.0010459168410108116,-0.00027643311281296944,-0.00030144525254294577,-0.002013656860955831,-0.002778216944989335,-0.003801013513742955,-0.003542951339245045,-0.002646720892179937,-0.0033059290494294987,-0.000491131013367238
+52.419245,4.911239,0.006148166486662237,0.0021231214943687763,0.004329987221470059,0.00572087681669,0.006238865449900761,0.004877464961654791,0.0034750032848512398,0.005794441639630682,0.005368268183338904,0.0034716597879255306,0.00523703852076047,0.005634008879848297,0.004189261958528535,0.0014638251135104404,0.003623599604490965,0.003282203243701276,0.0030077611707566877,0.004936585010736066,0.005791063345881195,0.005920216110416103,0.006590659821810673,0.0018509585782422427,0.0048551022395917605,0.00416468573762437,0.0031418940499104995,0.007513520927755422,0.005704549313273674,0.0054043366972084525,0.00665206949710054,0.007084349711828371,0.005084941184628054,0.004081618173972065,0.004331339939458579,0.004129787569165871,0.00537198950002484,0.002294561172659741,0.0038034976397086986,0.0025801949703413455,0.0031116301643194844,0.0003237912192088112,0.004988244256875119,0.00418332731783131,0.0010643244189192849,0.0025573077039064375,0.004712169332913627,0.004499711725844645,0.0038042830895193857,0.0016329658283438162,0.0011362342390820197,0.005749075834958012,0.005254083158989189,0.004923566887187031,0.005698554747457054,0.001086343139044169,0.0017217830550106646,0.002698986486257045,0.003157048660754955,0.0030532791078200627,0.004094070950570502,0.005208868986632762
+52.419336,4.91046,0.001248166486662236,2.312149436877641e-05,-0.0024700127785299408,-7.912318331000016e-05,0.0012388654499007612,-0.0018225350383452086,-0.00142499671514876,-0.001805558360369318,-0.0005317318166610961,-0.00022834021207446958,-0.0009629614792395309,-0.001265991120151703,-0.002210738041471465,-0.004236174886489559,-0.002776400395509035,-0.004417796756298723,-0.0035922388292433122,-0.0030634149892639333,-0.0036089366541188048,-0.001779783889583897,-0.0006093401781893271,-0.004349041421757758,0.0005551022395917605,-0.0030353142623756294,-0.004958105950089501,0.0005135209277554215,-0.0005954506867263265,-0.001695663302791548,0.002252069497100539,-0.0016156502881716297,-0.002115058815371946,-0.002618381826027936,0.00013133993945857854,-0.0016702124308341294,-0.0031280104999751603,-0.0035054388273402584,-0.0030965023602913012,-0.0023198050296586543,-0.004888369835680515,-0.004576208780791189,-0.002711755743124881,-0.0008166726821686905,-0.002535675581080715,-0.0014426922960935626,-0.003787830667086374,-0.003000288274155355,-0.0027957169104806143,-0.004067034171656184,-0.008763765760917981,-0.0011509241650419872,-0.0021459168410108117,-0.0003764331128129695,-0.0035014452525429455,-0.004013656860955831,-0.003478216944989335,-0.0011010135137429545,-0.0003429513392450452,-0.0017467208921799371,-0.0016059290494294986,-0.003291131013367238
+52.419037,4.9117,-0.0009518335133377636,-0.0018768785056312237,-0.0016700127785299408,0.0003208768166899998,-0.00026113455009923873,-0.0015225350383452085,-0.0010249967151487601,-0.0010055583603693183,0.001368268183338904,-0.0032283402120744696,-0.0002629614792395308,-0.002965991120151703,-0.004010738041471465,-0.0039361748864895595,-0.0008764003955090352,-0.0008177967562987235,-0.0033922388292433126,-0.0023634149892639332,-0.0019089366541188042,-0.0016797838895838972,-0.00020934017818932714,-0.0042490414217577575,-0.0016448977604082396,0.0006646857376243705,-0.004758105950089501,0.0019135209277554215,0.0014045493132736734,-0.0007956633027915479,0.002252069497100539,0.00048434971182837036,-0.0025150588153719463,-0.0025183818260279362,0.0006313399394585786,-0.0009702124308341295,-0.0012280104999751605,-0.0014054388273402585,-0.001196502360291301,-0.0030198050296586544,-0.004888369835680515,-0.004976208780791189,-0.001611755743124881,0.00028332731783130944,-0.004135675581080715,-0.0030426922960935625,-0.0007878306670863733,-0.0008002882741553551,-0.003595716910480614,-0.0036670341716561836,-0.00516376576091798,-0.0006509241650419874,-0.0012459168410108112,0.0005235668871870306,-0.00030144525254294577,-0.004713656860955831,-0.001778216944989335,-0.0015010135137429545,-0.0013429513392450452,-0.0017467208921799371,-0.0010059290494294985,0.000808868986632762
+52.419094,4.911123,-0.00015183351333776388,-0.0034768785056312236,-0.0037700127785299407,0.00012087681668999993,0.0011388654499007614,0.0009774649616547915,-0.0029249967151487597,-0.001505558360369318,-0.0037317318166610962,-0.007328340212074469,-0.0035629614792395308,-0.010965991120151702,-0.005810738041471465,-0.014336174886489559,-0.010876400395509035,-0.008917796756298724,-0.011992238829243312,-0.012263414989263933,-0.013408936654118804,-0.010279783889583899,-0.005709340178189327,-0.009349041421757758,-0.006044897760408239,-0.005835314262375629,-0.008358105950089501,-0.0010864790722445784,-0.004995450686726326,-0.0014956633027915479,-0.0012479305028994612,-0.0005156502881716299,-0.004015058815371946,-0.004718381826027936,-0.004568660060541422,-0.004770212430834129,-0.0024280104999751606,-0.006305438827340259,-0.0051965023602913015,-0.0057198050296586546,-0.0032883698356805154,-0.008576208780791189,-0.005411755743124882,-0.0061166726821686905,-0.008535675581080714,-0.006742692296093563,-0.008187830667086374,-0.008400288274155355,-0.0004957169104806144,-0.009567034171656184,-0.011463765760917979,-0.0026509241650419873,-0.0060459168410108115,-0.00637643311281297,0.00019855474745705435,-0.007513656860955831,-0.005078216944989336,-0.0025010135137429547,-0.0056429513392450455,-0.0038467208921799372,0.0004940709505705014,0.000808868986632762
+52.418914,4.911562,0.0022481664866622363,-0.0029768785056312236,-0.0037700127785299407,0.0018208768166899998,0.0027388654499007617,0.0028774649616547915,-0.00112499671514876,-0.0005055583603693183,-0.00023173181666109616,-0.0027283402120744696,0.0012370385207604692,-0.004165991120151703,-0.0026107380414714648,-0.0069361748864895595,-0.004776400395509035,-0.0038177967562987233,-0.005492238829243313,-0.006363414989263933,-0.0053089366541188045,-0.0045797838895838975,-0.0034093401781893273,-0.004649041421757758,-0.0013448977604082397,-0.0013353142623756292,-0.004858105950089501,0.0024135209277554213,-0.0006954506867263265,-0.0003956633027915479,0.0015520694971005388,0.0035843497118283702,-0.0011150588153719463,0.0001816181739720639,0.0003313399394585786,0.0001297875691658705,-0.0025280104999751605,-0.0033054388273402588,-0.0012965023602913009,-0.0010198050296586544,-0.0016883698356805156,-0.00877620878079119,0.001688244256875119,-0.0021166726821686905,-0.004735675581080715,-0.0025426922960935625,-0.007587830667086374,-0.0058002882741553545,-0.005595716910480614,-0.005967034171656184,-0.008163765760917981,-0.003250924165041987,-0.004145916841010812,-0.0027764331128129695,-0.0015014452525429457,-0.006013656860955831,-0.002778216944989335,-0.0017010135137429546,-0.004142951339245046,-0.0020467208921799373,0.0028940709505705015,-0.002291131013367238
+52.418895,4.911623,0.0025481664866622363,-0.00047687850563122355,0.0004299872214700591,0.0005208768166899998,0.002538865449900761,0.0016774649616547914,-0.00082499671514876,0.0002944416396306818,-3.173181666109607e-05,-0.0032283402120744696,3.7038520760469205e-05,-0.004165991120151703,-0.0006107380414714651,-0.006236174886489559,-0.004576400395509036,-0.0023177967562987237,-0.006192238829243313,-0.004263414989263934,-0.006108936654118805,-0.003779783889583897,-0.002309340178189327,-0.005849041421757757,-0.003144897760408239,-0.0020353142623756293,-0.002958105950089501,0.0018135209277554214,-0.0003954506867263266,-0.00019566330279154786,-0.00024793050289946116,0.0026843497118283705,-0.0038150588153719463,-0.00041838182602793616,-0.0013686600605414215,-0.0015702124308341295,-0.0026280104999751603,-0.004805438827340259,-0.0017965023602913009,-0.0021198050296586547,-0.0010883698356805155,-0.008076208780791188,0.0005882442568751189,-0.0022166726821686903,-0.0063356755810807155,-0.005642692296093562,-0.005487830667086374,-0.007100288274155355,-0.005995716910480614,-0.006767034171656184,-0.00696376576091798,-0.0026509241650419873,-0.0021459168410108117,-0.0033764331128129693,-0.0007014452525429457,-0.005313656860955831,-0.003578216944989335,-0.0031010135137429545,-0.003642951339245045,-0.003146720892179937,-0.0006059290494294985,0.0002088689866327619
+52.418871,4.911666,0.0030481664866622363,-0.00017687850563122357,-0.001170012778529941,0.0018208768166899998,0.0023388654499007615,0.0008774649616547915,-0.00232499671514876,-0.0005055583603693183,0.0005682681833389038,-0.0028283402120744695,3.7038520760469205e-05,-0.001765991120151703,-0.0010107380414714651,-0.004536174886489559,-0.003376400395509035,-0.0015177967562987236,-0.004192238829243312,-0.0033634149892639333,-0.004408936654118805,-0.002879783889583897,-0.001909340178189327,-0.0033490414217577577,-0.0025448977604082394,-0.0025353142623756294,-0.0038581059500895007,0.0007135209277554214,-0.0013954506867263267,-0.0008956633027915479,-4.7930502899461126e-05,0.0012843497118283703,-0.0022150588153719464,-0.001718381826027936,-0.0010686600605414216,-0.0015702124308341295,-0.0032280104999751606,-0.005005438827340258,-0.002396502360291301,-0.0030198050296586544,-0.0019883698356805155,-0.004476208780791189,-0.001011755743124881,-0.0034166726821686904,-0.004235675581080715,-0.0031426922960935627,-0.0049878306670863735,-0.005900288274155355,-0.004895716910480614,-0.005367034171656184,-0.00806376576091798,-0.0012509241650419875,-0.0011459168410108114,-0.003976433112812969,0.0023985547474570544,-0.004713656860955831,-0.002978216944989335,-0.0013010135137429546,-0.0018429513392450453,-4.67208921799372e-05,0.0007940709505705015,0.0002088689866327619
+52.418779,4.912278,0.002948166486662236,0.0010231214943687765,0.001529987221470059,0.0032208768166899996,0.0019388654499007613,0.0006774649616547915,0.0008750032848512399,0.0017944416396306817,0.001968268183338904,0.0005716597879255303,0.0003370385207604692,0.001034008879848297,0.00038926195852853477,-0.0013361748864895596,0.00042359960449096475,0.0011822032437012763,0.00010776117075668749,0.0011365850107360664,0.0011910633458811954,0.0009202161104161029,0.0031906598218106727,-0.0013490414217577574,0.0021551022395917604,0.0017646857376243706,-0.0028581059500895007,0.0028135209277554214,0.0013045493132736734,0.002204336697208452,0.0037520694971005385,0.0025843497118283702,0.0007849411846280537,-0.00041838182602793616,0.0021313399394585785,0.0007297875691658704,0.0036719895000248393,-0.0013054388273402587,-0.002496502360291301,8.019497034134559e-05,-0.0011883698356805156,-0.0030762087807911886,0.00038824425687511893,0.00018332731783130945,0.0006643244189192851,-0.0010426922960935627,-0.0006878306670863735,-0.00010028827415535513,0.0004042830895193857,-0.001567034171656184,-0.00396376576091798,0.0004490758349580125,-4.591684101081135e-05,0.0009235668871870307,0.0010985547474570542,8.634313904416909e-05,-0.0004782169449893352,0.0008989864862570453,0.0010570486607549548,-0.00014672089217993717,0.0018940709505705013,0.0016088689866327619
+52.418839,4.911728,-0.0009518335133377636,-0.0038768785056312234,-0.002070012778529941,0.00042087681668999985,-0.0013611345500992387,-0.0021225350383452086,0.00577500328485124,-0.0029055583603693185,0.0005682681833389038,-0.005128340212074469,-0.0006629614792395308,-0.002365991120151703,-0.003410738041471465,-0.00473617488648956,-0.0051764003955090355,-0.004117796756298723,-0.0069922388292433125,-0.005163414989263934,-0.007008936654118805,-0.004479783889583897,-0.003909340178189327,-0.006149041421757757,-0.0063448977604082385,-0.0020353142623756293,-0.002658105950089501,-0.0052864790722445786,-0.0017954506867263265,-0.001995663302791548,0.0033520694971005387,-0.00341565028817163,-0.006915058815371946,-0.004318381826027937,-0.0037686600605414213,-0.00567021243083413,0.0018719895000248394,-0.013905438827340258,-0.006196502360291302,-0.0018198050296586543,-0.0042883698356805154,-0.007776208780791188,-0.007211755743124882,-0.00461667268216869,-0.0063356755810807155,-0.004942692296093562,-0.006387830667086374,-0.003000288274155355,-0.006895716910480614,-0.011967034171656184,-0.00706376576091798,-0.004250924165041987,-0.006545916841010812,-0.0022764331128129695,-0.003301445252542946,-0.006413656860955831,-0.0031782169449893352,0.0008989864862570453,-0.0022429513392450452,-0.002146720892179937,-0.0018059290494294986,-0.002391131013367238
+52.418742,4.911981,-0.0019518335133377636,-0.004676878505631224,-0.004470012778529941,-0.00197912318331,-0.0036611345500992386,-0.0026225350383452086,-0.00392499671514876,-0.003705558360369318,-0.003331731816661096,-0.006328340212074469,-0.00406296147923953,-0.004065991120151703,-0.003710738041471465,-0.00733617488648956,-0.004576400395509036,-0.003717796756298723,-0.007092238829243313,-0.0057634149892639335,-0.006108936654118805,-0.0055797838895838975,-0.004309340178189327,-0.007849041421757757,-0.0036448977604082397,-0.003435314262375629,-0.0070581059500895,-0.0011864790722445786,-0.0031954506867263267,-0.003795663302791548,-0.002347930502899461,-0.0018156502881716298,-0.0050150588153719455,-0.006118381826027936,-0.005168660060541422,-0.004770212430834129,-0.00522801049997516,-0.0065054388273402585,-0.0064965023602913015,-0.005419805029658654,-0.0022883698356805154,-0.005576208780791189,-0.0008117557431248811,-0.0041166726821686905,-0.008635675581080715,-0.006842692296093562,-0.006087830667086374,-0.007000288274155355,-0.006595716910480614,-0.007867034171656184,-0.00866376576091798,-0.0030509241650419875,-0.006145916841010812,-0.006476433112812969,-0.0016014452525429455,-0.008113656860955831,-0.005078216944989336,-0.0033010135137429546,-0.006442951339245046,-0.005846720892179937,-0.0049059290494294985,-0.003691131013367238
+52.418681,4.912036,0.003548166486662236,0.00022312149436877645,-0.0002700127785299409,0.00422087681669,0.0027388654499007617,0.0025774649616547916,0.0015750032848512398,0.002594441639630682,0.003268268183338904,0.0004716597879255305,0.003437038520760469,0.0016340088798482968,0.0018892619585285347,0.00036382511351044054,0.0016235996044909648,0.003182203243701277,-0.0007922388292433125,0.0018365850107360663,0.0017910633458811955,0.0026202161104161028,0.002790659821810673,-0.0009490414217577575,0.0020551022395917606,0.0021646857376243704,-0.0025581059500895008,0.0040135209277554216,0.0023045493132736734,0.001604336697208452,0.004252069497100539,0.00338434971182837,0.0008849411846280537,0.00028161817397206394,0.0023313399394585786,0.0011297875691658706,0.0011719895000248395,0.00019456117265974132,0.00020349763970869896,0.0008801949703413456,0.0008116301643194845,-0.002676208780791189,0.000988244256875119,-0.00011667268216869052,-0.001835675581080715,-0.0009426922960935626,0.0014121693329136266,-0.0006002882741553551,0.0007042830895193856,-0.000867034171656184,-0.00306376576091798,0.002849075834958013,0.0019540831589891887,0.0018235668871870304,0.0021985547474570543,-0.001113656860955831,-0.0001782169449893352,0.0018989864862570456,0.0010570486607549548,0.0020532791078200626,0.0004940709505705014,0.003108868986632762
+52.418593,4.912788,0.0006481664866622362,-0.0026768785056312232,-0.001470012778529941,-0.00157912318331,-0.0006611345500992386,-0.0029225350383452085,-0.00212499671514876,-0.0016055583603693184,0.0005682681833389038,-0.00392834021207447,-0.0008629614792395309,-0.002765991120151703,-0.0039107380414714656,-0.0032361748864895594,-0.001876400395509035,-0.0010177967562987236,-0.005092238829243313,-0.0030634149892639333,-0.0029089366541188042,-0.002579783889583897,-0.0003093401781893272,-0.004549041421757757,-0.0005448977604082393,-0.0024353142623756295,-0.004858105950089501,-0.0012864790722445785,-0.002595450686726327,-0.001895663302791548,0.0008520694971005388,-0.0026156502881716295,-0.003115058815371946,-0.0049183818260279365,-0.0006686600605414213,-0.0030702124308341293,-0.00222801049997516,-0.004005438827340259,-0.004896502360291301,-0.0036198050296586542,-0.005588369835680515,-0.005376208780791189,-0.003211755743124881,-0.004916672682168691,-0.002335675581080715,-0.004242692296093562,-0.003787830667086374,-0.004600288274155355,-0.0031957169104806144,-0.004167034171656184,-0.00566376576091798,-0.0018509241650419873,-0.0021459168410108117,-0.003576433112812969,-0.00030144525254294577,-0.004613656860955831,-0.0042782169449893355,-0.0035010135137429547,-0.003442951339245045,-0.002946720892179937,-0.0017059290494294986,-0.0016911310133672379
+52.418669,4.912081,0.002148166486662236,-0.0017768785056312235,0.001029987221470059,0.0011208768166899997,0.0019388654499007613,0.0012774649616547915,0.00017500328485124,0.001394441639630682,0.0026682681833389036,-0.0007283402120744696,0.0015370385207604692,0.0009340088798482969,-0.00041073804147146516,-0.0005361748864895594,-7.640039550903516e-05,0.0008822032437012764,-0.0020922388292433126,0.00033658501073606647,0.00029106334588119547,0.00022021611041610282,0.002290659821810673,-0.0028490414217577573,0.0002551022395917606,-3.531426237562952e-05,-0.0025581059500895008,0.0022135209277554216,4.549313273673455e-06,-9.566330279154789e-05,0.0017520694971005389,0.0009843497118283704,-0.00031505881537194634,-0.001718381826027936,-0.00016866006054142143,-7.02124308341295e-05,-0.0007280104999751604,-0.0038054388273402588,-0.001196502360291301,-0.0009198050296586543,-0.0017883698356805156,-0.003976208780791189,-0.00021175574312488107,-1.667268216869056e-05,-0.001135675581080715,0.0006573077039064375,0.00021216933291362658,-0.0012002882741553552,-0.0009957169104806143,-0.0039670341716561835,-0.00586376576091798,0.0007490758349580125,-0.0009459168410108113,-0.0013764331128129693,0.0011985547474570543,-0.0026136568609558307,-0.002478216944989335,0.0004989864862570455,-0.0003429513392450452,-0.00044672089217993714,0.0011940709505705014,0.000608868986632762
+52.418654,4.912144,-0.00035183351333776375,-0.0032768785056312235,-0.001570012778529941,-0.0003791231833100001,-6.113455009923864e-05,-0.0004225350383452085,-0.00212499671514876,-0.0017055583603693182,0.00016826818333890402,-0.0023283402120744695,-0.0004629614792395308,0.000834008879848297,-0.0005107380414714651,-0.0022361748864895593,-0.0005764003955090352,-0.0004177967562987235,-0.003492238829243312,-0.0013634149892639337,-0.0017089366541188046,-0.0006797838895838971,0.00029065982181067287,-0.004949041421757758,-4.489776040823932e-05,-0.0006353142623756295,-0.0038581059500895007,-0.0003864790722445787,-0.0016954506867263267,-0.002095663302791548,0.00045206949710053883,-0.0006156502881716297,-0.0037150588153719464,-0.003318381826027936,-0.002868660060541421,-0.0022702124308341294,-0.0025280104999751605,-0.0038054388273402588,-0.0017965023602913009,-0.0036198050296586542,-0.0028883698356805157,-0.006476208780791189,-0.002011755743124881,-0.0024166726821686904,-0.004635675581080715,-0.005142692296093563,-0.0025878306670863733,-0.002100288274155355,-0.002895716910480614,-0.004967034171656184,-0.00556376576091798,4.9075834958012656e-05,-0.0018459168410108115,-0.0030764331128129694,-0.0018014452525429456,-0.004413656860955831,-0.002978216944989335,-0.0001010135137429546,-0.002642951339245045,-0.0018467208921799372,-0.003905929049429499,-0.0024911310133672385
+52.418632,4.912259,0.0014481664866622362,0.00042312149436877643,0.0012299872214700592,0.00242087681669,0.0014388654499007613,0.00037746496165479154,0.0007750032848512401,0.0002944416396306818,0.0031682681833389036,0.002971659787925531,0.0010370385207604691,-6.599112015170309e-05,-0.0005107380414714651,0.00016382511351044045,0.0003235996044909648,0.0024822032437012767,-0.0008922388292433124,0.0021365850107360664,0.0024910633458811956,0.0040202161104161025,0.004690659821810673,0.0006509585782422426,0.0015551022395917605,0.0012646857376243706,0.002341894049910499,0.008513520927755421,0.006504549313273674,0.002104336697208452,0.00955206949710054,0.00048434971182837036,0.002984941184628054,-0.0022183818260279363,0.0031313399394585785,0.0020297875691658706,0.0010719895000248396,0.0033945611726597415,0.005003497639708699,0.006080194970341346,0.003511630164319484,-0.0032762087807911887,0.001488244256875119,0.0020833273178313093,-0.0007356755810807151,0.00015730770390643745,0.0049121693329136264,0.001199711725844645,0.0017042830895193856,0.004532965828343816,-0.0006637657609179803,0.0053490758349580125,-0.0016459168410108114,0.005523566887187031,-0.0004014452525429456,0.00718634313904417,-0.002478216944989335,-0.002401013513742955,0.0023570486607549547,0.003353279107820063,9.407095057050148e-05,0.0035088689866327617
+52.418398,4.912774,-0.0006518335133377637,2.312149436877641e-05,-0.001170012778529941,2.0876816689999883e-05,-0.0016611345500992388,-0.0007225350383452086,-0.00172499671514876,-0.0005055583603693183,0.0011682681833389038,-0.0010283402120744695,0.00043703852076046914,0.0016340088798482968,-0.001410738041471465,-0.0004361748864895596,-0.0005764003955090352,0.003182203243701277,-0.0003922388292433124,0.0001365850107360665,0.0014910633458811956,0.003020216110416103,0.002490659821810673,-0.0039490414217577575,0.0017551022395917606,0.0016646857376243704,-0.002458105950089501,0.0019135209277554215,4.549313273673455e-06,0.0006043366972084521,0.004052069497100539,0.0009843497118283704,0.0009849411846280535,-0.001618381826027936,0.00043133993945857857,-0.0010702124308341295,-2.801049997516042e-05,-0.0019054388273402586,-0.0017965023602913009,-0.0027198050296586545,-0.0023883698356805157,-0.0022762087807911887,0.001388244256875119,0.0003833273178313095,-0.0014356755810807152,-0.00014269229609356268,-0.0004878306670863734,-0.0005002882741553551,-0.0008957169104806144,-6.703417165618395e-05,-0.00256376576091798,0.0016490758349580125,0.0006540831589891885,-0.0007764331128129695,0.0010985547474570542,-0.004113656860955831,-0.001278216944989335,0.0002989864862570454,-0.0019429513392450453,-0.0013467208921799372,-0.0011059290494294985,0.002608868986632762
+52.418387,4.912726,-0.0009518335133377636,-0.0010768785056312236,-0.001770012778529941,-0.00227912318331,-0.0006611345500992386,-0.0016225350383452086,-0.00232499671514876,-0.0029055583603693185,-0.001031731816661096,-0.0013283402120744697,-0.002162961479239531,3.400887984829695e-05,-0.002410738041471465,-3.617488648955942e-05,-0.002776400395509035,-0.0007177967562987234,-0.0035922388292433122,-0.0005634149892639335,-0.0017089366541188046,-0.0005797838895838973,-0.0010093401781893273,-0.0035490414217577574,0.0004551022395917605,-0.0011353142623756296,-0.004558105950089501,0.0023135209277554214,-0.0010954506867263264,-0.001395663302791548,0.002052069497100539,-0.0007156502881716295,-0.0009150588153719463,-0.0029183818260279364,-0.0013686600605414215,-0.0031702124308341296,-0.0030280104999751605,-0.004505438827340258,-0.002396502360291301,-0.0024198050296586546,-0.0027883698356805154,-0.004076208780791188,-0.0007117557431248811,-0.0007166726821686905,-0.002735675581080715,-0.0020426922960935625,-0.0022878306670863734,-0.002000288274155355,-0.0015957169104806144,-0.002167034171656184,-0.00506376576091798,-0.0006509241650419874,-0.0024459168410108116,-0.0007764331128129695,0.0003985547474570543,-0.004313656860955831,-0.002978216944989335,-0.0008010135137429546,-0.002542951339245045,-0.002746720892179937,-0.0012059290494294986,-0.0006911310133672381
+52.41836,4.912845,0.0004481664866622362,-0.0024768785056312236,-0.0007700127785299409,0.0019208768166899997,0.0004388654499007613,0.0013774649616547915,-0.0010249967151487601,0.0003944416396306818,0.0016682681833389038,-0.0010283402120744695,0.0018370385207604693,0.002634008879848297,0.002789261958528535,-0.0011361748864895595,0.0018235996044909648,0.004282203243701276,0.0010077611707566875,0.0028365850107360665,0.004691063345881195,0.003920216110416102,0.002690659821810673,-0.0026490414217577576,0.0028551022395917605,0.0030646857376243706,-0.0025581059500895008,0.004513520927755421,0.005504549313273674,-0.001995663302791548,0.002552069497100539,0.0014843497118283702,-0.0017150588153719464,-0.003118381826027936,-0.00046866006054142146,-0.0022702124308341294,-0.00222801049997516,-0.0037054388273402585,-0.000396502360291301,-0.002919805029658654,-0.0011883698356805156,-0.0035762087807911886,0.001988244256875119,0.0010833273178313095,-0.0006356755810807151,-0.0018426922960935626,0.0022121693329136263,0.001999711725844645,-9.571691048061435e-05,-0.001167034171656184,-0.00256376576091798,0.00024907583495801253,0.0024540831589891883,-0.0027764331128129695,0.0012985547474570543,-0.001213656860955831,-0.0011782169449893352,-0.0033010135137429546,-0.0013429513392450452,0.0006532791078200629,-0.0019059290494294985,0.001208868986632762
+52.418056,4.913418,0.0008481664866622363,0.0015231214943687765,0.0007299872214700591,0.0007208768166899999,0.0015388654499007613,0.0009774649616547915,-0.00212499671514876,0.0006944416396306818,0.003068268183338904,-0.0013283402120744697,0.002437038520760469,0.001934008879848297,0.0009892619585285347,6.38251135104404e-05,0.0012235996044909648,0.004582203243701277,0.0008077611707566876,0.002936585010736067,-0.004808936654118805,0.0018202161104161028,0.004290659821810673,-0.0008490414217577574,0.0019551022395917603,0.0002646857376243705,-0.000858105950089501,0.0023135209277554214,-9.545068672632659e-05,-0.0017956633027915478,5.2069497100538866e-05,0.0008843497118283702,0.0007849411846280537,-0.0032183818260279363,-0.0008686600605414214,-0.0020702124308341293,0.00357198950002484,-0.0031054388273402587,-0.000196502360291301,-0.0011198050296586544,-0.0020883698356805157,-0.0019762087807911888,0.0008882442568751189,0.00028332731783130944,-0.001335675581080715,-0.0012426922960935625,-0.0018878306670863734,0.0006997117258446448,0.0015042830895193858,-0.0009670341716561839,-0.00356376576091798,0.0016490758349580125,0.00045408315898918855,0.0015235668871870305,0.0023985547474570544,-0.003513656860955831,-0.010078216944989334,0.0014989864862570454,-0.0010429513392450453,-0.0013467208921799372,-5.92904942949853e-06,0.005508868986632762
+52.339423,4.883113,-0.0025518335133377637,-0.0012768785056312235,-0.002670012778529941,-0.00387912318331,-0.004161134550099239,-0.005122535038345208,-0.00542499671514876,-0.004105558360369318,-0.0015317318166610965,-0.0058283402120744695,-0.00496296147923953,-0.002465991120151703,-0.004410738041471465,-0.005836174886489559,-0.004976400395509035,-0.0023177967562987237,-0.006292238829243312,-0.004863414989263934,-0.0034089366541188043,-0.003479783889583897,-0.004309340178189327,-0.007849041421757757,-0.002444897760408239,-0.0029353142623756295,-0.005858105950089501,-0.003586479072244579,-0.004595450686726326,-0.006595663302791548,-0.006747930502899461,-0.003815650288171629,-0.0050150588153719455,-0.007418381826027937,-0.005768660060541422,-0.005470212430834129,-0.00672801049997516,-0.009905438827340258,-0.007196502360291302,-0.007219805029658654,-0.007188369835680515,-0.007276208780791188,-0.005211755743124881,-0.00631667268216869,-0.008335675581080716,-0.007742692296093563,-0.002187830667086373,-0.008100288274155355,-0.007195716910480614,-0.007967034171656184,-0.00976376576091798,-0.008250924165041987,-0.006645916841010811,-0.006576433112812969,-0.007201445252542946,-0.008413656860955831,-0.007478216944989335,-0.008601013513742954,-0.009142951339245045,-0.008746720892179937,-0.008705929049429498,-0.006891131013367238
+52.339429,4.883045,-0.0018518335133377638,-0.0017768785056312235,-0.002270012778529941,-0.0021791231833100002,-0.0033611345500992387,-0.004722535038345209,-0.00582499671514876,-0.004105558360369318,-0.0019317318166610959,-0.00552834021207447,-0.0047629614792395305,-0.0034659911201517027,-0.005110738041471465,-0.006536174886489559,-0.006676400395509035,-0.0031177967562987232,-0.007292238829243312,-0.005963414989263934,-0.0050089366541188046,-0.004979783889583897,-0.005409340178189327,-0.008849041421757757,-0.0033448977604082397,-0.0038353142623756293,-0.0070581059500895,-0.004086479072244579,-0.0060954506867263265,-0.008095663302791548,-0.007347930502899461,-0.00501565028817163,-0.005815058815371946,-0.008618381826027937,-0.006868660060541422,-0.00637021243083413,-0.007728010499975161,-0.010605438827340257,-0.007196502360291302,-0.007219805029658654,-0.007088369835680516,-0.006376208780791188,-0.004711755743124882,-0.006816672682168691,-0.009035675581080715,-0.007542692296093562,-0.0036878306670863736,-0.009400288274155354,-0.007395716910480615,-0.008867034171656183,-0.01016376576091798,-0.0075509241650419875,-0.006445916841010812,-0.00667643311281297,-0.006101445252542945,-0.00791365686095583,-0.007178216944989335,-0.009301013513742953,-0.008942951339245045,-0.008546720892179937,-0.009405929049429497,-0.007691131013367238
+52.339388,4.883198,-0.008951833513337764,-0.007176878505631224,-0.009270012778529941,-0.009979123183309999,-0.011061134550099237,-0.012822535038345208,-0.01252499671514876,-0.012105558360369318,-0.009131731816661097,-0.01402834021207447,-0.012562961479239531,-0.011665991120151702,-0.013310738041471466,-0.01333617488648956,-0.013476400395509035,-0.010917796756298724,-0.015092238829243312,-0.014063414989263933,-0.013108936654118804,-0.012479783889583897,-0.012509340178189329,-0.016249041421757756,-0.01164489776040824,-0.01233531426237563,-0.0154581059500895,-0.013086479072244578,-0.013995450686726326,-0.01569566330279155,-0.01664793050289946,-0.013615650288171629,-0.013915058815371946,-0.017618381826027936,-0.01416866006054142,-0.01577021243083413,-0.01822801049997516,-0.01970543882734026,-0.016496502360291303,-0.016419805029658657,-0.017488369835680515,-0.01717620878079119,-0.01501175574312488,-0.01631667268216869,-0.019435675581080714,-0.01824269229609356,-0.013887830667086374,-0.020700288274155355,-0.019795716910480616,-0.018367034171656183,-0.02096376576091798,-0.02035092416504199,-0.01844591684101081,-0.01747643311281297,-0.017201445252542944,-0.01921365686095583,-0.017878216944989336,-0.020401013513742954,-0.020242951339245044,-0.01914672089217994,-0.0202059290494295,-0.018791131013367237
+52.339441,4.882718,-0.002651833513337764,-0.0028768785056312233,-0.0024700127785299408,-0.00317912318331,-0.0039611345500992386,-0.004122535038345208,-0.00702499671514876,-0.004605558360369318,-0.002731731816661096,-0.00782834021207447,-0.00496296147923953,-0.003665991120151703,-0.005610738041471466,-0.007436174886489559,-0.0064764003955090355,-0.003017796756298724,-0.007192238829243313,-0.0057634149892639335,-0.004408936654118805,-0.004279783889583897,-0.005609340178189327,-0.009449041421757757,-0.005144897760408239,-0.00433531426237563,-0.006558105950089501,-0.004486479072244578,-0.005695450686726326,-0.008395663302791548,-0.00964793050289946,-0.004815650288171629,-0.006515058815371946,-0.008518381826027936,-0.008268660060541421,-0.00827021243083413,-0.01032801049997516,-0.01370543882734026,-0.0093965023602913,-0.010219805029658654,-0.009288369835680516,-0.00907620878079119,-0.007211755743124882,-0.00941667268216869,-0.013135675581080716,-0.010042692296093562,-0.0059878306670863735,-0.011800288274155355,-0.010695716910480614,-0.010767034171656184,-0.012763765760917981,-0.011650924165041987,-0.010545916841010812,-0.01077643311281297,-0.010501445252542945,-0.012113656860955831,-0.011278216944989334,-0.012501013513742954,-0.013442951339245045,-0.013846720892179937,-0.012905929049429499,-0.011691131013367238
+52.339383,4.883097,-0.005951833513337764,-0.005876878505631224,-0.005970012778529941,-0.00647912318331,-0.007061134550099239,-0.00782253503834521,-0.00942499671514876,-0.008005558360369319,-0.005331731816661097,-0.010728340212074469,-0.008262961479239531,-0.006465991120151703,-0.008410738041471466,-0.010636174886489559,-0.009876400395509036,-0.007117796756298723,-0.011192238829243311,-0.010163414989263932,-0.009208936654118805,-0.008879783889583898,-0.009009340178189327,-0.014249041421757758,-0.00844489776040824,-0.00893531426237563,-0.0110581059500895,-0.008586479072244578,-0.010495450686726327,-0.012495663302791548,-0.01344793050289946,-0.008715650288171629,-0.010815058815371946,-0.011818381826027936,-0.010568660060541421,-0.01147021243083413,-0.01212801049997516,-0.015605438827340258,-0.0124965023602913,-0.012219805029658654,-0.012588369835680516,-0.012476208780791188,-0.010111755743124881,-0.011516672682168692,-0.016535675581080714,-0.013642692296093563,-0.006987830667086374,-0.013800288274155356,-0.012695716910480614,-0.015167034171656183,-0.01566376576091798,-0.013150924165041987,-0.012245916841010812,-0.01327643311281297,-0.012901445252542946,-0.01421365686095583,-0.011378216944989335,-0.016301013513742954,-0.014842951339245045,-0.014546720892179937,-0.015205929049429499,-0.014391131013367238
+52.339396,4.882922,-0.005551833513337764,-0.004176878505631224,-0.005070012778529941,-0.00587912318331,-0.00736113455009924,-0.00782253503834521,-0.008924996715148759,-0.007405558360369318,-0.004431731816661096,-0.00902834021207447,-0.008262961479239531,-0.006965991120151703,-0.008410738041471466,-0.01113617488648956,-0.009776400395509035,-0.007017796756298723,-0.010992238829243313,-0.009863414989263932,-0.008708936654118805,-0.008979783889583898,-0.009009340178189327,-0.012949041421757757,-0.008644897760408238,-0.008235314262375629,-0.0101581059500895,-0.008886479072244578,-0.009495450686726326,-0.011995663302791547,-0.012747930502899461,-0.00801565028817163,-0.010015058815371946,-0.011518381826027936,-0.01036866006054142,-0.01087021243083413,-0.01292801049997516,-0.015605438827340258,-0.012596502360291301,-0.013419805029658656,-0.011888369835680515,-0.012076208780791188,-0.01051175574312488,-0.010916672682168692,-0.016135675581080713,-0.013242692296093563,-0.008387830667086373,-0.013600288274155355,-0.011995716910480615,-0.014167034171656184,-0.01406376576091798,-0.012650924165041986,-0.010945916841010811,-0.01247643311281297,-0.011901445252542945,-0.01451365686095583,-0.013678216944989335,-0.015601013513742955,-0.014342951339245045,-0.013646720892179937,-0.014905929049429499,-0.012591131013367238
+52.339407,4.88287,-0.0025518335133377637,-0.0008768785056312235,-0.002770012778529941,-0.0033791231833100004,-0.003461134550099239,-0.004722535038345209,-0.0062249967151487605,-0.004605558360369318,-0.0021317318166610964,-0.006728340212074469,-0.004862961479239531,-0.003965991120151703,-0.0052107380414714655,-0.007436174886489559,-0.005876400395509036,-0.007717796756298724,-0.007792238829243313,-0.006963414989263934,-0.006008936654118805,-0.005479783889583897,-0.0064093401781893265,-0.009549041421757758,-0.005644897760408239,-0.004435314262375629,-0.006958105950089501,-0.004986479072244579,-0.006795450686726327,-0.008995663302791548,-0.008347930502899462,-0.00541565028817163,-0.006515058815371946,-0.008818381826027935,-0.008268660060541421,-0.008370212430834129,-0.009028010499975161,-0.012305438827340257,-0.0098965023602913,-0.011019805029658655,-0.010288369835680515,-0.010076208780791188,-0.007511755743124882,-0.009616672682168691,-0.011435675581080716,-0.010742692296093563,-0.006587830667086373,-0.012600288274155354,-0.010895716910480614,-0.010867034171656183,-0.013763765760917979,-0.010650924165041988,-0.010045916841010812,-0.009476433112812968,-0.009501445252542946,-0.011213656860955832,-0.010378216944989334,-0.011701013513742954,-0.012042951339245045,-0.011646720892179937,-0.011505929049429498,-0.010091131013367238
+52.339375,4.883022,-0.004251833513337764,-0.0023768785056312233,-0.004470012778529941,-0.00447912318331,-0.006061134550099239,-0.006022535038345209,-0.00732499671514876,-0.006105558360369318,-0.004031731816661097,-0.00812834021207447,-0.006462961479239531,-0.004965991120151703,-0.006610738041471466,-0.00783617488648956,-0.006876400395509036,-0.004417796756298723,-0.008492238829243312,-0.007263414989263934,-0.006108936654118805,-0.006279783889583897,-0.0068093401781893275,-0.009849041421757758,-0.007444897760408239,-0.00593531426237563,-0.008658105950089501,-0.005986479072244578,-0.0070954506867263265,-0.010095663302791548,-0.00914793050289946,-0.007015650288171629,-0.007315058815371946,-0.010018381826027935,-0.00876866006054142,-0.00917021243083413,-0.00952801049997516,-0.01240543882734026,-0.010596502360291301,-0.009719805029658656,-0.010088369835680516,-0.010876208780791189,-0.008111755743124881,-0.010016672682168692,-0.011735675581080716,-0.010642692296093562,-0.0049878306670863735,-0.012600288274155354,-0.011595716910480613,-0.011367034171656184,-0.013763765760917979,-0.012050924165041986,-0.010745916841010813,-0.009776433112812968,-0.010801445252542945,-0.01141365686095583,-0.011878216944989336,-0.011401013513742954,-0.010742951339245044,-0.012646720892179938,-0.011905929049429498,-0.011491131013367238
+52.339387,4.882972,-0.008451833513337765,-0.007876878505631223,-0.007170012778529941,-0.0076791231833099995,-0.010361134550099238,-0.009922535038345209,-0.00872499671514876,-0.008405558360369318,-0.005331731816661097,-0.008928340212074469,-0.010262961479239531,-0.009265991120151702,-0.009910738041471466,-0.01133617488648956,-0.010576400395509035,-0.007917796756298723,-0.011992238829243312,-0.010763414989263934,-0.009108936654118804,-0.009279783889583898,-0.010509340178189329,-0.014049041421757757,-0.010544897760408239,-0.008535314262375629,-0.0113581059500895,-0.009886479072244578,-0.010695450686726326,-0.012795663302791548,-0.013847930502899461,-0.00971565028817163,-0.011315058815371946,-0.013618381826027936,-0.011768660060541421,-0.01307021243083413,-0.015428010499975161,-0.01640543882734026,-0.0138965023602913,-0.018219805029658656,-0.012788369835680515,-0.014176208780791188,-0.01161175574312488,-0.012616672682168692,-0.016335675581080716,-0.014942692296093562,-0.014387830667086373,-0.014400288274155355,-0.013795716910480614,-0.016167034171656186,-0.01606376576091798,-0.013650924165041987,-0.012945916841010811,-0.01387643311281297,-0.013001445252542945,-0.015013656860955831,-0.014678216944989334,-0.017201013513742956,-0.018842951339245045,-0.01564672089217994,-0.016705929049429497,-0.017491131013367238
+52.339423,4.882656,-0.004551833513337764,-0.0024768785056312236,-0.0043700127785299405,-0.0047791231833100006,-0.005761134550099239,-0.007022535038345209,-0.0072249967151487605,-0.006305558360369318,-0.0039317318166610955,-0.00792834021207447,-0.00696296147923953,-0.005865991120151703,-0.007310738041471466,-0.00913617488648956,-0.007876400395509036,-0.005017796756298723,-0.009192238829243311,-0.008263414989263933,-0.006708936654118805,-0.006879783889583897,-0.007509340178189327,-0.011049041421757758,-0.005144897760408239,-0.006135314262375629,-0.0090581059500895,-0.0068864790722445775,-0.008295450686726326,-0.010195663302791548,-0.01004793050289946,-0.0072156502881716295,-0.008215058815371946,-0.010318381826027935,-0.009168660060541421,-0.009270212430834129,-0.00982801049997516,-0.01360543882734026,-0.0109965023602913,-0.010419805029658655,-0.010488369835680515,-0.010676208780791188,-0.00911175574312488,-0.010116672682168691,-0.012335675581080716,-0.011742692296093562,-0.007287830667086374,-0.013200288274155356,-0.011695716910480615,-0.010967034171656185,-0.01406376576091798,-0.012150924165041987,-0.010645916841010811,-0.010276433112812969,-0.010901445252542946,-0.012113656860955831,-0.011478216944989334,-0.012101013513742953,-0.012342951339245045,-0.012646720892179938,-0.012205929049429498,-0.010591131013367238
+52.339483,4.882107,0.008248166486662236,0.008623121494368776,0.008229987221470059,0.00722087681669,0.005538865449900761,0.005077464961654792,0.004975003284851239,0.005394441639630682,0.009768268183338903,0.004271659787925531,0.005037038520760469,0.007334008879848297,0.005489261958528535,0.0049638251135104405,0.005323599604490964,0.008182203243701277,0.0039077611707566875,0.003936585010736066,0.006391063345881195,0.0063202161104161025,0.006490659821810673,0.0020509585782422426,0.00825510223959176,0.008464685737624371,0.005441894049910499,0.007513520927755422,0.006904549313273674,0.003404336697208452,0.004752069497100539,0.0069843497118283705,0.006384941184628054,0.0035816181739720637,0.005631339939458579,0.00592978756916587,0.00507198950002484,0.0017945611726597412,0.004703497639708698,0.003780194970341346,0.004011630164319485,0.004823791219208812,0.006088244256875119,0.00528332731783131,0.003264324418919285,0.0028573077039064374,0.008612169332913627,0.002899711725844645,0.004504283089519385,0.003832965828343816,0.00193623423908202,0.0040490758349580125,0.005954083158989188,0.005523566887187031,0.0053985547474570544,0.003886343139044169,0.005621783055010664,0.003998986486257045,0.003557048660754955,0.003353279107820063,0.0033940709505705016,0.005208868986632762
+52.339395,4.882811,-0.002651833513337764,-0.0005768785056312236,-0.002270012778529941,-0.00317912318331,-0.004161134550099239,-0.005122535038345208,-0.00642499671514876,-0.005005558360369318,-0.002031731816661096,-0.00722834021207447,-0.00536296147923953,-0.004265991120151703,-0.005410738041471465,-0.00823617488648956,-0.006776400395509035,-0.004117796756298723,-0.008192238829243312,-0.007363414989263933,-0.005908936654118805,-0.0055797838895838975,-0.006309340178189327,-0.010249041421757758,-0.003144897760408239,-0.00563531426237563,-0.008058105950089501,-0.006386479072244579,-0.006895450686726326,-0.009695663302791547,-0.00964793050289946,-0.00651565028817163,-0.008215058815371946,-0.009918381826027936,-0.00816866006054142,-0.00857021243083413,-0.009628010499975161,-0.013205438827340259,-0.010596502360291301,-0.009619805029658654,-0.009688369835680515,-0.010276208780791189,-0.008111755743124881,-0.00911667268216869,-0.013135675581080716,-0.011342692296093563,-0.005587830667086373,-0.012100288274155355,-0.010495716910480615,-0.011667034171656184,-0.012763765760917981,-0.011350924165041987,-0.009845916841010811,-0.009976433112812969,-0.010701445252542945,-0.011813656860955831,-0.011478216944989334,-0.012401013513742953,-0.010742951339245044,-0.012046720892179938,-0.012405929049429498,-0.009891131013367239
+52.339482,4.882056,-0.0021518335133377635,-0.0023768785056312233,-0.001170012778529941,-0.00047912318331000013,-0.0028611345500992383,-0.0021225350383452086,-0.00372499671514876,-0.003005558360369318,0.0006682681833389038,-0.005328340212074469,-0.002762961479239531,-0.000765991120151703,-0.002310738041471465,-0.00413617488648956,-0.002776400395509035,8.220324370127643e-05,-0.0036922388292433125,-0.003963414989263933,-0.0012089366541188046,-0.0008797838895838972,-0.0021093401781893274,-0.008649041421757757,-0.0022448977604082395,-0.0007353142623756295,-0.003358105950089501,-0.0026864790722445782,-0.0019954506867263266,-0.006595663302791548,-0.00624793050289946,-0.00151565028817163,-0.0038150588153719463,-0.0062183818260279355,-0.0046686600605414215,-0.004870212430834129,-0.00702801049997516,-0.008805438827340258,-0.006196502360291302,-0.004819805029658654,-0.005088369835680516,-0.003376208780791189,-0.003311755743124881,-0.0011166726821686904,-0.0076356755810807145,-0.006642692296093562,0.00011216933291362653,-0.0042002882741553555,-0.004295716910480614,-0.006467034171656184,-0.00646376576091798,-0.005250924165041988,-0.0036459168410108113,-0.004776433112812969,-0.0045014452525429455,-0.006013656860955831,-0.005078216944989336,-0.007401013513742955,-0.008942951339245045,-0.008846720892179936,-0.006605929049429498,-0.004991131013367238
+52.339511,4.881799,-0.0005518335133377638,-0.003976878505631224,-0.001370012778529941,-0.0016791231833100002,-0.0035611345500992393,-0.004422535038345208,-0.00432499671514876,-0.004005558360369318,-0.0005317318166610961,-0.006328340212074469,-0.00436296147923953,-0.003665991120151703,-0.004910738041471466,-0.006436174886489559,-0.005376400395509035,-0.0019177967562987233,-0.005792238829243313,-0.006263414989263934,-0.0031089366541188043,-0.003479783889583897,-0.0035093401781893267,-0.008349041421757757,-0.0029448977604082396,-0.0018353142623756293,-0.005158105950089501,-0.003286479072244579,-0.004895450686726326,-0.007095663302791547,-0.007747930502899461,-0.0025156502881716293,-0.004415058815371946,-0.006018381826027937,-0.005268660060541421,-0.00407021243083413,-0.00642801049997516,-0.009805438827340258,-0.005296502360291301,-0.006319805029658654,-0.006188369835680515,-0.006276208780791189,-0.005011755743124882,-0.006516672682168691,-0.009935675581080716,-0.008542692296093562,-0.0015878306670863735,-0.007400288274155355,-0.005595716910480614,-0.006467034171656184,-0.00806376576091798,-0.005750924165041988,-0.0037459168410108115,-0.0038764331128129698,-0.0032014452525429456,-0.006013656860955831,-0.003878216944989335,-0.006401013513742955,-0.004942951339245045,-0.004146720892179937,-0.005505929049429498,-0.002991131013367238
+52.33941,4.882514,-0.004851833513337764,-0.0040768785056312234,-0.004070012778529941,-0.00517912318331,-0.0062611345500992385,-0.007522535038345209,-0.00852499671514876,-0.007105558360369318,-0.004431731816661096,-0.00902834021207447,-0.007462961479239531,-0.005765991120151703,-0.007310738041471466,-0.01053617488648956,-0.008976400395509036,-0.0062177967562987236,-0.011192238829243311,-0.010363414989263933,-0.009108936654118804,-0.008579783889583898,-0.009309340178189327,-0.013149041421757757,-0.006844897760408239,-0.00833531426237563,-0.0099581059500895,-0.009786479072244577,-0.010195450686726327,-0.012795663302791548,-0.01224793050289946,-0.00921565028817163,-0.009615058815371946,-0.012518381826027936,-0.010868660060541421,-0.01077021243083413,-0.013028010499975162,-0.01670543882734026,-0.0136965023602913,-0.013819805029658655,-0.013588369835680516,-0.012376208780791188,-0.010711755743124881,-0.012616672682168692,-0.012935675581080715,-0.012942692296093562,-0.008687830667086373,-0.015300288274155355,-0.012695716910480614,-0.014067034171656183,-0.01616376576091798,-0.013850924165041988,-0.012345916841010812,-0.01327643311281297,-0.014801445252542945,-0.014413656860955831,-0.013878216944989334,-0.016301013513742954,-0.016342951339245043,-0.015046720892179937,-0.0157059290494295,-0.007291131013367239
+52.339431,4.882341,-0.007951833513337765,-0.006776878505631224,-0.007570012778529941,-0.008379123183310001,-0.009761134550099238,-0.010722535038345209,-0.011524996715148759,-0.010305558360369319,-0.007631731816661097,-0.011528340212074469,-0.011062961479239531,-0.010165991120151704,-0.011810738041471465,-0.01183617488648956,-0.010776400395509035,-0.010317796756298724,-0.014692238829243311,-0.013363414989263933,-0.011008936654118805,-0.012979783889583898,-0.012909340178189328,-0.013849041421757758,-0.007644897760408239,-0.011035314262375629,-0.0150581059500895,-0.011286479072244579,-0.012395450686726326,-0.013095663302791547,-0.01314793050289946,-0.01251565028817163,-0.011415058815371946,-0.014218381826027936,-0.01156866006054142,-0.013270212430834129,-0.013128010499975161,-0.016805438827340258,-0.0152965023602913,-0.014619805029658655,-0.015488369835680516,-0.014776208780791188,-0.01161175574312488,-0.014316672682168692,-0.015535675581080715,-0.014242692296093562,-0.011287830667086374,-0.017500288274155357,-0.017395716910480613,-0.015767034171656185,-0.01866376576091798,-0.01695092416504199,-0.015245916841010813,-0.013476433112812969,-0.014301445252542946,-0.01581365686095583,-0.015678216944989335,-0.015901013513742953,-0.016242951339245044,-0.016646720892179938,-0.017205929049429497,-0.014291131013367238
+52.339437,4.882302,-0.006451833513337764,-0.005476878505631224,-0.005970012778529941,-0.007179123183310001,-0.008161134550099237,-0.008722535038345209,-0.01002499671514876,-0.00880555836036932,-0.005531731816661096,-0.01022834021207447,-0.009062961479239531,-0.007665991120151702,-0.009610738041471466,-0.01103617488648956,-0.010376400395509036,-0.006817796756298723,-0.010392238829243311,-0.010563414989263933,-0.008108936654118805,-0.008479783889583897,-0.009209340178189328,-0.012449041421757758,-0.0070448977604082395,-0.007935314262375629,-0.010358105950089501,-0.009486479072244577,-0.009695450686726326,-0.012795663302791548,-0.01254793050289946,-0.00841565028817163,-0.010315058815371946,-0.012018381826027935,-0.01076866006054142,-0.01167021243083413,-0.012428010499975162,-0.01640543882734026,-0.0137965023602913,-0.013419805029658656,-0.013188369835680516,-0.012776208780791188,-0.01091175574312488,-0.012716672682168691,-0.014835675581080716,-0.014042692296093562,-0.009487830667086373,-0.015100288274155355,-0.013495716910480614,-0.013867034171656184,-0.01666376576091798,-0.014650924165041988,-0.013645916841010812,-0.013776433112812968,-0.015001445252542947,-0.01601365686095583,-0.014578216944989335,-0.015201013513742954,-0.015442951339245045,-0.01634672089217994,-0.0156059290494295,-0.013991131013367238
+52.339478,4.881854,-0.007551833513337763,0.00012312149436877645,-0.0002700127785299409,-0.0016791231833100002,-0.0025611345500992384,-0.0016225350383452086,-0.00552499671514876,-0.003405558360369318,-0.0007317318166610962,-0.004028340212074469,-0.002362961479239531,-0.0011659911201517032,-0.004010738041471465,-0.00533617488648956,-0.004376400395509035,-0.00021779675629872354,-0.0049922388292433124,-0.005863414989263934,-0.0028089366541188044,-0.002879783889583897,-0.003909340178189327,-0.008849041421757757,-0.0036448977604082397,-0.0018353142623756293,-0.004958105950089501,-0.0024864790722445786,-0.003395450686726327,-0.005095663302791547,-0.005647930502899461,-0.0016156502881716297,-0.004415058815371946,-0.003918381826027936,-0.006768660060541422,-0.004770212430834129,-0.0036280104999751603,-0.007305438827340259,-0.0025965023602913012,-0.005519805029658654,-0.0033883698356805157,-0.0038762087807911886,-0.0012117557431248812,-0.0008166726821686905,-0.003935675581080715,-0.005142692296093563,0.0005121693329136266,-0.004600288274155355,-0.003095716910480614,-0.004267034171656184,-0.00516376576091798,-0.0034509241650419876,-0.0021459168410108117,-0.0030764331128129694,-0.0026014452525429457,-0.004313656860955831,-0.003278216944989335,-0.005401013513742955,-0.0037429513392450453,-0.004046720892179937,-0.004705929049429498,-0.0030911310133672383
+52.339482,4.881819,-0.004551833513337764,-0.0021768785056312237,-0.00037001277852994095,-0.0006791231833100002,-0.002161134550099239,-0.0020225350383452083,-0.00422499671514876,-0.0026055583603693186,6.826818333890376e-05,-0.004028340212074469,-0.003862961479239531,-0.000865991120151703,-0.003410738041471465,-0.00573617488648956,-0.003776400395509035,-0.0004177967562987235,-0.005492238829243313,-0.005363414989263933,-0.0027089366541188046,-0.002579783889583897,-0.003909340178189327,-0.007749041421757758,-0.00274489776040824,-0.0015353142623756293,-0.0044581059500895005,-0.0030864790722445784,-0.0038954506867263264,-0.004795663302791547,-0.0049479305028994605,-0.0006156502881716297,-0.002615058815371946,-0.005218381826027936,-0.0032686600605414213,-0.0032702124308341294,-0.0033280104999751604,-0.006305438827340259,-0.0035965023602913013,-0.0036198050296586542,-0.0026883698356805156,-0.003676208780791189,-0.002111755743124881,-0.0015166726821686904,-0.0060356755810807156,-0.0063426922960935625,0.00041216933291362656,-0.003700288274155355,-0.004095716910480615,-0.005467034171656184,-0.00736376576091798,-0.004150924165041987,-0.0017459168410108113,-0.0033764331128129693,-0.0031014452525429453,-0.004213656860955831,-0.003278216944989335,-0.0049010135137429545,-0.004442951339245046,-0.003746720892179937,-0.005505929049429498,-0.0024911310133672385
+52.339515,4.881515,-0.002651833513337764,-0.0023768785056312233,-0.002670012778529941,-0.0037791231833100005,-0.005661134550099239,-0.0052225350383452085,-0.00602499671514876,-0.004105558360369318,-0.001631731816661096,-0.005728340212074469,-0.005262961479239531,-0.003965991120151703,-0.005710738041471465,-0.00703617488648956,-0.0054764003955090354,-0.002417796756298723,-0.0066922388292433126,-0.008063414989263933,-0.004708936654118805,-0.004779783889583897,-0.005609340178189327,-0.009849041421757758,-0.00414489776040824,-0.0035353142623756294,-0.006958105950089501,-0.004486479072244578,-0.005495450686726327,-0.008895663302791547,-0.00824793050289946,-0.0049156502881716295,-0.006115058815371946,-0.007518381826027936,-0.006268660060541421,-0.00767021243083413,-0.010428010499975162,-0.01070543882734026,-0.0074965023602913015,-0.007319805029658654,-0.006388369835680516,-0.0074762087807911885,-0.005811755743124881,-0.006216672682168691,-0.010735675581080715,-0.0073426922960935625,-0.003487830667086374,-0.009000288274155355,-0.006395716910480615,-0.007767034171656184,-0.010463765760917981,-0.008950924165041988,-0.007245916841010811,-0.007976433112812969,-0.007401445252542946,-0.00991365686095583,-0.008078216944989334,-0.008901013513742954,-0.009742951339245045,-0.009646720892179937,-0.008805929049429497,-0.008291131013367238
+52.339458,4.881963,-0.0044518335133377634,0.0012231214943687766,0.001429987221470059,-0.0001791231833100002,-0.0009611345500992387,-0.0042225350383452084,-0.00272499671514876,-0.001505558360369318,0.00026826818333890385,-0.00462834021207447,-0.003762961479239531,-0.003965991120151703,-0.0036107380414714648,-0.004536174886489559,-0.0030764003955090348,-0.0010177967562987236,-0.005792238829243313,-0.005563414989263934,-0.0036089366541188048,-0.003379783889583897,-0.003709340178189327,-0.008249041421757758,-0.00204489776040824,-0.0023353142623756293,-0.004758105950089501,-0.002286479072244579,-0.0027954506867263265,-0.006595663302791548,-0.005447930502899461,-0.0020156502881716297,-0.0033150588153719462,-0.007018381826027936,-0.004768660060541422,-0.004170212430834129,-0.00432801049997516,-0.009305438827340258,-0.005996502360291301,-0.0070198050296586545,-0.006088369835680516,-0.006476208780791189,-0.004911755743124881,-0.00631667268216869,-0.006935675581080715,-0.0060426922960935625,-0.002487830667086373,-0.008300288274155356,-0.007095716910480615,-0.005567034171656183,-0.01006376576091798,-0.008250924165041987,-0.006145916841010812,-0.005676433112812969,-0.0065014452525429456,-0.006113656860955831,-0.006078216944989336,-0.006601013513742955,-0.008542951339245045,-0.008346720892179938,-0.007005929049429498,-0.005191131013367239
+52.339488,4.881582,-0.007551833513337763,-0.0047768785056312235,-0.004470012778529941,-0.0018791231833100003,-0.0035611345500992393,-0.0035225350383452083,-0.00602499671514876,-0.004505558360369318,-0.0031317318166610964,-0.00792834021207447,-0.0057629614792395305,-0.004265991120151703,-0.005710738041471465,-0.00833617488648956,-0.0064764003955090355,-0.0019177967562987233,-0.007592238829243312,-0.005663414989263934,-0.006208936654118805,-0.0055797838895838975,-0.007209340178189327,-0.010649041421757757,-0.0070448977604082395,-0.0052353142623756295,-0.0087581059500895,-0.006986479072244579,-0.006195450686726326,-0.009395663302791547,-0.00824793050289946,-0.00601565028817163,-0.007415058815371946,-0.009818381826027936,-0.00836866006054142,-0.00817021243083413,-0.007128010499975161,-0.011105438827340258,-0.0092965023602913,-0.008319805029658655,-0.007988369835680516,-0.008076208780791188,-0.006211755743124881,-0.00601667268216869,-0.008335675581080716,-0.011942692296093562,-0.0038878306670863732,-0.009000288274155355,-0.008695716910480614,-0.009867034171656184,-0.012063765760917979,-0.009050924165041987,-0.007545916841010811,-0.007476433112812968,-0.008001445252542946,-0.009613656860955831,-0.008778216944989335,-0.009401013513742954,-0.010142951339245044,-0.009146720892179936,-0.011105929049429497,-0.008291131013367238
+52.339478,4.88157,-0.003951833513337764,-0.0029768785056312236,-0.003570012778529941,-0.0009791231833100001,-0.0029611345500992385,-0.0018225350383452086,-0.00502499671514876,-0.003405558360369318,-0.0014317318166610963,-0.00622834021207447,-0.004262961479239531,-0.0033659911201517033,-0.005410738041471465,-0.00783617488648956,-0.005976400395509035,-0.002117796756298723,-0.006492238829243313,-0.006163414989263934,-0.005708936654118805,-0.005079783889583897,-0.006209340178189328,-0.010549041421757758,-0.005744897760408239,-0.004535314262375629,-0.008058105950089501,-0.005786479072244579,-0.004995450686726326,-0.008895663302791547,-0.007147930502899461,-0.0059156502881716295,-0.006915058815371946,-0.008618381826027937,-0.0073686600605414225,-0.00737021243083413,-0.00642801049997516,-0.010905438827340259,-0.0087965023602913,-0.008119805029658655,-0.006888369835680515,-0.0071762087807911885,-0.005411755743124882,-0.00571667268216869,-0.006835675581080714,-0.010442692296093563,-0.0036878306670863736,-0.009400288274155354,-0.008895716910480614,-0.008967034171656185,-0.01126376576091798,-0.008750924165041987,-0.007145916841010812,-0.00697643311281297,-0.007501445252542946,-0.009613656860955831,-0.008178216944989335,-0.008101013513742953,-0.009042951339245044,-0.008046720892179938,-0.008905929049429499,-0.006991131013367239
+52.424049,4.898329,0.002148166486662236,0.00042312149436877643,-0.002170012778529941,0.0019208768166899997,0.0014388654499007613,0.0015774649616547914,-0.00232499671514876,-0.0012055583603693182,0.0008682681833389039,-0.0035283402120744696,-0.0025629614792395308,-0.0013659911201517028,-0.002710738041471465,-0.00573617488648956,-0.003276400395509035,-0.0031177967562987232,-0.0035922388292433122,-0.004263414989263934,-0.0027089366541188046,-0.003779783889583897,-0.002009340178189327,-0.0020490414217577573,-0.0023448977604082397,-0.0012353142623756294,-0.004058105950089501,0.0023135209277554214,-0.0024954506867263266,0.0002043366972084521,0.001452069497100539,0.0017843497118283703,-0.00031505881537194634,0.0001816181739720639,0.0007313399394585785,0.00032978756916587047,0.0008719895000248396,-0.0006054388273402586,-0.000996502360291301,-0.0007198050296586544,-0.0015883698356805155,-0.006876208780791189,0.0004882442568751189,-0.0021166726821686905,-0.004935675581080715,-0.004742692296093563,-0.003187830667086374,-0.002900288274155355,-0.0036957169104806144,-0.004767034171656184,-0.006563765760917981,0.0021490758349580127,-0.00024591684101081144,-0.0007764331128129695,0.0018985547474570544,-0.004113656860955831,-0.0031782169449893352,0.0002989864862570454,0.0014570486607549547,-0.0006467208921799373,0.0011940709505705014,0.00010886898663276185
+52.423681,4.899849,0.0011481664866622363,-0.0040768785056312234,-0.0016700127785299408,-0.0006791231833100002,-0.00036113455009923866,0.00017746496165479153,-0.00172499671514876,0.0007944416396306818,-0.0007317318166610962,-0.0031283402120744694,3.7038520760469205e-05,0.000434008879848297,-0.0013107380414714652,-0.006136174886489559,-0.0008764003955090352,-0.0004177967562987235,-0.0033922388292433126,-0.0020634149892639333,0.00019106334588119548,-0.001779783889583897,-0.0001093401781893271,-0.003449041421757757,-0.00434489776040824,-0.0005353142623756294,-0.002258105950089501,0.0019135209277554215,-0.0021954506867263267,-0.0041956633027915476,0.00045206949710053883,0.0007843497118283703,-0.0038150588153719463,-0.0025183818260279362,-0.004868660060541422,-0.0033702124308341293,-0.00722801049997516,-0.005005438827340258,-0.0017965023602913009,-0.003519805029658654,-0.0031883698356805156,-0.005976208780791189,-0.002711755743124881,-0.0037166726821686903,-0.005335675581080715,-0.006242692296093562,-0.0026878306670863735,-0.006900288274155355,-0.0034957169104806144,-0.0075670341716561835,-0.004263765760917981,-0.0030509241650419875,0.0003540831589891885,-0.00547643311281297,-0.005001445252542945,-0.005113656860955831,-0.004378216944989336,-0.003801013513742955,-0.004742951339245046,-0.001646720892179937,-0.009405929049429497,-0.0028911310133672386
+52.423636,4.9,-0.010151833513337764,-0.012976878505631223,-0.013570012778529941,-0.01037912318331,-0.012661134550099238,-0.013922535038345209,-0.01332499671514876,-0.013205558360369319,-0.008531731816661097,-0.01572834021207447,-0.013862961479239532,-0.012365991120151704,-0.014110738041471465,-0.01503617488648956,-0.013876400395509036,-0.013117796756298723,-0.015192238829243311,-0.016663414989263933,-0.014008936654118806,-0.015379783889583899,-0.013509340178189328,-0.013049041421757758,-0.01304489776040824,-0.01303531426237563,-0.016658105950089503,-0.012486479072244578,-0.015795450686726328,-0.015495663302791547,-0.013047930502899461,-0.01431565028817163,-0.014915058815371945,-0.016518381826027936,-0.014268660060541422,-0.01427021243083413,-0.015028010499975162,-0.01750543882734026,-0.0144965023602913,-0.015419805029658656,-0.017588369835680514,-0.02057620878079119,-0.01611175574312488,-0.01661667268216869,-0.019035675581080717,-0.017342692296093563,-0.016587830667086374,-0.017300288274155355,-0.018095716910480616,-0.019167034171656185,-0.02066376576091798,-0.013750924165041986,-0.014845916841010812,-0.01537643311281297,-0.015001445252542947,-0.01981365686095583,-0.017278216944989336,-0.016301013513742954,-0.017142951339245045,-0.017246720892179938,-0.017805929049429497,-0.015391131013367238
+52.423579,4.900034,0.0002481664866622363,-0.0027768785056312235,-0.0019700127785299408,-0.00207912318331,-0.0018611345500992385,-0.004522535038345208,-0.00152499671514876,-0.0017055583603693182,0.002468268183338904,-0.0027283402120744696,-0.002662961479239531,-0.00016599112015170292,-0.003010738041471465,-0.0005361748864895594,-0.004076400395509035,-0.003917796756298724,-0.005492238829243313,-0.005263414989263934,-0.004408936654118805,-0.005879783889583897,-0.002909340178189327,-0.0020490414217577573,-0.0017448977604082399,-0.004735314262375629,-0.005858105950089501,-0.0007864790722445785,-0.0040954506867263265,-0.005395663302791547,-0.002247930502899461,-0.0032156502881716294,-0.0023150588153719462,-0.0042183818260279355,-0.0030686600605414212,-0.00437021243083413,-0.004228010499975161,-0.006405438827340258,-0.002396502360291301,-0.007119805029658654,-0.007488369835680515,-0.009876208780791188,-0.004811755743124881,-0.00701667268216869,-0.006435675581080715,-0.0060426922960935625,-0.006587830667086373,-0.006900288274155355,-0.006095716910480615,-0.007067034171656184,-0.00906376576091798,-0.002850924165041988,-0.004245916841010812,-0.0031764331128129697,-0.004001445252542945,-0.00831365686095583,-0.007978216944989335,-0.0035010135137429547,-0.006842951339245045,-0.007146720892179937,-0.005105929049429498,-0.004391131013367238
+52.423537,4.90034,0.0002481664866622363,-0.00037687850563122356,-0.000970012778529941,0.0009208768166899999,0.0012388654499007612,0.00027746496165479155,-0.0009249967151487601,0.00019444163963068176,0.0018682681833389037,-0.00392834021207447,-0.0001629614792395308,0.001234008879848297,-0.00041073804147146516,-0.006436174886489559,-0.001376400395509035,-0.0006177967562987236,-0.0015922388292433124,-0.0013634149892639337,-8.936654118804556e-06,-0.0010797838895838974,0.0010906598218106728,0.0007509585782422424,0.0009551022395917605,-0.0005353142623756294,-0.003158105950089501,0.0025135209277554215,-0.0019954506867263266,0.00010433669720845212,5.2069497100538866e-05,0.00018434971182837022,-0.0029150588153719465,-0.002318381826027936,-0.00016866006054142143,-0.0005702124308341295,-0.0029280104999751602,-0.0034054388273402586,-0.0020965023602913012,-0.0022198050296586545,-0.0039883698356805155,-0.005676208780791189,-0.003011755743124881,-0.0024166726821686904,-0.005135675581080715,-0.0040426922960935625,-0.003487830667086374,-0.003700288274155355,-0.003095716910480614,-0.004067034171656184,-0.00526376576091798,4.9075834958012656e-05,-0.0015459168410108116,-0.0017764331128129695,-0.0028014452525429454,-0.004813656860955831,-0.005778216944989335,-0.003701013513742955,-0.004142951339245046,-0.0020467208921799373,-0.0035059290494294988,-0.0038911310133672387
+52.423457,4.900753,0.003548166486662236,-0.0013768785056312237,-0.0004700127785299409,0.0026208768166899998,0.0024388654499007613,0.0010774649616547916,-0.00242499671514876,0.0008944416396306817,0.0014682681833389037,-0.0029283402120744697,0.0003370385207604692,-0.000765991120151703,-1.0738041471465142e-05,-0.0033361748864895596,-0.0007764003955090351,-0.0023177967562987237,-0.0020922388292433126,-0.0031634149892639336,-0.0022089366541188046,-0.003979783889583897,-9.340178189327052e-06,-0.0011490414217577574,-0.0004448977604082395,-3.531426237562952e-05,-0.002658105950089501,0.0012135209277554216,-0.0021954506867263267,-0.002095663302791548,0.0008520694971005388,0.0009843497118283704,-0.0020150588153719463,-0.0009183818260279362,-0.0011686600605414215,-0.0022702124308341294,-0.0026280104999751603,-0.0034054388273402586,-0.000796502360291301,-0.0027198050296586545,-0.0028883698356805157,-0.006076208780791188,-0.001111755743124881,-0.0024166726821686904,-0.0060356755810807156,-0.0040426922960935625,-0.0038878306670863732,-0.005600288274155355,-0.005195716910480614,-0.004267034171656184,-0.00636376576091798,-0.00045092416504198735,-0.0028459168410108118,-0.00547643311281297,-1.4452525429457406e-06,-0.003713656860955831,-0.002478216944989335,0.0009989864862570454,-0.0013429513392450452,-0.0017467208921799371,-0.0012059290494294986,-0.0021911310133672377
+52.423532,4.899929,-0.001251833513337764,-0.004976878505631224,-0.004070012778529941,-0.0034791231833099998,-0.004061134550099239,-0.0052225350383452085,-0.00472499671514876,-0.001805558360369318,-3.173181666109607e-05,-0.005328340212074469,-0.004162961479239531,-0.004165991120151703,-0.005710738041471465,-0.0072361748864895594,-0.007576400395509036,-0.006817796756298723,-0.006192238829243313,-0.005663414989263934,-0.0050089366541188046,-0.007379783889583898,-0.005609340178189327,-0.007749041421757758,-0.005944897760408239,-0.005435314262375629,-0.008258105950089502,-0.0034864790722445786,-0.0070954506867263265,-0.008195663302791548,-0.006147930502899461,-0.004815650288171629,-0.006115058815371946,-0.005918381826027936,-0.0056686600605414215,-0.006470212430834129,-0.0063280104999751605,-0.007805438827340258,-0.005996502360291301,-0.008519805029658656,-0.008388369835680516,-0.012376208780791188,-0.0063117557431248816,-0.00731667268216869,-0.011535675581080715,-0.009042692296093563,-0.008287830667086373,-0.009400288274155354,-0.009495716910480614,-0.011867034171656184,-0.01306376576091798,-0.006850924165041987,-0.008845916841010812,-0.009376433112812969,-0.006301445252542946,-0.01031365686095583,-0.007178216944989335,-0.006301013513742955,-0.008242951339245045,-0.005846720892179937,-0.0049059290494294985,-0.005291131013367238
+52.423367,4.901043,0.0005481664866622362,-0.0007768785056312236,-0.0019700127785299408,-0.0014791231833100001,-0.0009611345500992387,0.00017746496165479153,-0.0032249967151487596,-0.0010055583603693183,0.0014682681833389037,-0.00452834021207447,-0.001962961479239531,-0.002565991120151703,-0.003810738041471465,-0.00673617488648956,-0.004976400395509035,-0.006617796756298724,-0.005492238829243313,-0.0054634149892639336,-0.0040089366541188045,-0.004879783889583897,-0.000909340178189327,-0.0042490414217577575,-0.0006448977604082396,-0.0008353142623756296,-0.004758105950089501,-0.0006864790722445786,-0.0029954506867263266,-0.003095663302791548,-0.0009479305028994612,0.0006843497118283702,-0.0037150588153719464,-0.001118381826027936,-0.0035686600605414217,-0.0019702124308341295,-0.0013280104999751604,-0.005005438827340258,-0.0017965023602913009,-0.003519805029658654,-0.004388369835680516,-0.00787620878079119,-0.0015117557431248811,-0.0041166726821686905,-0.006435675581080715,-0.005942692296093562,-0.004587830667086373,-0.0039002882741553547,-0.005895716910480614,-0.007067034171656184,-0.00786376576091798,-0.0017509241650419875,-0.0038459168410108118,-0.0036764331128129693,-0.0032014452525429456,-0.006413656860955831,-0.003878216944989335,-0.0030010135137429547,-0.004942951339245045,-0.003146720892179937,-0.0033059290494294987,-0.003591131013367238
+52.423411,4.900654,0.0002481664866622363,-0.004676878505631224,-0.004870012778529941,-0.0013791231833100003,-0.0029611345500992385,-0.0011225350383452085,-0.00562499671514876,-0.0028055583603693183,-0.002631731816661096,-0.00882834021207447,-0.005162961479239531,0.000634008879848297,-0.001410738041471465,-0.0046361748864895596,-0.002876400395509035,-0.003717796756298723,-0.0030922388292433127,0.0007365850107360664,0.0030910633458811954,-0.001979783889583897,-0.003309340178189327,-0.0023490414217577577,-0.0038448977604082393,-0.0018353142623756293,-0.004758105950089501,-0.0009864790722445786,-0.003095450686726327,-0.005995663302791548,-0.0032479305028994612,-0.0026156502881716295,-0.004715058815371946,-0.004018381826027937,-0.006168660060541422,-0.00437021243083413,-0.0021280104999751607,-0.005305438827340259,-0.0027965023602913013,-0.0026198050296586542,-0.004188369835680515,-0.010076208780791188,-0.004411755743124882,-0.0038166726821686906,-0.005235675581080715,-0.0053426922960935624,-0.0036878306670863736,-0.0038002882741553553,-0.005395716910480615,-0.006967034171656184,-0.008763765760917981,-0.0026509241650419873,-0.0036459168410108113,-0.003276433112812969,-0.0068014452525429455,-0.008013656860955832,-0.005978216944989336,-0.007401013513742955,-0.005942951339245045,-0.006446720892179937,-0.004405929049429498,0.0011088689866327619
+52.423345,4.901179,0.0027481664866622364,-0.0022768785056312235,-0.002870012778529941,0.00102087681669,0.0013388654499007615,-0.0012225350383452086,-0.0009249967151487601,0.0015944416396306818,0.006468268183338904,-0.0015283402120744695,-0.004262961479239531,-0.001565991120151703,-0.0036107380414714648,-0.0031361748864895595,-0.0030764003955090348,-0.0045177967562987234,-0.004592238829243312,-0.004063414989263933,-0.0021089366541188043,-0.003679783889583897,9.065982181067278e-05,-0.0021490414217577576,-0.0005448977604082393,-0.0022353142623756294,-0.005258105950089501,-0.00048647907224457854,-0.0010954506867263264,-0.0003956633027915479,-0.00044793050289946114,8.434971182837018e-05,-0.0025150588153719463,-0.0029183818260279364,-0.0029686600605414214,-0.0035702124308341293,-0.0033280104999751604,-0.004305438827340259,-0.002196502360291301,-0.003519805029658654,-0.004488369835680515,-0.00787620878079119,-0.002811755743124881,-0.0027166726821686903,-0.006135675581080715,-0.005242692296093562,-0.005687830667086374,-0.006000288274155355,-0.0066957169104806145,-0.005967034171656184,-0.00736376576091798,-0.0014509241650419876,-0.0040459168410108114,-0.0038764331128129698,-0.0036014452525429458,-0.005713656860955831,-0.0052782169449893356,-0.0049010135137429545,-0.003342951339245045,-0.004646720892179937,-0.0052059290494294985,-0.004691131013367238
+52.423332,4.901237,4.816648666223621e-05,-0.0026768785056312232,-0.002770012778529941,-0.0005791231833100002,-0.0017611345500992387,-0.0030225350383452083,-0.0026249967151487598,-0.0025055583603693183,0.0005682681833389038,-0.005028340212074469,-0.0025629614792395308,-0.001765991120151703,-0.0036107380414714648,-0.00433617488648956,-0.003176400395509035,-0.0038177967562987233,-0.0046922388292433125,-0.003963414989263933,-0.0038089366541188044,-0.0045797838895838975,-0.001209340178189327,-0.0026490414217577576,-0.0007448977604082394,-0.0019353142623756295,-0.005258105950089501,-0.0013864790722445787,-0.0028954506867263268,-0.003195663302791548,-0.001647930502899461,-0.00211565028817163,-0.004315058815371946,-0.004318381826027937,-0.004268660060541421,-0.0039702124308341295,-0.00432801049997516,-0.004805438827340259,-0.003496502360291301,-0.005119805029658654,-0.005088369835680516,-0.007776208780791188,-0.003911755743124881,-0.00401667268216869,-0.006735675581080715,-0.004742692296093563,-0.004887830667086373,-0.005400288274155355,-0.005895716910480614,-0.006067034171656184,-0.00866376576091798,-0.0018509241650419873,-0.0026459168410108112,-0.003976433112812969,-0.003301445252542946,-0.006113656860955831,-0.0045782169449893355,-0.004001013513742955,-0.005942951339245045,-0.005046720892179937,-0.0062059290494294985,-0.004291131013367238
+52.42331,4.901157,0.004648166486662236,0.004123121494368776,0.004829987221470059,0.00522087681669,0.004838865449900761,0.003977464961654791,0.0012750032848512398,0.003494441639630682,0.007868268183338904,0.00267165978792553,0.003837038520760469,0.006334008879848297,0.003789261958528535,0.0014638251135104404,0.005123599604490965,0.0023822032437012764,0.004507761170756687,0.0032365850107360667,0.003991063345881196,0.003220216110416103,0.006890659821810673,0.005550958578242242,0.004955102239591761,0.004864685737624371,0.0018418940499104989,0.006813520927755421,0.0026045493132736733,0.002404336697208452,0.009052069497100539,0.00618434971182837,0.004484941184628054,0.004981618173972064,0.0009313399394585786,0.0033297875691658705,0.00617198950002484,0.003894561172659741,0.0044034976397086985,0.0015801949703413457,0.0013116301643194845,-0.0018762087807911887,0.004188244256875119,0.0027833273178313094,0.0002643244189192849,0.002357307703906438,0.0018121693329136265,0.0015997117258446448,0.0014042830895193857,-6.703417165618395e-05,-0.0015637657609179803,0.005549075834958013,0.0028540831589891884,0.0033235668871870305,0.003298554747457054,0.000686343139044169,0.002621783055010665,0.0056989864862570455,0.002257048660754955,0.0009532791078200628,0.005294070950570502,0.004008868986632762
+52.423264,4.901454,0.0010481664866622362,-0.0006768785056312236,-0.001770012778529941,0.00022087681668999976,-0.0014611345500992387,-0.0021225350383452086,-0.00332499671514876,-0.0029055583603693185,0.002468268183338904,-0.00422834021207447,-0.0025629614792395308,-0.001765991120151703,-0.003010738041471465,-0.004036174886489559,-0.0012764003955090353,-0.004717796756298723,-0.0027922388292433123,-0.003663414989263933,-0.0031089366541188043,-0.0018797838895838969,0.0006906598218106728,-0.006749041421757758,5.510223959176051e-05,-0.0004353142623756294,-0.005858105950089501,1.352092775542147e-05,-0.004295450686726326,-0.004995663302791548,-0.0036479305028994614,-0.0026156502881716295,-0.003915058815371946,-0.004818381826027936,-0.004768660060541422,-0.00467021243083413,-0.004828010499975161,-0.006005438827340259,-0.003496502360291301,-0.0060198050296586545,-0.005188369835680515,-0.008276208780791189,-0.0038117557431248806,-0.0021166726821686905,-0.006735675581080715,-0.005242692296093562,-0.0038878306670863732,-0.005100288274155355,-0.0037957169104806143,-0.006067034171656184,-0.00766376576091798,-0.0013509241650419873,-0.0024459168410108116,-0.0027764331128129695,-0.0021014452525429453,-0.003913656860955831,-0.003378216944989335,-0.0026010135137429545,-0.005942951339245045,-0.004046720892179937,-0.005105929049429498,-0.0034911310133672385
+52.423186,4.901719,0.002148166486662236,0.0006231214943687764,0.0003299872214700591,0.00202087681669,-6.113455009923864e-05,-0.0011225350383452085,-0.00122499671514876,-0.00020555836036931826,0.006068268183338904,-0.00262834021207447,-0.0025629614792395308,3.400887984829695e-05,-0.003510738041471465,-0.0026361748864895595,-0.001876400395509035,-0.0042177967562987235,-0.0033922388292433126,-0.0030634149892639333,-0.0013089366541188044,-0.002079783889583897,-9.340178189327052e-06,-0.0008490414217577574,-0.00014489776040823958,-0.0020353142623756293,-0.004958105950089501,-0.00018647907224457862,-0.0035954506867263264,-0.002495663302791548,0.0017520694971005389,-0.0014156502881716296,-0.0023150588153719462,-0.003118381826027936,-0.002368660060541421,-0.0010702124308341295,-0.0012280104999751605,-0.0036054388273402587,-0.0020965023602913012,-0.0047198050296586545,-0.004788369835680516,-0.007576208780791188,-0.0035117557431248807,-0.003916672682168691,-0.007035675581080715,-0.0050426922960935625,-0.002487830667086373,-0.0038002882741553553,-0.0034957169104806144,-0.0035670341716561842,-0.008163765760917981,-0.0025509241650419874,-0.0012459168410108112,-0.0033764331128129693,-0.00020144525254294572,-0.003713656860955831,-0.005678216944989336,0.0006989864862570454,-0.003342951339245045,-0.005146720892179937,-0.004405929049429498,-0.002691131013367238
+52.423291,4.900825,-0.0004518335133377638,-0.006576878505631224,-0.006870012778529941,-0.00197912318331,-0.0013611345500992387,-0.0014225350383452085,-0.00612499671514876,-0.0032055583603693184,-0.0031317318166610964,-0.00842834021207447,-0.00636296147923953,-0.009265991120151702,-0.007410738041471465,-0.01133617488648956,-0.008076400395509036,-0.010117796756298723,-0.011392238829243312,-0.010763414989263934,-0.009508936654118805,-0.010779783889583897,-0.007009340178189326,-0.008749041421757758,-0.007444897760408239,-0.008235314262375629,-0.0102581059500895,-0.005486479072244579,-0.008895450686726326,-0.007795663302791548,-0.005647930502899461,-0.0022156502881716294,-0.008615058815371945,-0.005618381826027936,-0.006668660060541422,-0.00797021243083413,-0.00752801049997516,-0.009405438827340257,-0.007696502360291301,-0.009119805029658656,-0.010488369835680515,-0.014476208780791188,-0.007711755743124881,-0.012416672682168691,-0.011935675581080716,-0.012442692296093563,-0.010587830667086373,-0.013300288274155355,-0.013395716910480615,-0.011967034171656184,-0.01516376576091798,-0.008150924165041987,-0.008545916841010812,-0.01077643311281297,-0.006901445252542946,-0.011013656860955831,-0.008778216944989335,-0.008501013513742954,-0.008542951339245045,-0.006346720892179937,-0.007605929049429498,-0.007991131013367238
+52.423114,4.902062,0.0004481664866622362,0.0006231214943687764,-0.003370012778529941,-0.0021791231833100002,-0.0035611345500992393,-0.0019225350383452085,-0.00422499671514876,-0.0025055583603693183,0.0007682681833389039,-0.006728340212074469,-0.002862961479239531,-0.001565991120151703,-0.003310738041471465,-0.005836174886489559,-0.003876400395509035,-0.004317796756298723,-0.004292238829243312,-0.0038634149892639337,-0.0035089366541188045,-0.005079783889583897,-0.001409340178189327,-0.0026490414217577576,-0.0008448977604082397,-0.0030353142623756294,-0.006858105950089501,-0.0009864790722445786,-0.0050954506867263265,-0.003495663302791548,5.2069497100538866e-05,-0.00241565028817163,-0.0018150588153719464,-0.004318381826027937,-0.004568660060541422,-0.0025702124308341293,-0.0014280104999751604,-0.0065054388273402585,-0.003996502360291301,-0.005319805029658654,-0.005588369835680515,-0.00847620878079119,-0.004111755743124881,-0.004916672682168691,-0.006835675581080714,-0.004342692296093562,-0.006087830667086374,-0.0058002882741553545,-0.005195716910480614,-0.006867034171656183,-0.008563765760917979,-0.0023509241650419874,-0.004445916841010812,-0.004176433112812969,-0.003301445252542946,-0.006213656860955831,-0.005078216944989336,-0.004501013513742954,-0.004042951339245046,-0.005846720892179937,-0.006305929049429498,-0.002591131013367238
+52.423244,4.90096,0.0006481664866622362,-0.004576878505631224,-0.005470012778529941,-0.00127912318331,-0.0011611345500992386,-0.0007225350383452086,-0.00572499671514876,-0.004305558360369318,-0.000831731816661096,-0.008928340212074469,-0.0057629614792395305,-0.007665991120151702,-0.007410738041471465,-0.00953617488648956,-0.007676400395509035,-0.008817796756298723,-0.014692238829243311,-0.009463414989263933,-0.009108936654118804,-0.010279783889583899,-0.007209340178189327,-0.006949041421757758,-0.006544897760408239,-0.0062353142623756295,-0.010958105950089501,-0.004386479072244579,-0.0070954506867263265,-0.005695663302791547,-0.0046479305028994606,-0.004815650288171629,-0.007515058815371946,-0.005118381826027936,-0.005468660060541422,-0.006570212430834129,-0.006528010499975161,-0.008305438827340259,-0.0078965023602913,-0.008119805029658655,-0.008588369835680516,-0.012276208780791189,-0.007011755743124882,-0.009316672682168691,-0.011535675581080715,-0.010542692296093562,-0.011387830667086374,-0.011600288274155355,-0.012495716910480615,-0.011967034171656184,-0.01516376576091798,-0.008850924165041987,-0.009245916841010811,-0.010376433112812968,-0.006601445252542946,-0.01191365686095583,-0.009278216944989334,-0.007701013513742955,-0.008542951339245045,-0.007346720892179937,-0.007905929049429498,-0.007491131013367238
+52.423142,4.901719,-0.0022518335133377637,-0.0035768785056312234,-0.0053700127785299406,-0.00247912318331,-0.003761134550099239,-0.0034225350383452085,-0.00542499671514876,-0.0035055583603693184,-0.002631731816661096,-0.00852834021207447,-0.004562961479239531,-0.0030659911201517034,-0.004610738041471466,-0.009236174886489559,-0.0061764003955090355,-0.006617796756298724,-0.006392238829243313,-0.005363414989263933,-0.004508936654118805,-0.007179783889583897,-0.003909340178189327,-0.007149041421757757,-0.00584489776040824,-0.004135314262375629,-0.0081581059500895,-0.0031864790722445787,-0.006495450686726327,-0.006695663302791547,-0.006147930502899461,-0.004215650288171629,-0.007115058815371946,-0.007318381826027936,-0.007968660060541422,-0.00607021243083413,-0.00672801049997516,-0.00850543882734026,-0.0064965023602913015,-0.008519805029658656,-0.006888369835680515,-0.012776208780791188,-0.007011755743124882,-0.00701667268216869,-0.010535675581080716,-0.009442692296093562,-0.007787830667086373,-0.006700288274155355,-0.007995716910480614,-0.011467034171656183,-0.01056376576091798,-0.005450924165041988,-0.007345916841010812,-0.007376433112812969,-0.007501445252542946,-0.00941365686095583,-0.008678216944989334,-0.007801013513742954,-0.009442951339245045,-0.008946720892179938,-0.008405929049429498,-0.008791131013367239
+52.423115,4.901914,0.0030481664866622363,-0.0010768785056312236,0.0004299872214700591,0.0011208768166899997,-0.00026113455009923873,-0.0019225350383452085,-0.0029249967151487597,-0.0005055583603693183,0.005068268183338904,-0.0013283402120744697,-0.0017629614792395308,0.001734008879848297,-0.0018107380414714653,-0.002836174886489559,-0.001376400395509035,-0.0036177967562987237,-0.0007922388292433125,-0.0019634149892639335,-0.0004089366541188045,-0.0014797838895838971,0.0010906598218106728,-0.0002490414217577574,0.0020551022395917606,-0.0008353142623756296,-0.005158105950089501,0.00011352092775542152,-0.0026954506867263267,-0.0003956633027915479,0.0021520694971005386,-0.00021565028817162974,-0.0009150588153719463,-0.0020183818260279362,-0.002068660060541421,0.0004297875691658705,-0.0011280104999751603,-0.002705438827340259,-0.0022965023602913013,-0.0008198050296586544,-0.0039883698356805155,-0.006776208780791189,-0.002711755743124881,-0.0011166726821686904,-0.005035675581080715,-0.0029426922960935627,-0.0020878306670863737,-0.002000288274155355,-0.0019957169104806143,-0.002967034171656184,-0.00636376576091798,-5.092416504198739e-05,-0.0013459168410108115,-0.0011764331128129692,-0.0015014452525429457,-0.004013656860955831,-0.002978216944989335,-0.002201013513742955,-0.004142951339245046,-0.0020467208921799373,-0.0026059290494294986,-0.0017911310133672381
+52.423157,4.901545,0.0037481664866622364,-0.00047687850563122355,0.0012299872214700592,0.0032208768166899996,0.0004388654499007613,0.0008774649616547915,0.0008750032848512399,0.0012944416396306817,0.002068268183338904,-0.004428340212074469,0.0011370385207604692,0.001834008879848297,-0.00011073804147146515,-0.0035361748864895593,0.0007235996044909648,-0.0005177967562987236,-0.0014922388292433124,-0.0008634149892639334,-0.00020893665411880454,-0.0010797838895838974,0.003090659821810673,0.0002509585782422426,0.00035510223959176043,0.0009646857376243705,-0.002458105950089501,0.003213520927755421,-0.0015954506867263268,0.0002043366972084521,-0.00034793050289946115,0.0013843497118283703,-0.0011150588153719463,-0.00041838182602793616,-0.0003686600605414214,-0.0002702124308341295,7.198950002483952e-05,-0.0009054388273402586,0.000503497639708699,-0.0027198050296586545,-0.0019883698356805155,-0.006476208780791189,-0.00041175574312488116,-0.0004166726821686905,-0.0029356755810807152,-0.002842692296093563,-0.002187830667086373,-0.003100288274155355,-0.002395716910480614,-0.003167034171656184,-0.00506376576091798,0.0005490758349580126,0.0003540831589891885,-0.0007764331128129695,-0.00030144525254294577,-0.002413656860955831,-0.0014782169449893351,-0.0008010135137429546,-0.0013429513392450452,-0.001646720892179937,-0.0015059290494294985,-0.00039113101336723816
+52.423113,4.901823,0.0002481664866622363,-0.0019768785056312236,-0.0019700127785299408,-0.00127912318331,-0.002161134550099239,-0.0014225350383452085,-0.00312499671514876,-0.0022055583603693184,-0.0007317318166610962,-0.00522834021207447,-0.0014629614792395307,-0.0013659911201517028,-0.002710738041471465,-0.006536174886489559,-0.003676400395509035,-0.006617796756298724,-0.005892238829243312,-0.0031634149892639336,-0.0020089366541188045,-0.004179783889583897,-0.0022093401781893268,-0.0024490414217577575,-0.0026448977604082396,-0.003735314262375629,-0.004858105950089501,-0.0007864790722445785,-0.0035954506867263264,-0.003295663302791548,-0.002147930502899461,0.0009843497118283704,-0.0032150588153719464,-0.003118381826027936,-0.0029686600605414214,-0.0027702124308341294,-0.0033280104999751604,-0.005305438827340259,-0.003196502360291301,-0.004419805029658655,-0.004688369835680516,-0.007276208780791188,-0.004511755743124881,-0.0034166726821686904,-0.0063356755810807155,-0.005542692296093562,-0.0049878306670863735,-0.0038002882741553553,-0.004495716910480614,-0.006867034171656183,-0.00696376576091798,-0.0012509241650419875,-0.0026459168410108112,-0.00467643311281297,-0.0031014452525429453,-0.005913656860955831,-0.005378216944989336,-0.004301013513742955,-0.005942951339245045,-0.005046720892179937,-0.0072059290494294985,-0.004591131013367238
+52.423061,4.902213,0.005648166486662236,0.0014231214943687762,0.0011299872214700591,0.0017208768166899998,0.0015388654499007613,7.746496165479157e-05,0.00017500328485124,0.0010944416396306818,0.005068268183338904,-0.0011283402120744696,0.0013370385207604693,0.003034008879848297,0.0004892619585285348,-0.0014361748864895594,0.0001235996044909648,-0.0009177967562987235,-0.00029223882924331237,-6.341498926393349e-05,0.00029106334588119547,0.0009202161104161029,0.002990659821810673,0.0008509585782422427,0.0030551022395917606,0.0013646857376243705,-0.001258105950089501,0.0028135209277554214,-0.0002954506867263266,0.0015043366972084522,0.0039520694971005394,0.0017843497118283703,0.0017849411846280537,-0.00011838182602793624,0.0002313399394585786,0.0013297875691658705,0.0024719895000248396,-0.0023054388273402587,0.000503497639708699,-0.0001198050296586544,-0.0018883698356805154,-0.004576208780791189,-0.00041175574312488116,-0.0008166726821686905,-0.002535675581080715,-0.0008426922960935626,-0.0005878306670863735,-0.0007002882741553552,-0.0014957169104806143,-0.0009670341716561839,-0.0045637657609179805,-5.092416504198739e-05,-0.0005459168410108114,-0.0001764331128129694,0.0017985547474570543,-0.002013656860955831,-0.0014782169449893351,0.0008989864862570453,-0.0008429513392450453,-0.0012467208921799371,-0.0001059290494294985,0.001808868986632762
+52.423087,4.902015,0.0020481664866622363,-0.00017687850563122357,0.0008299872214700591,-7.912318331000016e-05,-6.113455009923864e-05,-0.0024225350383452085,-0.00182499671514876,-0.0022055583603693184,0.002468268183338904,-0.0028283402120744695,-0.0018629614792395307,0.001834008879848297,-0.0031107380414714648,-0.0018361748864895596,-0.0006764003955090352,-0.0033177967562987238,-0.0019922388292433124,-0.0008634149892639334,0.0023910633458811953,2.0216110416102786e-05,0.003290659821810673,-0.0004490414217577575,0.0005551022395917605,0.0018646857376243705,-0.002458105950089501,0.0006135209277554215,-0.0021954506867263267,-0.002595663302791548,0.0015520694971005388,-1.5650288171629653e-05,-0.0016150588153719463,-0.002718381826027936,-0.0037686600605414213,-0.0023702124308341292,-0.0005280104999751604,-0.0037054388273402585,-0.000596502360291301,-0.0028198050296586548,-0.004188369835680515,-0.006876208780791189,-0.002511755743124881,-0.0020166726821686906,-0.005235675581080715,-0.0033426922960935624,-0.003187830667086374,-0.001400288274155355,-0.0024957169104806143,-0.0036670341716561836,-0.00646376576091798,-0.0011509241650419872,-0.0033459168410108113,-0.0016764331128129692,-0.0018014452525429456,-0.004113656860955831,-0.0052782169449893356,-0.0011010135137429545,-0.004242951339245045,-0.004846720892179937,-0.0026059290494294986,-0.0012911310133672381
+52.423094,4.901938,0.002348166486662236,-0.0007768785056312236,-0.00017001277852994086,0.0012208768166899998,3.88654499007613e-05,0.00027746496165479155,-0.0016249967151487602,-0.0005055583603693183,0.0033682681833389037,-0.0025283402120744695,0.0005370385207604691,0.0021340088798482973,-0.0010107380414714651,-0.0034361748864895594,-0.0005764003955090352,-0.002417796756298723,-0.0007922388292433125,-0.00026341498926393353,0.0024910633458811956,-0.0008797838895838972,0.000490659821810673,-0.00014904142175775755,0.0008551022395917604,6.468573762437053e-05,-0.003158105950089501,0.0010135209277554215,-0.0027954506867263265,-0.0017956633027915478,0.0019520694971005385,-0.0003156502881716298,-0.0008150588153719463,-0.0006183818260279361,-0.0019686600605414214,0.0005297875691658706,-0.0025280104999751605,-0.0016054388273402586,-0.000596502360291301,-0.0025198050296586544,-0.005088369835680516,-0.006776208780791189,-0.0017117557431248808,-0.0020166726821686906,-0.002635675581080715,-0.003942692296093562,-0.0015878306670863735,-0.0006002882741553551,-0.0024957169104806143,-0.0036670341716561836,-0.00636376576091798,-0.0005509241650419874,-0.0011459168410108114,-0.0033764331128129693,-0.0019014452525429458,-0.004613656860955831,-0.003078216944989335,-0.0026010135137429545,-0.003542951339245045,-0.003646720892179937,-0.0034059290494294985,-0.0016911310133672379
+52.423078,4.902012,0.0015481664866622362,-0.00047687850563122355,-0.0002700127785299409,-0.00047912318331000013,-0.0012611345500992386,-0.0035225350383452083,-0.0026249967151487598,-0.0017055583603693182,0.002268268183338904,-0.00422834021207447,-0.002462961479239531,0.004134008879848296,-0.003710738041471465,-0.0032361748864895594,-0.0002764003955090352,-0.0036177967562987237,0.0003077611707566876,0.00033658501073606647,0.0028910633458811954,0.0014202161104161027,0.002690659821810673,-0.0005490414217577574,0.0021551022395917604,0.0016646857376243704,-0.002358105950089501,0.0016135209277554213,-0.0016954506867263267,-0.001195663302791548,0.0018520694971005387,-0.0001156502881716297,-1.5058815371946316e-05,-0.0018183818260279361,-0.0022686600605414213,-0.0002702124308341295,-0.00042801049997516044,-0.0028054388273402583,3.497639708699001e-06,-0.0017198050296586545,-0.0025883698356805153,-0.006076208780791188,-0.002211755743124881,8.332731783130944e-05,-0.0043356755810807154,-0.0017426922960935625,0.00021216933291362658,-0.001300288274155355,4.283089519385657e-06,-0.002967034171656184,-0.00466376576091798,0.0004490758349580125,-0.0016459168410108114,-0.0019764331128129696,-0.0022014452525429455,-0.0036136568609558307,-0.002978216944989335,-0.0018010135137429544,-0.003342951339245045,-0.005346720892179937,-0.0038059290494294987,-0.0016911310133672379
+52.42312,4.901644,0.004248166486662236,0.0010231214943687765,0.000929987221470059,0.00022087681668999976,0.0001388654499007613,-0.0004225350383452085,-0.00182499671514876,-0.0036055583603693177,0.004168268183338904,-0.0037283402120744692,-0.002362961479239531,0.0009340088798482969,-0.0010107380414714651,-0.0020361748864895597,-0.0006764003955090352,-0.0031177967562987232,-0.0022922388292433123,-0.0023634149892639332,-0.00010893665411880449,-0.0010797838895838974,0.00029065982181067287,-0.0010490414217577575,5.510223959176051e-05,0.0002646857376243705,-0.0035581059500895008,0.0007135209277554214,-0.0008954506867263266,-9.566330279154789e-05,0.0007520694971005388,0.0007843497118283703,-0.0016150588153719463,-0.0025183818260279362,-0.0014686600605414214,-0.0001702124308341295,-0.0008280104999751603,-0.0014054388273402585,-0.002196502360291301,-0.0004198050296586544,-0.0029883698356805155,-0.004276208780791189,-0.003311755743124881,-0.0010166726821686904,-0.007235675581080715,-0.0018426922960935626,-0.002887830667086373,-0.003100288274155355,-0.003595716910480614,-0.001967034171656184,-0.00736376576091798,-5.092416504198739e-05,-4.591684101081135e-05,0.0013235668871870306,-0.0007014452525429457,-0.004113656860955831,-0.003978216944989336,-0.00040101351374295457,-0.0019429513392450453,-0.0030467208921799373,-0.0018059290494294986,-0.0016911310133672379
+52.423112,4.90154,0.003348166486662236,-0.0013768785056312237,-0.001070012778529941,0.0011208768166899997,0.0004388654499007613,-0.0032225350383452084,-0.00112499671514876,-0.0005055583603693183,0.0023682681833389037,-0.0058283402120744695,-0.002962961479239531,-0.000365991120151703,-0.004510738041471465,-0.0034361748864895594,-0.002176400395509035,-0.0014177967562987235,-0.004792238829243313,-0.004363414989263933,-0.0030089366541188045,-0.004979783889583897,0.000990659821810673,-0.0016490414217577574,0.00035510223959176043,-0.003735314262375629,-0.004958105950089501,0.0017135209277554214,-0.0015954506867263268,-0.0012956633027915478,0.00045206949710053883,-0.00401565028817163,-0.0006150588153719463,-0.002618381826027936,-0.0037686600605414213,-0.0006702124308341295,-0.0009280104999751604,-0.0037054388273402585,-0.001896502360291301,-0.003919805029658654,-0.006088369835680516,-0.00847620878079119,0.0002882442568751189,-0.0054166726821686904,-0.006435675581080715,-0.003942692296093562,-0.004687830667086374,-0.003700288274155355,-0.004795716910480614,-0.006667034171656184,-0.00676376576091798,-0.00015092416504198744,-0.0050459168410108115,-0.0026764331128129692,-0.0004014452525429456,-0.0031136568609558307,-0.005978216944989336,-0.004001013513742955,-0.002442951339245045,-0.006046720892179937,-0.0021059290494294986,0.0005088689866327619
+52.422939,4.902737,0.0013481664866622362,-0.0010768785056312236,-0.0008700127785299409,0.0012208768166899998,-0.0007611345500992386,-0.0022225350383452084,-0.0029249967151487597,-0.0036055583603693177,0.002568268183338904,-0.005728340212074469,-0.0004629614792395308,-0.0005659911201517031,-0.0005107380414714651,-0.00573617488648956,-0.0008764003955090352,0.0010822032437012765,-0.0030922388292433127,-0.0020634149892639333,-0.0012089366541188046,-0.005479783889583897,-0.0015093401781893273,-0.0025490414217577573,-0.00034489776040823967,-0.0024353142623756295,-0.004158105950089501,-0.0024864790722445786,-0.0026954506867263267,-0.002395663302791548,0.002552069497100539,-0.0026156502881716295,-0.0025150588153719463,-0.0025183818260279362,-0.003968660060541421,-0.0013702124308341294,0.0005719895000248396,-0.0033054388273402588,-0.001696502360291301,-0.004919805029658654,-0.005688369835680516,-0.006776208780791189,-0.002911755743124881,-0.00471667268216869,-0.005335675581080715,-0.0026426922960935623,-0.0026878306670863735,-0.005000288274155355,-0.0027957169104806143,-0.003167034171656184,-0.00776376576091798,-0.0011509241650419872,-0.0010459168410108116,-0.002976433112812969,-0.002701445252542946,-0.005113656860955831,-0.0036782169449893353,-0.002401013513742955,-0.004042951339245046,-0.003346720892179937,-0.005105929049429498,-0.001891131013367238
+52.422929,4.902771,0.00014816648666223626,0.0005231214943687765,-0.001370012778529941,0.0008208768166899998,-6.113455009923864e-05,-0.0004225350383452085,-0.0009249967151487601,-0.00020555836036931826,0.0042682681833389035,-0.0025283402120744695,-0.0010629614792395307,0.003734008879848297,-0.0006107380414714651,-0.002836174886489559,-0.0016764003955090352,-0.0015177967562987236,-0.0021922388292433125,-0.0013634149892639337,-0.0007089366541188044,-0.0003797838895838972,0.0010906598218106728,-0.0004490414217577575,0.0023551022395917605,-0.0002353142623756295,-0.0037581059500895013,-0.00018647907224457862,-0.0015954506867263268,-9.566330279154789e-05,0.0039520694971005394,0.0005843497118283702,8.494118462805365e-05,-0.001918381826027936,-0.0016686600605414215,-0.0003702124308341295,0.0013719895000248396,-0.0011054388273402586,-0.000296502360291301,-0.0020198050296586544,-0.0029883698356805155,-0.005276208780791189,-0.0014117557431248809,-0.0006166726821686906,-0.0040356755810807155,-0.00034269229609356256,-0.0008878306670863734,-0.0018002882741553553,-0.0014957169104806143,-0.001667034171656184,-0.00536376576091798,-0.00015092416504198744,-0.0010459168410108116,0.0010235668871870305,-0.0004014452525429456,-0.003313656860955831,-0.002278216944989335,-0.0010010135137429545,-0.0014429513392450453,-0.002746720892179937,-0.0019059290494294985,0.00010886898663276185
+52.422938,4.902686,0.0022481664866622363,-0.0011768785056312236,-0.00017001277852994086,0.0026208768166899998,0.0008388654499007612,0.00037746496165479154,-0.0005249967151487601,0.0002944416396306818,0.005268268183338904,-0.0011283402120744696,-0.0010629614792395307,0.003734008879848297,0.0007892619585285348,-0.0014361748864895594,2.359960449096484e-05,0.00028220324370127647,0.0018077611707566874,-0.0007634149892639335,0.0016910633458811952,-0.0003797838895838972,0.0023906598218106727,0.0010509585782422423,0.0013551022395917604,0.0016646857376243704,-0.002258105950089501,0.0009135209277554214,0.0016045493132736733,0.00010433669720845212,0.002752069497100539,0.0009843497118283704,-0.00021505881537194633,-0.00041838182602793616,-0.0008686600605414214,-0.0011702124308341293,0.0027719895000248396,-0.0021054388273402586,0.00020349763970869896,-0.0008198050296586544,-0.0017883698356805156,-0.005376208780791189,0.0002882442568751189,8.332731783130944e-05,-0.003135675581080715,-0.00034269229609356256,0.0019121693329136266,-0.0007002882741553552,-0.0006957169104806144,-0.000167034171656184,-0.00436376576091798,0.0019490758349580127,0.0017540831589891886,-0.0003764331128129695,-0.00030144525254294577,-0.0019136568609558308,-0.0003782169449893352,0.0003989864862570454,-0.00024295133924504526,-0.0008467208921799372,-0.0013059290494294986,0.001808868986632762
+52.422887,4.902903,0.002648166486662236,-0.00027687850563122356,-0.0002700127785299409,0.0012208768166899998,0.0011388654499007614,0.0007774649616547916,-0.00062499671514876,0.0003944416396306818,0.004468268183338904,-0.006728340212074469,0.0007370385207604692,0.001234008879848297,-0.00031073804147146517,-0.0014361748864895594,0.0015235996044909647,0.00038220324370127646,-0.0013922388292433123,-0.0027634149892639334,-0.0008089366541188045,-0.0004797838895838972,0.001990659821810673,-0.00034904142175775743,-0.0023448977604082397,0.0011646857376243706,-0.0018581059500895009,0.0013135209277554214,-0.002095450686726327,-0.0007956633027915479,0.005452069497100539,0.0012843497118283703,-0.0010150588153719463,-0.002118381826027936,-0.0011686600605414215,0.0002297875691658705,0.0015719895000248394,-0.0039054388273402586,-0.001596502360291301,-0.0033198050296586543,-0.0020883698356805157,-0.005376208780791189,0.0004882442568751189,-0.0015166726821686904,-0.002835675581080715,-0.0021426922960935627,-0.0007878306670863733,-0.002000288274155355,-0.0009957169104806143,-0.002467034171656184,-0.00496376576091798,0.0027490758349580126,-0.0009459168410108113,0.0009235668871870307,-0.0014014452525429458,-0.003213656860955831,-0.002978216944989335,-0.0009010135137429544,-0.002442951339245045,-0.002746720892179937,-0.00020592904942949854,0.0015088689866327618
+52.422873,4.902895,-0.0015518335133377639,-0.0034768785056312236,-0.001570012778529941,-0.00077912318331,-0.0004611345500992387,-0.0008225350383452084,-0.0032249967151487596,-0.002005558360369318,0.00026826818333890385,-0.00752834021207447,-0.0005629614792395308,-0.00026599112015170297,-0.003010738041471465,-0.0039361748864895595,-0.0003764003955090352,-0.0017177967562987237,-0.0036922388292433125,-0.004863414989263934,-0.0021089366541188043,-0.002479783889583897,-0.00020934017818932714,-0.0019490414217577575,0.00735510223959176,-0.0011353142623756296,-0.004558105950089501,-0.0005864790722445784,-0.003395450686726327,-0.004095663302791547,0.0024520694971005385,-0.0005156502881716299,-0.004515058815371946,-0.003618381826027936,-0.0031686600605414215,-0.0018702124308341294,-0.0029280104999751602,-0.006605438827340259,-0.003896502360291301,-0.005219805029658654,-0.004788369835680516,-0.007376208780791189,-0.002611755743124881,-0.0035166726821686907,-0.0056356755810807145,-0.0034426922960935627,-0.0022878306670863734,-0.004600288274155355,-0.002895716910480614,-0.0039670341716561835,-0.00696376576091798,0.0011490758349580125,-0.0033459168410108113,-0.0017764331128129695,-0.0029014452525429456,-0.004213656860955831,-0.004378216944989336,-0.0028010135137429546,-0.004442951339245046,-0.004546720892179937,-0.0018059290494294986,-0.002391131013367238
+52.42287,4.902796,0.0041481664866622366,0.0016231214943687763,-0.00037001277852994095,0.0006208768166899998,-0.00016113455009923868,-0.0004225350383452085,-0.0005249967151487601,-0.0007055583603693182,0.0014682681833389037,-0.004728340212074469,-0.002362961479239531,-0.0009659911201517031,-0.002910738041471465,-0.00413617488648956,-0.003276400395509035,-0.0029177967562987236,-0.0018922388292433126,-0.004263414989263934,-0.003908936654118805,-0.0038797838895838974,0.000490659821810673,-0.0011490414217577574,0.0020551022395917606,-0.0007353142623756295,-0.003958105950089501,-0.00018647907224457862,-0.0010954506867263264,-0.0009956633027915478,0.003052069497100539,-0.0011156502881716297,-0.00031505881537194634,-0.002118381826027936,-0.0012686600605414213,-0.0012702124308341294,-0.00032801049997516045,-0.0039054388273402586,-0.0022965023602913013,-0.0023198050296586543,-0.005588369835680515,-0.005776208780791188,-0.002711755743124881,-0.0038166726821686906,-0.0056356755810807145,-0.0031426922960935627,-0.0032878306670863734,-0.003000288274155355,-0.005395716910480615,-0.003867034171656184,-0.006563765760917981,-0.0012509241650419875,-0.0016459168410108114,-0.0010764331128129694,9.85547474570543e-05,-0.004113656860955831,-0.004178216944989335,-0.0014010135137429544,-0.002142951339245045,-0.003346720892179937,-0.0025059290494294987,-0.000591131013367238
+52.422754,4.903111,0.0034481664866622365,0.004523121494368776,0.0006299872214700591,0.00232087681669,0.0009388654499007613,0.0011774649616547916,0.00057500328485124,0.0004944416396306817,0.004868268183338903,-0.0027283402120744696,0.0009370385207604693,0.0021340088798482973,0.0010892619585285348,-0.0010361748864895597,0.0001235996044909648,0.0018822032437012764,0.0005077611707566877,0.00023658501073606654,0.0016910633458811952,0.0012202161104161028,0.0028906598218106727,0.0012509585782422424,0.004355102239591761,0.0017646857376243706,-0.0013581059500895009,0.0029135209277554213,0.0008045493132736734,-0.0014956633027915479,0.005052069497100539,0.0013843497118283703,0.0003849411846280536,-0.002418381826027936,-0.00046866006054142146,-0.0007702124308341296,0.004371989500024839,-0.0011054388273402586,-9.6502360291301e-05,-0.0008198050296586544,-0.0012883698356805154,-0.005376208780791189,-0.0007117557431248811,0.0007833273178313093,-0.002635675581080715,0.0002573077039064375,0.0013121693329136265,-0.0007002882741553552,-0.0011957169104806142,-0.002767034171656184,-0.00406376576091798,0.0031490758349580128,0.0007540831589891886,-0.0004764331128129693,0.0005985547474570543,-0.000513656860955831,-0.0001782169449893352,-0.0008010135137429546,-0.0017429513392450452,-0.003446720892179937,0.0015940709505705014,0.0016088689866327619
+52.422751,4.903093,0.0027481664866622364,0.003923121494368776,0.0008299872214700591,0.00202087681669,0.00023886544990076134,0.0011774649616547916,0.00117500328485124,0.0004944416396306817,0.005068268183338904,-0.0014283402120744695,0.0012370385207604692,0.001734008879848297,0.00028926195852853483,-0.0018361748864895596,0.0003235996044909648,0.0010822032437012765,0.0005077611707566877,0.0005365850107360666,0.0014910633458811956,0.0008202161104161028,0.0021906598218106726,0.0010509585782422423,0.004255102239591761,0.0023646857376243705,-0.000858105950089501,0.0038135209277554215,0.0006045493132736734,-0.002195663302791548,0.0049520694971005395,0.0022843497118283703,0.00028494118462805366,-0.0015183818260279362,-0.0002686600605414215,0.0002297875691658705,0.00417198950002484,-5.438827340258556e-06,0.000103497639708699,-0.0008198050296586544,-0.0015883698356805155,-0.004976208780791189,-0.00041175574312488116,0.0006833273178313095,-0.003535675581080715,0.0012573077039064373,0.0011121693329136267,-0.0006002882741553551,-0.0012957169104806142,-0.0018670341716561841,-0.00516376576091798,0.0021490758349580127,0.0011540831589891885,0.0006235668871870306,0.0009985547474570544,-0.001213656860955831,0.0001217830550106648,-0.0013010135137429546,-0.0003429513392450452,-0.001646720892179937,0.0009940709505705015,0.003008868986632762
+52.422686,4.903226,0.004948166486662236,2.312149436877641e-05,0.0006299872214700591,0.0031208768166899998,0.0014388654499007613,-0.0016225350383452086,-0.0005249967151487601,-0.0007055583603693182,0.0015682681833389038,-0.004028340212074469,-0.0017629614792395308,-0.00026599112015170297,-0.0011107380414714652,-0.0039361748864895595,-0.001876400395509035,0.00018220324370127647,-0.004392238829243313,-0.0022634149892639334,-0.0015089366541188045,-0.00027978388958389724,0.0007906598218106729,-4.904142175775751e-05,0.0009551022395917605,0.0003646857376243705,-0.0038581059500895007,-0.0005864790722445784,-0.0022954506867263265,-0.001395663302791548,0.0012520694971005389,0.0006843497118283702,8.494118462805365e-05,-0.0020183818260279362,-0.0008686600605414214,0.0001297875691658705,0.0012719895000248395,-0.0014054388273402585,-0.001196502360291301,-0.0021198050296586547,-0.0038883698356805157,-0.005476208780791188,-0.001111755743124881,-0.0016166726821686904,-0.003035675581080715,-0.0015426922960935627,-0.00038783066708637337,-0.002100288274155355,-0.0029957169104806143,-0.0023670341716561837,-0.00566376576091798,0.0014490758349580126,-0.0005459168410108114,-0.0009764331128129695,0.0002985547474570543,-0.002713656860955831,-0.0016782169449893352,-0.0013010135137429546,-0.0013429513392450452,-0.002146720892179937,-0.0023059290494294987,0.000608868986632762
+52.422771,4.902362,0.0015481664866622362,-0.0032768785056312235,-0.002670012778529941,-0.00027912318331000025,-0.0005611345500992388,-0.0025225350383452083,-0.00272499671514876,-0.0028055583603693183,0.0009682681833389037,-0.00362834021207447,-0.003862961479239531,-0.0016659911201517032,-0.003010738041471465,-0.00843617488648956,-0.002676400395509035,-0.005017796756298723,-0.0046922388292433125,-0.0034634149892639335,-0.0005089366541188046,-0.004179783889583897,-0.0006093401781893271,-0.0035490414217577574,-0.0028448977604082393,-0.003135314262375629,-0.003158105950089501,-8.647907224457857e-05,-0.0019954506867263266,-0.003795663302791548,-0.00024793050289946116,-0.003115650288171629,8.494118462805365e-05,0.001381618173972064,-0.0006686600605414213,-0.0015702124308341295,-0.0063280104999751605,-0.004505438827340258,-0.0051965023602913015,-0.006319805029658654,-0.007088369835680516,-0.00877620878079119,-0.0063117557431248816,-0.00531667268216869,-0.008435675581080715,-0.006942692296093562,-0.004787830667086374,-0.005000288274155355,-0.005795716910480614,-0.0062670341716561835,-0.009363765760917981,-0.004750924165041987,-0.005645916841010811,-0.005376433112812969,-0.004401445252542945,-0.004713656860955831,-0.006378216944989336,-0.005401013513742955,-0.009042951339245044,-0.008846720892179936,-0.009405929049429497,-0.006991131013367239
+52.422632,4.903447,0.002348166486662236,-0.0016768785056312237,-0.0012700127785299409,0.0019208768166899997,-0.00026113455009923873,-0.0013225350383452084,-0.00182499671514876,-0.0005055583603693183,0.00026826818333890385,-0.00522834021207447,0.00043703852076046914,-0.00016599112015170292,-0.0018107380414714653,-0.00413617488648956,-0.0014764003955090351,-0.0031177967562987232,-0.0025922388292433122,-0.0023634149892639332,0.0006910633458811954,0.00012021611041610278,0.002990659821810673,-0.0008490414217577574,0.00015510223959176034,-0.0012353142623756294,-0.001558105950089501,0.00021352092775542134,-0.0015954506867263268,-0.002395663302791548,-0.00014793050289946117,8.434971182837018e-05,-0.002115058815371946,-0.002818381826027936,-0.0029686600605414214,-0.0025702124308341293,-0.0017280104999751603,-0.004705438827340258,-0.003496502360291301,-0.004119805029658655,-0.004788369835680516,-0.007976208780791189,-0.003211755743124881,-0.0041166726821686905,-0.005935675581080714,-0.004142692296093563,-0.0019878306670863734,-0.002900288274155355,-0.006395716910480615,-0.0039670341716561835,-0.006563765760917981,0.0006490758349580126,-0.003545916841010812,-0.0033764331128129693,-0.003301445252542946,-0.0045136568609558305,-0.003778216944989335,-0.0033010135137429546,-0.004742951339245046,-0.003746720892179937,-0.0037059290494294984,-0.0031911310133672386
+52.422739,4.902447,0.002148166486662236,-0.0027768785056312235,-0.001870012778529941,0.0012208768166899998,0.0007388654499007613,-0.0006225350383452085,-0.0010249967151487601,-0.002705558360369318,0.0028682681833389037,-0.00422834021207447,-0.0008629614792395309,0.001034008879848297,-0.0015107380414714651,-0.00573617488648956,-0.0010764003955090352,-0.004617796756298724,-0.003192238829243312,-0.0033634149892639333,-0.0030089366541188045,-0.0010797838895838974,0.0015906598218106728,0.0005509585782422425,0.0015551022395917605,-0.0015353142623756293,-0.004558105950089501,0.0017135209277554214,-0.0047954506867263266,-0.004095663302791547,-0.002347930502899461,-0.0001156502881716297,-0.0024150588153719465,-0.002718381826027936,-0.0031686600605414215,-0.0028702124308341292,-0.0020280104999751605,-0.0032054388273402585,-0.001896502360291301,-0.0057198050296586546,-0.0052883698356805155,-0.007576208780791188,-0.003111755743124881,-0.003916672682168691,-0.006535675581080714,-0.0040426922960935625,-0.004387830667086374,-0.006200288274155355,-0.005795716910480614,-0.004767034171656184,-0.00866376576091798,-0.0036509241650419873,-0.007445916841010812,-0.00497643311281297,-0.004601445252542946,-0.007413656860955831,-0.004378216944989336,-0.0025010135137429547,-0.004442951339245046,-0.005846720892179937,-0.004605929049429498,-0.004291131013367238
+52.422717,4.902502,4.816648666223621e-05,-0.005176878505631224,-0.005670012778529941,0.00042087681668999985,-0.002461134550099239,-0.0034225350383452085,-0.00372499671514876,-0.002705558360369318,-0.0006317318166610963,-0.006428340212074469,-0.003262961479239531,-0.002265991120151703,-0.005510738041471465,-0.005536174886489559,-0.004976400395509035,-0.005917796756298724,-0.005192238829243313,-0.0037634149892639334,-0.003708936654118804,-0.005379783889583897,-0.002909340178189327,-0.0028490414217577573,-0.0006448977604082396,-0.003435314262375629,-0.007158105950089501,-0.0015864790722445784,-0.0050954506867263265,-0.003595663302791548,-0.002347930502899461,-0.0035156502881716293,-0.004815058815371946,-0.005018381826027936,-0.004868660060541422,-0.005170212430834129,-0.0029280104999751602,-0.005105438827340259,-0.0025965023602913012,-0.004619805029658654,-0.007088369835680516,-0.009576208780791188,-0.004711755743124882,-0.0032166726821686903,-0.008635675581080715,-0.005742692296093563,-0.003487830667086374,-0.0055002882741553545,-0.005195716910480614,-0.006467034171656184,-0.00786376576091798,-0.0034509241650419876,-0.005545916841010812,-0.0038764331128129698,-0.005001445252542945,-0.005813656860955831,-0.005378216944989336,-0.005801013513742955,-0.007242951339245045,-0.004246720892179937,-0.007105929049429498,-0.006191131013367239
+52.422689,4.902579,0.0018481664866622362,-0.0022768785056312235,-0.001770012778529941,0.0016208768166899997,-0.0013611345500992387,0.00037746496165479154,-0.00312499671514876,-0.003105558360369318,0.00046826818333890394,-0.00422834021207447,-0.003362961479239531,-0.0016659911201517032,-0.002210738041471465,-0.00773617488648956,-0.004276400395509036,-0.0038177967562987233,-0.0030922388292433127,-0.003263414989263934,-0.0033089366541188044,-0.0010797838895838974,-0.001409340178189327,-0.0036490414217577576,5.510223959176051e-05,-0.0019353142623756295,-0.004258105950089501,-0.0016864790722445787,-0.0032954506867263265,-0.003495663302791548,-0.00014793050289946117,-0.0026156502881716295,-0.0014150588153719462,-0.0046183818260279366,-0.003968660060541421,-0.004170212430834129,-0.0017280104999751603,-0.004305438827340259,-0.0032965023602913013,-0.004619805029658654,-0.005588369835680515,-0.010676208780791188,-0.0043117557431248815,-0.0041166726821686905,-0.007235675581080715,-0.004142692296093563,-0.0033878306670863736,-0.005100288274155355,-0.0021957169104806144,-0.003767034171656184,-0.010263765760917979,-0.0012509241650419875,-0.002945916841010812,-0.0017764331128129695,-0.0014014452525429458,-0.003213656860955831,-0.002978216944989335,-0.0059010135137429545,-0.006242951339245045,-0.005046720892179937,-0.004605929049429498,-0.005191131013367239
+52.422616,4.902787,-0.0022518335133377637,-0.0070768785056312235,-0.004770012778529941,-0.00127912318331,-0.0039611345500992386,-0.0030225350383452083,-0.00802499671514876,-0.0039055583603693177,-0.0015317318166610965,-0.00622834021207447,-0.003862961479239531,-0.002065991120151703,-0.004310738041471466,-0.00673617488648956,-0.004576400395509036,-0.004117796756298723,-0.0036922388292433125,-0.0035634149892639338,-0.0016089366541188043,-0.004279783889583897,-0.002909340178189327,-0.0036490414217577576,-0.005144897760408239,-0.0024353142623756295,-0.006658105950089501,-0.002986479072244578,-0.0036954506867263267,-0.004995663302791548,-0.004347930502899461,-0.004215650288171629,-0.004915058815371946,-0.006718381826027936,-0.0056686600605414215,-0.006870212430834129,-0.005928010499975161,-0.006605438827340259,-0.005596502360291301,-0.007819805029658655,-0.009788369835680516,-0.012676208780791188,-0.0056117557431248815,-0.00661667268216869,-0.007735675581080716,-0.0073426922960935625,-0.004487830667086374,-0.004900288274155355,-0.004995716910480614,-0.007367034171656184,-0.008563765760917979,-0.0012509241650419875,-0.005145916841010812,-0.01587643311281297,-0.006301445252542946,-0.009213656860955832,-0.005878216944989335,-0.004601013513742955,-0.007942951339245045,-0.009346720892179937,-0.005705929049429498,-0.005591131013367238
+52.422593,4.902861,0.0011481664866622363,-0.0024768785056312236,-0.001370012778529941,0.0007208768166899999,-0.0012611345500992386,0.00047746496165479153,-0.00132499671514876,-0.0013055583603693182,0.0008682681833389039,-0.00522834021207447,-0.002462961479239531,0.000834008879848297,-0.001910738041471465,-0.0039361748864895595,-0.002276400395509035,-0.0017177967562987237,-0.0014922388292433124,-0.0024634149892639335,-0.0018089366541188044,-0.0004797838895838972,0.0007906598218106729,-0.0012490414217577574,0.0012551022395917604,-0.0007353142623756295,-0.004058105950089501,-0.0005864790722445784,-0.0024954506867263266,-0.001395663302791548,-0.00044793050289946114,-0.0012156502881716295,-0.0038150588153719463,-0.004018381826027937,-0.0029686600605414214,-0.0022702124308341294,-0.0026280104999751603,-0.005605438827340259,-0.0044965023602913014,-0.005419805029658654,-0.004388369835680516,-0.007276208780791188,-0.003011755743124881,-0.0034166726821686904,-0.005435675581080715,-0.004442692296093563,-0.0007878306670863733,-0.003100288274155355,-0.0031957169104806144,-0.0032670341716561843,-0.00676376576091798,0.0009490758349580126,-0.002245916841010811,-0.0012764331128129695,-0.0014014452525429458,-0.004413656860955831,-0.0045782169449893355,-0.0018010135137429544,-0.005542951339245045,-0.004546720892179937,-0.004205929049429498,-0.0031911310133672386
+52.422468,4.903846,-0.0006518335133377637,-0.0026768785056312232,-0.0019700127785299408,-0.0009791231833100001,-0.004161134550099239,-0.0039225350383452085,-0.00142499671514876,-0.004005558360369318,0.0008682681833389039,-0.00652834021207447,-0.002762961479239531,-0.0031659911201517028,-0.004910738041471466,-0.005536174886489559,-0.003776400395509035,-0.0032177967562987235,-0.0046922388292433125,-0.0033634149892639333,-0.0026089366541188043,-0.002379783889583897,-0.0007093401781893269,-0.00014904142175775755,-0.00014489776040823958,-0.0035353142623756294,-0.004058105950089501,-0.0033864790722445783,-0.0029954506867263266,-0.003195663302791548,-0.0005479305028994612,-0.0022156502881716294,-0.0020150588153719463,-0.003918381826027936,-0.003968660060541421,-0.0024702124308341295,-0.0007280104999751604,-0.0055054388273402585,-0.003196502360291301,-0.004919805029658654,-0.006888369835680515,-0.009276208780791188,-0.003211755743124881,-0.0037166726821686903,-0.005835675581080715,-0.004242692296093562,-0.004787830667086374,-0.006300288274155355,-0.003995716910480614,-0.006367034171656184,-0.00896376576091798,-0.0020509241650419874,-0.0036459168410108113,-0.0027764331128129695,-0.0017014452525429458,-0.005613656860955831,-0.004478216944989335,-0.003201013513742955,-0.0037429513392450453,-0.004546720892179937,-0.0035059290494294988,-0.002291131013367238
+52.422563,4.902891,-0.0004518335133377638,-0.0037768785056312235,-0.001870012778529941,-0.0013791231833100003,-0.0028611345500992383,-0.0025225350383452083,-0.0036249967151487598,-0.0036055583603693177,0.0016682681833389038,-0.005028340212074469,-0.002762961479239531,0.001034008879848297,-0.0031107380414714648,-0.0049361748864895595,-0.003276400395509035,-0.002717796756298724,-0.002892238829243312,-0.0023634149892639332,-0.0012089366541188046,-0.0010797838895838974,0.00029065982181067287,-0.0024490414217577575,-0.0005448977604082393,0.00016468573762437057,-0.004058105950089501,-0.00048647907224457854,-0.003095450686726327,-0.0017956633027915478,-0.002047930502899461,-0.00371565028817163,-0.003915058815371946,-0.004518381826027936,-0.005768660060541422,-0.0035702124308341293,-0.0031280104999751603,-0.006605438827340259,-0.004596502360291301,-0.005219805029658654,-0.005588369835680515,-0.006576208780791189,-0.004911755743124881,-0.0026166726821686905,-0.007135675581080716,-0.005442692296093563,-0.002787830667086374,-0.0039002882741553547,-0.0013957169104806143,-0.003867034171656184,-0.00756376576091798,-0.0011509241650419872,-0.003545916841010812,-0.002976433112812969,-0.0035014452525429455,-0.005413656860955831,-0.0052782169449893356,-0.005701013513742955,-0.007242951339245045,-0.007046720892179937,-0.006805929049429498,-0.0064911310133672386
+52.422552,4.902829,0.0009481664866622362,-0.0014768785056312236,0.0004299872214700591,0.0013208768166899998,-0.002161134550099239,-0.0029225350383452085,-0.00312499671514876,-0.004905558360369318,0.0015682681833389038,-0.005028340212074469,-0.002462961479239531,0.003134008879848297,-0.006110738041471465,-0.007136174886489559,-0.004676400395509035,-0.0029177967562987236,-0.0011922388292433125,3.6585010736066444e-05,-0.0005089366541188046,-0.0021797838895838972,-0.0016093401781893271,-0.0032490414217577574,-0.0023448977604082397,-0.004735314262375629,-0.005658105950089501,-0.0024864790722445786,-0.006295450686726326,-0.0044956633027915475,-0.003347930502899461,-0.006115650288171629,-0.004315058815371946,-0.007418381826027937,-0.0049686600605414214,-0.0035702124308341293,-0.0032280104999751606,-0.008205438827340258,-0.003696502360291301,-0.005819805029658654,-0.007688369835680516,-0.008376208780791188,-0.006811755743124881,-0.00571667268216869,-0.006635675581080715,-0.005642692296093562,-0.002887830667086373,-0.002100288274155355,-0.005595716910480614,-0.009167034171656183,-0.00916376576091798,-0.004050924165041988,-0.006645916841010811,-0.0033764331128129693,-0.004701445252542945,-0.007713656860955831,-0.007778216944989335,-0.005601013513742955,-0.007942951339245045,-0.008146720892179937,-0.005605929049429498,-0.007591131013367239
+52.422389,4.90385,0.0017481664866622361,-0.0040768785056312234,-0.0016700127785299408,0.0007208768166899999,-0.0006611345500992386,-0.00012253503834520847,-0.00192499671514876,-0.0006055583603693181,0.00046826818333890394,-0.00462834021207447,-0.0015629614792395307,0.00023400887984829693,-0.002510738041471465,-0.0025361748864895593,-0.0015764003955090352,-0.0026177967562987237,-0.0022922388292433123,-0.002663414989263933,-0.0022089366541188046,-0.003379783889583897,-0.0013093401781893272,-0.0005490414217577574,-0.0012448977604082394,-0.0013353142623756292,-0.002758105950089501,-0.0008864790722445787,-0.0032954506867263265,-0.0007956633027915479,-0.0011479305028994611,-0.0003156502881716298,-0.0033150588153719462,-0.002718381826027936,-0.0031686600605414215,-0.0029702124308341295,-0.0008280104999751603,-0.004405438827340258,-0.003496502360291301,-0.004119805029658655,-0.0033883698356805157,-0.0058762087807911895,-0.001611755743124881,-0.0023166726821686905,-0.0060356755810807156,-0.004642692296093562,-0.002487830667086373,-0.004700288274155355,-0.0043957169104806145,-0.006067034171656184,-0.008163765760917981,-0.0016509241650419872,-0.002945916841010812,-0.006176433112812969,-0.0028014452525429454,-0.005313656860955831,-0.005478216944989335,-0.004101013513742955,-0.005242951339245045,-0.004346720892179937,-0.0032059290494294984,-0.0006911310133672381
+52.422447,4.903182,0.0038481664866622358,-7.687850563122355e-05,0.000929987221470059,0.00382087681669,0.0016388654499007614,0.00027746496165479155,-0.00022499671514876007,-0.0003055583603693182,0.0031682681833389036,-0.0018283402120744694,0.0007370385207604692,0.001434008879848297,0.00038926195852853477,-0.0007361748864895595,-0.0007764003955090351,0.0018822032437012764,0.0016077611707566877,0.0005365850107360666,0.0010910633458811954,0.0013202161104161028,0.001890659821810673,0.0008509585782422427,0.0023551022395917605,0.0015646857376243706,-0.001258105950089501,0.00041352092775542144,-0.0003954506867263266,-0.003795663302791548,0.001452069497100539,0.0006843497118283702,-0.00021505881537194633,-0.0005183818260279361,-0.0009686600605414215,-0.0010702124308341295,0.0005719895000248396,-0.0025054388273402584,-0.0012965023602913009,-0.0013198050296586543,-0.0034883698356805155,-0.0051762087807911885,-0.002011755743124881,8.332731783130944e-05,-0.0036356755810807153,-0.0006426922960935626,-0.0002878306670863733,-0.001900288274155355,-0.002395716910480614,-0.000867034171656184,-0.0061637657609179795,0.0011490758349580125,-0.0001459168410108114,2.3566887187030693e-05,-0.0006014452525429457,-0.002913656860955831,-0.001278216944989335,-0.0006010135137429545,-0.0017429513392450452,-0.001146720892179937,-0.0022059290494294984,-0.003691131013367238
+52.422433,4.903153,0.0004481664866622362,-0.0028768785056312233,-0.000570012778529941,0.0006208768166899998,-0.0015611345500992386,-0.0028225350383452087,-0.0032249967151487596,-0.0026055583603693186,0.001368268183338904,-0.004728340212074469,-0.0012629614792395308,0.002834008879848297,-0.002410738041471465,-0.0036361748864895595,-0.0014764003955090351,-0.0013177967562987235,-0.0009922388292433124,-0.0022634149892639334,0.0011910633458811954,-0.0003797838895838972,0.0008906598218106728,-0.0024490414217577575,-0.0006448977604082396,-0.0002353142623756295,-0.004058105950089501,-0.0013864790722445787,-0.0027954506867263265,-0.003295663302791548,-0.001647930502899461,-0.0026156502881716295,-0.003915058815371946,-0.003618381826027936,-0.0026686600605414215,-0.0018702124308341294,-0.0016280104999751605,-0.005005438827340258,-0.0027965023602913013,-0.005319805029658654,-0.005488369835680515,-0.006976208780791188,-0.003911755743124881,-0.0030166726821686906,-0.006635675581080715,-0.0053426922960935624,-8.783066708637345e-05,-0.00010028827415535513,-0.002095716910480614,-0.004967034171656184,-0.00636376576091798,-5.092416504198739e-05,-0.0020459168410108114,-0.004176433112812969,-0.0029014452525429456,-0.005013656860955831,-0.0052782169449893356,-0.0030010135137429547,-0.004442951339245046,-0.005246720892179937,-0.004705929049429498,-0.0031911310133672386
+52.422315,4.904019,0.0020481664866622363,-0.0022768785056312235,0.00012998722147005912,0.00102087681669,0.0011388654499007614,0.0009774649616547915,-0.0010249967151487601,-0.00010555836036931822,0.0011682681833389038,-0.0027283402120744696,0.0003370385207604692,0.001134008879848297,-0.0007107380414714652,-0.00443617488648956,-0.0016764003955090352,-0.0006177967562987236,-0.0005922388292433124,-0.003263414989263934,-8.936654118804556e-06,-0.0010797838895838974,0.0010906598218106728,-4.904142175775751e-05,0.0013551022395917604,0.0012646857376243706,-0.002358105950089501,-0.0005864790722445784,-0.0029954506867263266,-0.0004956633027915478,-0.00014793050289946117,0.0019843497118283704,-0.0013150588153719464,-0.003418381826027936,-0.0027686600605414213,-0.0022702124308341294,-0.0009280104999751604,-0.005305438827340259,-0.001996502360291301,-0.004919805029658654,-0.0038883698356805157,-0.00907620878079119,-0.0008117557431248811,-0.0008166726821686905,-0.004635675581080715,-0.0021426922960935627,-0.0019878306670863734,-0.003400288274155355,-0.0018957169104806143,-0.004467034171656184,-0.00806376576091798,0.0003490758349580126,0.0038540831589891885,-0.0020764331128129694,-0.0025014452525429455,-0.002413656860955831,-0.003378216944989335,-0.0003010135137429545,-0.005542951339245045,0.0009532791078200628,-0.0001059290494294985,-0.001991131013367238
+52.422373,4.90336,0.0019481664866622362,-0.009476878505631224,0.001529987221470059,-0.0009791231833100001,-0.0007611345500992386,-0.0028225350383452087,7.500328485123995e-05,-0.002705558360369318,-0.002731731816661096,-0.005028340212074469,-0.002862961479239531,-0.001065991120151703,-0.0026107380414714648,-0.00473617488648956,-0.002076400395509035,-0.0018177967562987235,-0.005192238829243313,-0.0047634149892639335,-0.003708936654118804,-0.004879783889583897,-0.0021093401781893274,-0.003749041421757757,-0.0011448977604082396,-0.0022353142623756294,-0.004258105950089501,-0.0021864790722445787,-0.0035954506867263264,-0.003395663302791548,-0.0024479305028994613,-0.003115650288171629,-0.004015058815371946,-0.004018381826027937,-0.0035686600605414217,-0.0038702124308341293,-0.0037280104999751606,-0.006005438827340259,-0.004596502360291301,-0.005919805029658654,-0.006788369835680516,-0.009876208780791188,-0.005411755743124882,-0.00631667268216869,-0.006835675581080714,-0.007942692296093562,-0.005087830667086374,-0.0078002882741553545,-0.006495716910480614,-0.006867034171656183,-0.00976376576091798,-0.003950924165041987,-0.0047459168410108115,-0.0071764331128129685,-0.005101445252542945,-0.007313656860955831,-0.005078216944989336,-0.006301013513742955,-0.005842951339245045,-0.004646720892179937,-0.005305929049429498,-0.006891131013367238
+52.422273,4.904107,0.0014481664866622362,-0.0009768785056312236,0.0007299872214700591,0.0005208768166899998,-0.00036113455009923866,-0.0008225350383452084,-0.00112499671514876,-0.00040555836036931824,0.0033682681833389037,-0.005428340212074469,3.7038520760469205e-05,-0.002065991120151703,-0.0010107380414714651,-0.0018361748864895596,0.00042359960449096475,-0.0007177967562987234,-0.0049922388292433124,-0.002963414989263933,-0.0022089366541188046,-0.001779783889583897,0.0037906598218106725,0.002550958578242242,0.004655102239591761,0.0029646857376243708,0.001241894049910499,0.0020135209277554215,0.0013045493132736734,0.0007043366972084521,0.003252069497100539,0.0016843497118283703,-0.0007150588153719464,-0.0005183818260279361,0.0006313399394585786,-0.0002702124308341295,0.0012719895000248395,-0.0010054388273402588,0.0009034976397086991,-0.0006198050296586544,-0.0014883698356805155,-0.0032762087807911887,8.824425687511896e-05,0.0013833273178313094,-0.0017356755810807151,-0.0015426922960935627,0.0019121693329136266,0.001199711725844645,0.0010042830895193857,-0.0009670341716561839,-0.00356376576091798,0.004449075834958013,0.0007540831589891886,0.0019235668871870307,0.0017985547474570543,-0.0006136568609558309,-0.0002782169449893352,0.0004989864862570455,-0.0003429513392450452,-0.0003467208921799372,-0.0008059290494294985,0.00010886898663276185
+52.422254,4.904159,0.003148166486662236,-0.0022768785056312235,0.00022998722147005908,0.0016208768166899997,0.0012388654499007612,0.0011774649616547916,-0.00112499671514876,0.0002944416396306818,0.002568268183338904,-0.00332834021207447,-0.0005629614792395308,0.000734008879848297,-0.0010107380414714651,-0.0033361748864895596,-0.0012764003955090353,-0.0023177967562987237,-0.0010922388292433124,-0.0005634149892639335,9.106334588119544e-05,-0.002079783889583897,0.002490659821810673,-0.0010490414217577575,0.0002551022395917606,-0.0004353142623756294,-0.003958105950089501,0.0006135209277554215,-0.0005954506867263265,-0.0010956633027915477,0.001452069497100539,0.0017843497118283703,-0.0010150588153719463,-0.0018183818260279361,-0.00046866006054142146,-0.0001702124308341295,0.00017198950002483956,-0.0031054388273402587,-0.0006965023602913009,-0.0027198050296586545,-0.0025883698356805153,-0.005976208780791189,-0.0009117557431248812,-0.0017166726821686905,-0.003935675581080715,-0.002842692296093563,-0.0015878306670863735,-0.0025002882741553554,-0.0026957169104806144,-0.006067034171656184,-0.00706376576091798,0.00024907583495801253,-0.0013459168410108115,-0.0038764331128129698,-0.0013014452525429456,-0.004913656860955831,-0.002978216944989335,-0.0013010135137429546,-0.0019429513392450453,-0.003746720892179937,-0.0019059290494294985,-0.000891131013367238
+52.422315,4.903463,0.0015481664866622362,-0.0016768785056312237,0.0004299872214700591,0.00382087681669,-0.0006611345500992386,-0.0008225350383452084,-0.00202499671514876,-0.001505558360369318,0.0028682681833389037,-0.0032283402120744696,-0.0014629614792395307,0.001934008879848297,-0.002410738041471465,-0.0018361748864895596,-0.0004764003955090351,0.0011822032437012763,-0.0010922388292433124,-0.0004634149892639335,0.0014910633458811956,0.0003202161104161028,0.0031906598218106727,-0.0008490414217577574,0.0019551022395917603,-0.0012353142623756294,-0.0035581059500895008,-0.00028647907224457845,-0.002095450686726327,-0.001895663302791548,-0.0009479305028994612,-0.0025156502881716293,-0.0018150588153719464,-0.001918381826027936,-0.0034686600605414214,-0.0006702124308341295,-0.0037280104999751606,-0.006105438827340258,-0.002696502360291301,-0.004919805029658654,-0.0038883698356805157,-0.006976208780791188,-0.003111755743124881,-0.0036166726821686905,-0.005235675581080715,-0.003842692296093563,-0.00038783066708637337,-0.004100288274155355,-0.0019957169104806143,-0.000367034171656184,-0.005963765760917981,-0.0018509241650419873,-0.0014459168410108113,-0.0025764331128129694,-0.0032014452525429456,-0.005113656860955831,-0.004978216944989336,-0.003401013513742955,-0.003842951339245045,-0.0039467208921799375,-0.0038059290494294987,-0.0021911310133672377
+52.422196,4.904288,0.0044481664866622365,-0.00047687850563122355,0.005229987221470059,0.00302087681669,0.0027388654499007617,-0.0005225350383452085,0.0008750032848512399,0.0020944416396306816,0.004168268183338904,-0.0022283402120744696,0.00043703852076046914,0.0029340088798482968,-0.00011073804147146515,-0.0016361748864895595,0.0014235996044909649,0.00018220324370127647,0.0017077611707566876,0.0015365850107360664,0.0010910633458811954,0.0006202161104161028,0.002290659821810673,-0.0004490414217577575,0.0012551022395917604,0.0007646857376243705,-0.002158105950089501,0.00041352092775542144,-0.0002954506867263266,-0.0004956633027915478,0.0005520694971005389,0.0005843497118283702,-0.0010150588153719463,-0.0020183818260279362,0.00043133993945857857,-0.0013702124308341294,-0.0005280104999751604,-0.0029054388273402586,-0.000796502360291301,-0.0031198050296586547,-0.0029883698356805155,-0.006076208780791188,-0.0015117557431248811,-0.0015166726821686904,-0.0040356755810807155,-0.004442692296093563,-0.0006878306670863735,-0.0003002882741553551,-0.0013957169104806143,-0.0039670341716561835,-0.00566376576091798,0.0014490758349580126,-0.0006459168410108114,-0.0022764331128129695,-0.0015014452525429457,-0.0036136568609558307,-0.002978216944989335,-0.0021010135137429545,-0.002542951339245045,-0.0030467208921799373,-0.0021059290494294986,-0.0014911310133672382
+52.422167,4.904398,0.006048166486662236,0.0011231214943687763,0.003129987221470059,0.00282087681669,0.003538865449900761,0.0023774649616547915,0.0024750032848512397,0.0006944416396306818,0.0065682681833389035,0.00267165978792553,0.00023703852076046921,0.002734008879848297,0.0010892619585285348,0.0002638251135104405,-7.640039550903516e-05,-0.0008177967562987235,0.0013077611707566874,0.0018365850107360663,0.0032910633458811955,0.003220216110416103,0.004290659821810673,0.0015509585782422424,0.0017551022395917606,0.0020646857376243706,0.00014189404991049896,0.0018135209277554214,0.0022045493132736736,0.002704336697208452,0.00565206949710054,0.0027843497118283703,0.0001849411846280537,0.0001816181739720639,0.0013313399394585786,0.0011297875691658706,0.00387198950002484,-0.0008054388273402586,0.0007034976397086991,-0.0006198050296586544,-0.0013883698356805156,-0.0034762087807911884,0.00038824425687511893,0.0018833273178313094,-0.001335675581080715,-0.0015426922960935627,-0.00038783066708637337,0.0001997117258446448,-0.00019571691048061434,-0.00026703417165618393,-0.0029637657609179802,0.0034490758349580127,0.0016540831589891886,0.0008235668871870306,0.0026985547474570543,-0.001213656860955831,-0.0005782169449893352,0.0006989864862570454,5.7048660754954745e-05,0.0011532791078200629,0.0002940709505705015,0.005908868986632762
+52.422133,4.904488,0.0034481664866622365,-7.687850563122355e-05,0.001729987221470059,0.0021208768166899998,0.0021388654499007614,0.0008774649616547915,0.00107500328485124,0.0006944416396306818,0.0031682681833389036,-0.0024283402120744693,0.0003370385207604692,0.001234008879848297,-0.0005107380414714651,-0.0018361748864895596,0.00042359960449096475,-0.0015177967562987236,-0.0005922388292433124,-0.00016341498926393348,0.0008910633458811955,0.0003202161104161028,0.0015906598218106728,-0.0009490414217577575,0.0010551022395917605,0.0012646857376243706,-0.001158105950089501,0.0014135209277554215,0.00020454931327367338,4.336697208452112e-06,0.0033520694971005387,0.0013843497118283703,-0.0016150588153719463,-0.0006183818260279361,0.0002313399394585786,-0.0010702124308341295,0.0022719895000248395,-0.0019054388273402586,-0.000496502360291301,-0.0019198050296586543,-0.0016883698356805156,-0.004076208780791188,-0.0008117557431248811,0.0006833273178313095,-0.003835675581080715,-0.0013426922960935626,-0.0007878306670863733,9.971172584464496e-05,-0.0009957169104806143,-0.003867034171656184,-0.0045637657609179805,0.0017490758349580126,0.0003540831589891885,-0.0004764331128129693,-0.0006014452525429457,-0.003313656860955831,-0.002078216944989335,-0.0006010135137429545,-0.00044295133924504527,-0.0006467208921799373,-5.92904942949853e-06,0.001208868986632762
+52.422124,4.904466,0.0022481664866622363,-0.0026768785056312232,0.0006299872214700591,0.0013208768166899998,0.00033886544990076133,0.00017746496165479153,-0.00132499671514876,-0.00040555836036931824,0.0014682681833389037,-0.00362834021207447,-0.0007629614792395308,-0.0009659911201517031,-0.0015107380414714651,-0.0034361748864895594,-0.0015764003955090352,-0.0022177967562987235,-0.002892238829243312,-0.002963414989263933,-0.0016089366541188043,-0.002579783889583897,0.00029065982181067287,-0.0011490414217577574,0.0005551022395917605,-0.0007353142623756295,-0.002458105950089501,-0.00048647907224457854,-0.0013954506867263267,-0.0014956633027915479,0.0012520694971005389,8.434971182837018e-05,-0.0023150588153719462,-0.002618381826027936,-0.0018686600605414211,-0.0025702124308341293,-2.801049997516042e-05,-0.0028054388273402583,-0.0017965023602913009,-0.0026198050296586542,-0.0027883698356805154,-0.005476208780791188,-0.002211755743124881,-0.0019166726821686904,-0.005335675581080715,-0.0034426922960935627,-0.003487830667086374,-0.003700288274155355,-0.0037957169104806143,-0.005167034171656184,-0.00786376576091798,0.00014907583495801248,-0.0019459168410108113,-0.0020764331128129694,-0.002401445252542946,-0.005413656860955831,-0.003478216944989335,-0.0021010135137429545,-0.003342951339245045,-0.003346720892179937,-0.0026059290494294986,-0.001891131013367238
+52.422158,4.903903,-0.0013518335133377638,-0.005376878505631224,-0.001170012778529941,0.00692087681669,-0.0012611345500992386,-0.0002225350383452084,-0.00452499671514876,0.00019444163963068176,-0.0007317318166610962,-0.00622834021207447,-0.0020629614792395307,-0.0011659911201517032,-0.001910738041471465,-0.007136174886489559,-0.006576400395509036,-0.004817796756298723,-0.005092238829243313,-0.004663414989263934,-0.0034089366541188043,0.0019202161104161027,-0.0007093401781893269,-0.005149041421757757,-0.0033448977604082397,-0.002635314262375629,-0.0044581059500895005,-0.0011864790722445786,-0.0023954506867263268,-0.004995663302791548,-0.002047930502899461,-0.00401565028817163,-0.005215058815371946,0.0020816181739720637,-0.0037686600605414213,-0.0024702124308341295,-0.005628010499975161,-0.008605438827340259,-0.000896502360291301,-0.0060198050296586545,-0.0062883698356805155,-0.00907620878079119,-0.0038117557431248806,-0.00561667268216869,-0.0076356755810807145,-0.006842692296093562,-0.0019878306670863734,-0.004700288274155355,-0.004295716910480614,-0.004667034171656184,-0.010863765760917979,-0.002850924165041988,-0.004345916841010811,-0.007076433112812969,-0.002301445252542946,-0.007513656860955831,-0.007878216944989335,-0.005401013513742955,-0.009142951339245045,-0.006746720892179937,-0.004005929049429498,-0.004191131013367239
+52.422129,4.903962,0.003148166486662236,-0.0020768785056312234,-7.001277852994092e-05,0.0017208768166899998,-0.0013611345500992387,-0.0018225350383452086,-0.00462499671514876,-0.002705558360369318,0.0017682681833389039,-0.00452834021207447,-0.002862961479239531,-0.002965991120151703,-0.004710738041471465,-0.0039361748864895595,-0.002176400395509035,-0.002717796756298724,-0.0017922388292433123,-0.0014634149892639335,0.0009910633458811956,0.0005202161104161028,0.002590659821810673,-0.005649041421757758,-0.0004448977604082395,-0.004435314262375629,-0.005358105950089501,-0.003286479072244579,-0.004395450686726326,-0.003795663302791548,-0.002547930502899461,-0.00401565028817163,-0.0027150588153719464,-0.002718381826027936,-0.0011686600605414215,-0.0019702124308341295,-0.0013280104999751604,-0.004305438827340259,-0.002396502360291301,-0.0030198050296586544,-0.0025883698356805153,-0.006076208780791188,-0.002211755743124881,0.0004833273178313094,0.0024643244189192846,-0.0053426922960935624,0.0013121693329136265,0.0003997117258446449,-0.0016957169104806142,0.0023329658283438156,-0.0068637657609179805,-0.0007509241650419875,0.0035540831589891885,-0.003576433112812969,0.004598554747457054,8.634313904416909e-05,0.001521783055010665,-0.0039010135137429545,-0.005242951339245045,-0.003246720892179937,-0.0013059290494294986,-0.002391131013367238
+52.422045,4.904689,0.0008481664866622363,-0.0024768785056312236,-0.0007700127785299409,-0.00047912318331000013,-0.0016611345500992388,-0.0016225350383452086,-0.00232499671514876,-0.002405558360369318,0.0011682681833389038,-0.00392834021207447,-0.0017629614792395308,-0.000865991120151703,-0.002110738041471465,-0.0036361748864895595,-0.001976400395509035,-0.0032177967562987235,-0.003492238829243312,-0.0021634149892639336,-0.0009089366541188045,-0.0013797838895838973,-0.0010093401781893273,-0.0024490414217577575,-0.00034489776040823967,-0.0017353142623756294,-0.004158105950089501,-0.0019864790722445786,-0.0022954506867263265,-0.0017956633027915478,-0.002347930502899461,-0.0023156502881716296,-0.004415058815371946,-0.0042183818260279355,-0.003668660060541421,-0.00437021243083413,-0.0024280104999751606,-0.005805438827340258,-0.004096502360291301,-0.005619805029658654,-0.005388369835680516,-0.008676208780791188,-0.003911755743124881,-0.0038166726821686906,-0.0063356755810807155,-0.005742692296093563,-0.004687830667086374,-0.0038002882741553553,-0.004995716910480614,-0.006667034171656184,-0.00786376576091798,-0.0006509241650419874,-0.0038459168410108118,-0.002976433112812969,-0.0028014452525429454,-0.006213656860955831,-0.005678216944989336,-0.003801013513742955,-0.004142951339245046,-0.0049467208921799375,-0.0030059290494294988,-0.002391131013367238
+52.422073,4.904132,-0.0038518335133377636,-0.006176878505631224,-0.002370012778529941,-0.0037791231833100005,-0.003861134550099239,-0.004722535038345209,-0.00532499671514876,-0.005005558360369318,-0.0018317318166610965,-0.00792834021207447,-0.00566296147923953,-0.001565991120151703,-0.005310738041471466,-0.00663617488648956,-0.005376400395509035,-0.0052177967562987235,-0.004792238829243313,-0.0030634149892639333,-0.0019089366541188042,-0.002279783889583897,-0.0016093401781893271,-0.004049041421757758,-0.0036448977604082397,-0.004035314262375629,-0.0067581059500895005,-0.004586479072244579,-0.005595450686726326,-0.005395663302791547,-0.003947930502899461,-0.004115650288171629,-0.005815058815371946,-0.006118381826027936,-0.004468660060541422,-0.004870212430834129,-0.004528010499975161,-0.0065054388273402585,-0.006096502360291301,-0.007719805029658655,-0.007788369835680516,-0.009576208780791188,-0.005811755743124881,-0.006216672682168691,-0.008335675581080716,-0.008142692296093563,-0.005087830667086374,-0.006100288274155355,-0.005895716910480614,-0.007367034171656184,-0.01066376576091798,-0.0034509241650419876,-0.005645916841010811,-0.006576433112812969,-0.004901445252542946,-0.007013656860955831,-0.006978216944989336,-0.006301013513742955,-0.008242951339245045,-0.007146720892179937,-0.006705929049429498,-0.0064911310133672386
+52.42198,4.904807,0.0008481664866622363,-0.004476878505631224,-0.00017001277852994086,0.00042087681668999985,-6.113455009923864e-05,0.00027746496165479155,-0.00222499671514876,-0.0010055583603693183,0.0015682681833389038,-0.0031283402120744694,-0.0008629614792395309,3.400887984829695e-05,-0.0009107380414714652,-0.0031361748864895595,-7.640039550903516e-05,-0.0016177967562987234,-0.0025922388292433122,-0.0007634149892639335,-0.0040089366541188045,-0.004879783889583897,0.0005906598218106728,-0.0007490414217577575,0.0008551022395917604,-0.00013531426237562945,-0.001658105950089501,0.0006135209277554215,-0.0015954506867263268,-9.566330279154789e-05,-0.00034793050289946115,-0.0009156502881716296,-0.0035150588153719463,-0.0014183818260279362,-0.0008686600605414214,-0.0007702124308341296,-0.00392801049997516,0.00029456117265974136,-0.001396502360291301,-0.003219805029658654,-0.004088369835680516,-0.0051762087807911885,-0.001611755743124881,-0.0021166726821686905,-0.003235675581080715,-0.0026426922960935623,-0.006587830667086373,-0.004000288274155355,0.0049042830895193856,-0.0036670341716561836,-0.0002637657609179801,0.0031490758349580128,0.00015408315898918852,-0.0003764331128129695,-0.0029014452525429456,-0.004113656860955831,-0.004078216944989336,-0.0033010135137429546,-0.004542951339245045,-0.004146720892179937,-0.004205929049429498,-0.0024911310133672385
+52.42208,4.903995,-0.0004518335133377638,-0.0033768785056312233,-0.000570012778529941,0.00012087681668999993,-0.002761134550099239,-0.004022535038345209,-0.00432499671514876,-0.0032055583603693184,-0.0007317318166610962,-0.0068283402120744695,-0.0030629614792395308,0.001234008879848297,-0.005310738041471466,-0.00673617488648956,-0.005576400395509036,-0.004317796756298723,-0.004092238829243313,-0.0014634149892639335,-0.0006089366541188046,0.0005202161104161028,-0.0006093401781893271,-0.004749041421757757,-0.0026448977604082396,-0.0011353142623756296,-0.0096581059500895,-0.006786479072244578,-0.0047954506867263266,-0.005895663302791548,-0.0034479305028994613,-0.005115650288171629,-0.005315058815371946,-0.006618381826027937,-0.004768660060541422,-0.0033702124308341293,-0.0026280104999751603,-0.006705438827340259,-0.003396502360291301,-0.005619805029658654,-0.006188369835680515,-0.0074762087807911885,-0.005011755743124882,-0.00531667268216869,-0.007535675581080715,-0.004842692296093563,-0.0009878306670863734,-0.002000288274155355,-0.0002957169104806143,0.0023329658283438156,-0.00706376576091798,-0.0034509241650419876,-0.0047459168410108115,-0.005976433112812969,-0.0032014452525429456,-0.002513656860955831,-0.0045782169449893355,-0.0033010135137429546,-0.004842951339245045,-0.003346720892179937,-0.0049059290494294985,-0.002291131013367238
+52.421932,4.905005,0.0037481664866622364,-0.00027687850563122356,0.0008299872214700591,0.00152087681669,-6.113455009923864e-05,0.0010774649616547916,-0.00022499671514876007,-0.0003055583603693182,0.004468268183338904,-0.0025283402120744695,0.0008370385207604693,0.001934008879848297,0.0006892619585285348,-0.0020361748864895597,0.00042359960449096475,-0.0012177967562987235,-0.0003922388292433124,-0.0003634149892639335,9.106334588119544e-05,0.0013202161104161028,0.0011906598218106728,0.00035095857824224246,0.0014551022395917605,0.0020646857376243706,-0.0005581059500895009,0.0012135209277554216,-0.00019545068672632664,-0.003595663302791548,0.004852069497100539,0.00218434971182837,-0.00011505881537194632,-0.0006183818260279361,-0.00046866006054142146,-0.0003702124308341295,0.0002719895000248396,-0.0042054388273402585,0.000103497639708699,-0.0021198050296586547,-0.0017883698356805156,-0.004976208780791189,-0.001111755743124881,0.0012833273178313096,-0.003235675581080715,-0.0030426922960935625,-0.0002878306670863733,-0.0005002882741553551,-0.0011957169104806142,-0.003867034171656184,-0.00446376576091798,0.0027490758349580126,5.408315898918848e-05,-0.0009764331128129695,-0.0004014452525429456,-0.002113656860955831,-0.0015782169449893354,0.0002989864862570454,-0.0005429513392450453,0.0007532791078200627,-0.0001059290494294985,0.0010088689866327618
+52.421956,4.90485,0.0009481664866622362,-0.0034768785056312236,-0.000670012778529941,0.00012087681668999993,-0.0016611345500992388,-0.0009225350383452085,-0.0035249967151487604,-0.0007055583603693182,0.0007682681833389039,-0.0034283402120744693,-0.0014629614792395307,-0.001065991120151703,-0.00041073804147146516,-0.004836174886489559,-0.001376400395509035,-0.0026177967562987237,-0.0030922388292433127,-0.0035634149892639338,-0.0053089366541188045,-0.0026797838895838972,0.0008906598218106728,-0.0016490414217577574,-0.0005448977604082393,-0.0004353142623756294,-0.002158105950089501,-0.0003864790722445787,-0.002095450686726327,-0.001395663302791548,-4.7930502899461126e-05,-0.0017156502881716296,-0.002615058815371946,-0.002118381826027936,-0.003368660060541421,-0.0026702124308341296,-0.0013280104999751604,-0.0038054388273402588,-0.0025965023602913012,-0.0034198050296586546,-0.0036883698356805156,-0.007276208780791188,-0.0012117557431248812,-0.0021166726821686905,-0.004135675581080715,-0.005942692296093562,-0.005687830667086374,-0.0068002882741553545,-0.004095716910480615,-0.006167034171656184,-0.00836376576091798,-5.092416504198739e-05,-0.0017459168410108113,-0.0034764331128129696,-0.002301445252542946,-0.004713656860955831,-0.005978216944989336,-0.0031010135137429545,-0.004942951339245045,-0.004146720892179937,-0.0033059290494294987,-0.0030911310133672383
+52.421929,4.90491,0.0017481664866622361,0.0035231214943687765,0.003029987221470059,0.00042087681668999985,-6.113455009923864e-05,-0.0009225350383452085,-0.00142499671514876,-0.0010055583603693183,0.0021682681833389036,-0.0028283402120744695,-0.0006629614792395308,-0.0030659911201517034,-0.0013107380414714652,-0.0031361748864895595,-0.0014764003955090351,-0.0016177967562987234,-0.0059922388292433125,-0.004163414989263934,-0.0026089366541188043,-0.003479783889583897,-0.0032093401781893268,-0.004849041421757757,-0.0026448977604082396,-0.0032353142623756295,-0.005058105950089501,-0.0037864790722445785,-0.0040954506867263265,-0.0044956633027915475,-0.001547930502899461,-0.00271565028817163,-0.003615058815371946,-0.005118381826027936,-0.004568660060541422,-0.005170212430834129,-0.0027280104999751606,-0.006005438827340259,-0.004696502360291301,-0.006319805029658654,-0.005788369835680516,-0.009676208780791189,-0.005111755743124881,-0.0054166726821686904,-0.007435675581080716,-0.006842692296093562,-0.007487830667086373,-0.010500288274155355,-0.007295716910480614,-0.007967034171656184,-0.01056376576091798,-0.0025509241650419874,-0.005645916841010811,-0.006176433112812969,-0.006101445252542945,-0.007613656860955831,-0.007078216944989336,-0.005001013513742955,-0.005542951339245045,-0.005646720892179937,-0.004205929049429498,-0.003591131013367238
+52.421985,4.904264,0.005748166486662236,0.0034231214943687767,0.0039299872214700595,0.004720876816689999,-0.0010611345500992388,0.0008774649616547915,-0.00072499671514876,9.444163963068177e-05,0.004368268183338904,-0.00332834021207447,0.0006370385207604692,0.005134008879848297,-0.0017107380414714652,-0.00013617488648955947,-0.00017640039550903517,0.0009822032437012765,0.002107761170756688,0.0022365850107360667,0.0018910633458811953,0.0024202161104161027,0.002690659821810673,-0.0030490414217577574,0.0013551022395917604,0.0011646857376243706,-0.002158105950089501,0.00021352092775542134,-0.0011954506867263267,-0.002095663302791548,-0.0009479305028994612,-0.0009156502881716296,-0.0009150588153719463,-0.0018183818260279361,-0.0006686600605414213,2.97875691658705e-05,0.0005719895000248396,-0.0016054388273402586,-0.0006965023602913009,-0.0009198050296586543,-0.0018883698356805154,-0.0058762087807911895,-0.002311755743124881,-0.0009166726821686906,-0.003935675581080715,-0.0029426922960935627,1.2169332913626596e-05,0.0004997117258446449,-9.571691048061435e-05,-0.003867034171656184,-0.00516376576091798,0.0031490758349580128,-0.0011459168410108114,-0.0030764331128129694,-0.004101445252542945,-0.002513656860955831,-0.002578216944989335,-0.0021010135137429545,-0.003542951339245045,-0.002746720892179937,-0.0003059290494294985,0.000608868986632762
+52.421869,4.905208,0.0022481664866622363,-0.00017687850563122357,-0.000970012778529941,0.0003208768166899998,-0.00016113455009923868,0.0012774649616547915,0.0003750032848512399,0.0008944416396306817,0.0028682681833389037,-0.0037283402120744692,3.7038520760469205e-05,0.0029340088798482968,-0.00041073804147146516,-0.0036361748864895595,0.0013235996044909648,-0.0001177967562987235,0.0004077611707566876,-0.0019634149892639335,-0.0012089366541188046,0.0013202161104161028,0.00029065982181067287,-0.0017490414217577574,0.0002551022395917606,6.468573762437053e-05,-0.001158105950089501,0.0010135209277554215,-0.0009954506867263266,-0.0006956633027915479,0.002752069497100539,0.00018434971182837022,-0.0013150588153719464,-0.0008183818260279361,-0.0024686600605414214,-0.0015702124308341295,0.0020719895000248395,-0.0032054388273402585,-0.001196502360291301,-0.0019198050296586543,-0.0035883698356805153,-0.005276208780791189,-0.002511755743124881,-0.0015166726821686904,-0.0056356755810807145,-0.0026426922960935623,-0.0009878306670863734,0.0007997117258446448,-0.0012957169104806142,-0.004767034171656184,-0.00226376576091798,0.0029490758349580122,-0.0001459168410108114,-0.0016764331128129692,-0.0008014452525429458,-0.004013656860955831,-0.001978216944989335,-0.0019010135137429547,-0.002142951339245045,-0.0017467208921799371,-0.0010059290494294985,-0.0006911310133672381
+52.421941,4.9044,0.0005481664866622362,-0.006776878505631224,-0.000670012778529941,-0.0036791231833100003,-0.0013611345500992387,-0.0034225350383452085,-0.00772499671514876,-0.006705558360369318,-0.0035317318166610966,-0.0061283402120744694,-0.00566296147923953,0.001434008879848297,-0.012310738041471465,-0.00953617488648956,-0.005776400395509035,-0.009917796756298723,-0.006792238829243313,-0.0016634149892639336,0.0032910633458811955,-7.978388958389715e-05,0.0021906598218106726,-0.0030490414217577574,-0.0063448977604082385,-0.00663531426237563,-0.0111581059500895,-0.005186479072244579,-0.0050954506867263265,-0.006095663302791547,-0.0069479305028994605,-0.00441565028817163,-0.007915058815371946,-0.008918381826027937,-0.01296866006054142,-0.00607021243083413,-0.010528010499975161,-0.011205438827340257,-0.0090965023602913,-0.0028198050296586548,-0.010088369835680516,-0.012376208780791188,-0.008411755743124881,-0.011216672682168692,-0.010335675581080716,-0.007942692296093562,-0.0009878306670863734,-0.004000288274155355,-0.0066957169104806145,-0.010667034171656183,-0.01076376576091798,-0.0037509241650419876,-0.0050459168410108115,-0.011776433112812968,-0.004401445252542945,-0.00991365686095583,-0.006278216944989336,-0.009301013513742953,-0.007142951339245046,-0.007746720892179938,-0.009805929049429498,-0.007891131013367239
+52.421822,4.905296,0.0030481664866622363,2.312149436877641e-05,-0.0002700127785299409,0.0008208768166899998,3.88654499007613e-05,0.00017746496165479153,0.0004750032848512399,-0.0008055583603693182,0.002068268183338904,0.00037165978792553047,-0.0006629614792395308,-0.0018659911201517028,-0.002710738041471465,-0.004236174886489559,-0.0010764003955090352,-0.002717796756298724,-0.0037922388292433128,-0.0034634149892639335,-0.0017089366541188046,-0.002079783889583897,-0.0015093401781893273,-0.004449041421757757,0.0012551022395917604,-0.0027353142623756294,-0.003158105950089501,-0.0010864790722445784,-0.003095450686726327,0.0003043366972084521,0.002552069497100539,-0.0005156502881716299,-0.0023150588153719462,-0.002618381826027936,-0.0007686600605414214,-0.0029702124308341295,0.0021719895000248397,-0.0010054388273402588,-0.0022965023602913013,-0.0027198050296586545,-0.004688369835680516,-0.005376208780791189,-0.0014117557431248809,-0.0021166726821686905,-0.003935675581080715,-0.0034426922960935627,-0.0026878306670863735,-0.003300288274155355,-0.0026957169104806144,-0.004567034171656184,-0.00696376576091798,-0.0005509241650419874,-0.0024459168410108116,-0.0009764331128129695,-0.0010014452525429457,-0.003313656860955831,-0.0031782169449893352,-0.0020010135137429547,-0.0011429513392450454,-0.0014467208921799372,-0.0003059290494294985,-0.0007911310133672381
+52.421887,4.904488,0.002648166486662236,-0.00047687850563122355,-7.001277852994092e-05,0.0019208768166899997,-0.0004611345500992387,0.0015774649616547914,-0.00242499671514876,-0.0010055583603693183,0.002068268183338904,-0.004028340212074469,-0.002262961479239531,-0.00016599112015170292,-0.003810738041471465,-0.00573617488648956,-0.003676400395509035,-0.0045177967562987234,-0.0006922388292433124,-0.0016634149892639336,-0.0009089366541188045,-0.0018797838895838969,-0.0015093401781893273,-0.0038490414217577573,-0.0014448977604082395,-0.0016353142623756292,-0.0044581059500895005,-0.0021864790722445787,-0.0031954506867263267,-0.001695663302791548,-0.001847930502899461,-0.0022156502881716294,-0.0037150588153719464,-0.0032183818260279363,-0.002868660060541421,-0.0023702124308341292,-0.0015280104999751605,-0.006005438827340259,-0.0027965023602913013,-0.004319805029658654,-0.005188369835680515,-0.0071762087807911885,-0.002411755743124881,-0.0038166726821686906,-0.006635675581080715,-0.006242692296093562,-0.0022878306670863734,-0.003400288274155355,-0.002895716910480614,-0.007367034171656184,-0.00376376576091798,0.0013490758349580126,0.0013540831589891886,-0.003576433112812969,-0.0038014452525429454,-0.006213656860955831,-0.005878216944989335,-0.004701013513742955,-0.004542951339245045,-0.004346720892179937,-0.0037059290494294984,-0.0037911310133672384
+52.421853,4.904531,0.0007481664866622362,0.0022231214943687766,0.0004299872214700591,-0.00197912318331,-0.003061134550099239,-0.0030225350383452083,-0.0036249967151487598,-0.0022055583603693184,0.0018682681833389037,-0.0032283402120744696,-0.001962961479239531,3.400887984829695e-05,-0.004310738041471466,-0.0069361748864895595,-0.004776400395509035,-0.0045177967562987234,-0.004392238829243313,-0.004063414989263933,-0.0040089366541188045,-0.004379783889583897,-0.003309340178189327,-0.006649041421757758,-0.0047448977604082395,-0.00463531426237563,-0.0077581059500895005,-0.0036864790722445783,-0.006195450686726326,-0.005995663302791548,-0.004047930502899461,-0.00341565028817163,-0.006615058815371946,-0.006118381826027936,-0.004568660060541422,-0.00437021243083413,-0.00522801049997516,-0.007405438827340258,-0.005296502360291301,-0.006819805029658654,-0.007388369835680516,-0.010076208780791188,-0.005211755743124881,-0.0054166726821686904,-0.008335675581080716,-0.008842692296093562,-0.004887830667086373,-0.0036002882741553548,-0.005795716910480614,-0.010067034171656183,-0.00926376576091798,-0.004450924165041987,-0.006645916841010811,-0.005976433112812969,-0.007101445252542946,-0.006613656860955831,-0.007178216944989335,-0.007301013513742955,-0.006842951339245045,-0.006546720892179937,-0.008605929049429499,-0.009391131013367238
+52.421708,4.905529,0.0006481664866622362,0.00022312149436877645,0.0003299872214700591,0.0013208768166899998,-0.00016113455009923868,0.00047746496165479153,-0.0029249967151487597,9.444163963068177e-05,0.0021682681833389036,-0.00362834021207447,0.0005370385207604691,0.000534008879848297,-0.00041073804147146516,-0.0024361748864895594,-0.0002764003955090352,0.00038220324370127646,-0.0013922388292433123,-0.0014634149892639335,0.0013910633458811953,0.0006202161104161028,0.0015906598218106728,-0.0007490414217577575,0.0011551022395917606,0.0009646857376243705,-0.002058105950089501,-0.00018647907224457862,-0.0002954506867263266,-0.0012956633027915478,0.002552069497100539,0.00028434971182837027,-0.0030150588153719463,-0.001918381826027936,-0.0005686600605414215,-0.0005702124308341295,0.0025719895000248395,-0.0038054388273402588,-0.001596502360291301,-0.0024198050296586546,-0.0019883698356805155,-0.004676208780791188,-0.0014117557431248809,8.332731783130944e-05,-0.0036356755810807153,-0.0016426922960935625,-0.0025878306670863733,-0.0006002882741553551,-0.0008957169104806144,-0.004167034171656184,-0.00476376576091798,0.0008490758349580126,-0.0007459168410108115,-0.0017764331128129695,-0.0007014452525429457,-0.003013656860955831,-0.002378216944989335,-0.002401013513742955,-0.002342951339245045,-0.001646720892179937,0.0036940709505705015,0.00010886898663276185
+52.421665,4.90549,-0.004651833513337764,-0.008276878505631224,-0.006370012778529941,-0.00397912318331,-0.005161134550099239,-0.005622535038345209,-0.00572499671514876,-0.004805558360369318,-0.002031731816661096,-0.00812834021207447,-0.0047629614792395305,-0.004065991120151703,-0.005810738041471465,-0.00763617488648956,-0.004376400395509035,-0.004617796756298724,-0.006192238829243313,-0.006163414989263934,-0.005508936654118805,-0.004179783889583897,-0.0022093401781893268,-0.006349041421757758,-0.004544897760408239,-0.00563531426237563,-0.006158105950089501,-0.004586479072244579,-0.005195450686726326,-0.006395663302791547,-0.004547930502899461,-0.005115650288171629,-0.007215058815371946,-0.007318381826027936,-0.006668660060541422,-0.008070212430834129,-0.00752801049997516,-0.007405438827340258,-0.005096502360291301,-0.009619805029658654,-0.008788369835680515,-0.010776208780791188,-0.0063117557431248816,-0.0036166726821686905,-0.006535675581080714,-0.010442692296093563,-0.007987830667086374,-0.0078002882741553545,-0.006995716910480614,-0.010067034171656183,-0.011063765760917981,-0.0025509241650419874,-0.006345916841010811,-0.00817643311281297,-0.008001445252542946,-0.009513656860955831,-0.009178216944989335,-0.007901013513742955,-0.008542951339245045,-0.007546720892179937,-0.008405929049429498,-0.008091131013367238
+52.4217,4.904917,0.0019481664866622362,-0.0029768785056312236,0.001029987221470059,0.0003208768166899998,-0.0016611345500992388,-0.0015225350383452085,-0.00172499671514876,-0.0012055583603693182,6.826818333890376e-05,-0.0030283402120744696,-0.0015629614792395307,0.000334008879848297,-0.002010738041471465,-0.004036174886489559,-0.002276400395509035,-0.0025177967562987234,-0.0026922388292433125,-0.0011634149892639336,0.0005910633458811955,-0.002579783889583897,-0.0006093401781893271,-0.0005490414217577574,-0.0006448977604082396,-0.0002353142623756295,-0.003058105950089501,-0.0009864790722445786,-0.0022954506867263265,-0.0014956633027915479,0.0005520694971005389,-0.0006156502881716297,-0.0035150588153719463,-0.003018381826027936,-0.0021686600605414215,-0.0020702124308341293,-0.0007280104999751604,-0.004305438827340259,-0.002996502360291301,-0.0037198050296586545,-0.004388369835680516,-0.0074762087807911885,-0.002911755743124881,-0.0018166726821686905,-0.005935675581080714,-0.0063426922960935625,-0.004187830667086374,-0.004400288274155355,-0.005895716910480614,-0.007867034171656184,-0.00926376576091798,-5.092416504198739e-05,-0.0036459168410108113,-0.004476433112812969,-0.0028014452525429454,-0.006413656860955831,-0.005378216944989336,-0.003701013513742955,-0.005542951339245045,-0.005846720892179937,-0.0026059290494294986,-0.002991131013367238
+52.42169,4.904944,0.0027481664866622364,-0.0038768785056312234,-0.001070012778529941,0.00102087681669,-0.0008611345500992387,-0.0038225350383452083,-0.0052249967151487605,-0.0028055583603693183,0.0021682681833389036,-0.005428340212074469,-0.0015629614792395307,-0.0016659911201517032,-0.003410738041471465,-0.00413617488648956,-0.003876400395509035,-0.0015177967562987236,-0.005292238829243312,-0.0025634149892639338,-0.003708936654118804,-0.0031797838895838973,-0.0003093401781893272,-0.0029490414217577575,-0.0017448977604082399,-0.0005353142623756294,-0.003258105950089501,-0.0026864790722445782,-0.0017954506867263265,-0.001895663302791548,0.002052069497100539,0.0006843497118283702,-0.0027150588153719464,-0.003818381826027936,-0.0029686600605414214,-0.0012702124308341294,-0.00222801049997516,-0.0052054388273402585,-0.002496502360291301,-0.004219805029658654,-0.005188369835680515,-0.0071762087807911885,-0.002811755743124881,-0.0020166726821686906,-0.007735675581080716,-0.004942692296093562,-0.004087830667086374,-0.005600288274155355,-0.004995716910480614,-0.005767034171656184,-0.010463765760917981,-0.0006509241650419874,-0.004145916841010812,-0.004176433112812969,-0.0019014452525429458,-0.0045136568609558305,-0.003878216944989335,-0.002701013513742955,-0.004542951339245045,-0.002846720892179937,-0.0038059290494294987,-0.0024911310133672385
+52.421539,4.905768,0.0020481664866622363,-0.0020768785056312234,0.001029987221470059,0.0012208768166899998,0.0019388654499007613,0.0013774649616547915,-0.00302499671514876,-5.558360369318171e-06,0.0021682681833389036,-0.0028283402120744695,0.0015370385207604692,0.002434008879848297,0.00028926195852853483,-0.0022361748864895593,0.0003235996044909648,0.0010822032437012765,-0.0003922388292433124,0.0001365850107360665,-0.004808936654118805,0.0017202161104161026,0.001890659821810673,-0.0017490414217577574,-0.00014489776040823958,0.0020646857376243706,-0.002758105950089501,0.0008135209277554214,-0.0014954506867263266,-0.0006956633027915479,0.0017520694971005389,0.00218434971182837,0.0001849411846280537,-0.001618381826027936,-6.866006054142139e-05,-0.0006702124308341295,-0.0021280104999751607,-0.007305438827340259,-0.000596502360291301,-0.003219805029658654,-8.83698356805156e-05,-0.004276208780791189,0.0001882442568751189,0.0016833273178313095,-0.0007356755810807151,-0.0050426922960935625,-0.002187830667086373,-0.002100288274155355,-0.0009957169104806143,-0.004367034171656184,-0.00606376576091798,0.0022490758349580126,-4.591684101081135e-05,-0.0003764331128129695,-0.0009014452525429456,-0.002713656860955831,-0.002278216944989335,-0.0008010135137429546,-0.003642951339245045,-0.002946720892179937,-0.0008059290494294985,-0.000891131013367238
+52.42152,4.905809,0.004848166486662236,-0.0020768785056312234,-0.0012700127785299409,2.0876816689999883e-05,-0.00026113455009923873,-0.00032253503834520845,0.00017500328485124,0.0005944416396306818,0.003468268183338904,-0.0011283402120744696,0.0014370385207604693,0.000834008879848297,0.0005892619585285349,-0.0016361748864895595,-0.0011764003955090352,-1.7796756298723562e-05,-0.0029922388292433124,-0.00026341498926393353,0.0007910633458811955,0.003120216110416103,0.0034906598218106726,0.0011509585782422426,0.004355102239591761,0.0003646857376243705,-0.002258105950089501,-0.0005864790722445784,-0.0026954506867263267,0.0007043366972084521,0.004252069497100539,0.0024843497118283704,0.0011849411846280536,-0.00041838182602793616,0.0017313399394585783,0.0026297875691658704,0.0025719895000248395,-0.00040543882734025874,-0.000896502360291301,-0.0012198050296586545,-0.0034883698356805155,-0.006076208780791188,-0.000611755743124881,-0.00021667268216869057,-0.002035675581080715,-0.0024426922960935626,-0.003487830667086374,-0.002600288274155355,0.0008042830895193856,-0.002667034171656184,-0.00516376576091798,0.0010490758349580125,-0.0007459168410108115,-7.643311281296935e-05,-1.4452525429457406e-06,-0.0019136568609558308,-0.0021782169449893352,-0.0003010135137429545,0.0006570486607549547,0.00035327910782006285,0.0022940709505705013,0.000608868986632762
+52.421599,4.905175,0.0004481664866622362,-0.0029768785056312236,-0.0012700127785299409,-0.0016791231833100002,-0.003461134550099239,-0.0029225350383452085,-0.00212499671514876,-0.004405558360369318,-0.0006317318166610963,-0.005028340212074469,-0.0035629614792395308,-0.004265991120151703,-0.005010738041471465,-0.00603617488648956,-0.005376400395509035,-0.004317796756298723,-0.005792238829243313,-0.005963414989263934,-0.005908936654118805,-0.007079783889583897,-0.005209340178189327,-0.004549041421757757,-0.0038448977604082393,-0.0042353142623756295,-0.005158105950089501,-0.0034864790722445786,-0.007795450686726326,-0.003995663302791548,-0.002147930502899461,-0.003115650288171629,-0.005515058815371946,-0.005818381826027936,-0.005868660060541422,-0.004470212430834129,-0.00442801049997516,-0.008005438827340259,-0.004596502360291301,-0.006519805029658654,-0.007688369835680516,-0.008576208780791189,-0.004411755743124882,-0.00441667268216869,-0.008135675581080715,-0.006142692296093562,-0.007187830667086373,-0.007600288274155355,-0.006795716910480614,-0.008067034171656185,-0.00996376576091798,-0.0036509241650419873,-0.006245916841010812,-0.005376433112812969,-0.004601445252542946,-0.009313656860955831,-0.009178216944989335,-0.002901013513742955,-0.006142951339245046,-0.004746720892179937,-0.0049059290494294985,-0.0038911310133672387
+52.421589,4.905131,0.003348166486662236,-0.004376878505631224,0.0003299872214700591,-7.912318331000016e-05,-0.0009611345500992387,-0.0022225350383452084,-0.0026249967151487598,-0.0026055583603693186,0.00046826818333890394,-0.005428340212074469,-0.004562961479239531,-0.0034659911201517027,-0.004510738041471465,-0.00633617488648956,-0.008476400395509035,-0.006617796756298724,-0.007992238829243312,-0.006863414989263934,-0.0033089366541188044,-0.005979783889583897,-0.004009340178189327,-0.0019490414217577575,-0.0017448977604082399,-0.005735314262375629,-0.005958105950089501,-0.003586479072244579,-0.008595450686726326,-0.004395663302791547,-0.002547930502899461,-0.0023156502881716296,-0.004815058815371946,-0.005718381826027937,-0.004568660060541422,-0.0039702124308341295,-0.0037280104999751606,-0.007105438827340258,-0.003496502360291301,-0.007919805029658654,-0.011188369835680516,-0.012076208780791188,-0.005111755743124881,-0.004916672682168691,-0.010535675581080716,-0.006542692296093562,-0.0032878306670863734,-0.007900288274155355,-0.006595716910480614,-0.010367034171656183,-0.00996376576091798,-0.004250924165041987,-0.006145916841010812,-0.0034764331128129696,-0.004001445252542945,-0.010113656860955831,-0.010278216944989335,-0.007701013513742955,-0.007742951339245046,-0.0059467208921799375,-0.0049059290494294985,-0.006591131013367238
+52.421536,4.905339,-0.005751833513337763,-0.014376878505631224,-0.000970012778529941,-0.00327912318331,-0.005361134550099239,-0.004122535038345208,-0.00082499671514876,-0.0036055583603693177,-0.0007317318166610962,-0.00832834021207447,-0.007162961479239531,-0.005765991120151703,-0.0072107380414714655,-0.007536174886489559,-0.006976400395509035,-0.006617796756298724,-0.007692238829243313,-0.006563414989263934,-0.005408936654118805,-0.006179783889583897,-0.005409340178189327,-0.0039490414217577575,-0.0033448977604082397,-0.0065353142623756294,-0.008058105950089501,-0.0034864790722445786,-0.0070954506867263265,-0.006395663302791547,-0.0072479305028994604,-0.00631565028817163,-0.006515058815371946,-0.0069183818260279365,-0.006468660060541422,-0.005570212430834129,-0.0021280104999751607,-0.007805438827340258,-0.006196502360291302,-0.006619805029658654,-0.008488369835680515,-0.010576208780791189,-0.007811755743124882,-0.006216672682168691,-0.009135675581080716,-0.008042692296093563,-0.007187830667086373,-0.008400288274155355,-0.008295716910480614,-0.009667034171656184,-0.00896376576091798,-0.004550924165041987,-0.006945916841010811,-0.0068764331128129685,-0.005701445252542945,-0.006413656860955831,-0.008278216944989335,-0.0062010135137429544,-0.006742951339245046,-0.008846720892179936,-0.006405929049429498,-0.005891131013367239
+52.421551,4.905205,0.0006481664866622362,-0.0031768785056312233,0.001729987221470059,-7.912318331000016e-05,-0.0014611345500992387,-0.0013225350383452084,-0.0026249967151487598,-0.0019055583603693183,0.0015682681833389038,-0.0023283402120744695,-0.0016629614792395308,-0.0006659911201517029,-0.0015107380414714651,-0.008636174886489559,-0.003276400395509035,-0.0015177967562987236,0.0005077611707566877,-0.0013634149892639337,-0.0022089366541188046,-0.003279783889583897,-0.002609340178189327,-0.0021490414217577576,-0.004244897760408239,-0.0004353142623756294,-0.004558105950089501,-0.0028864790722445788,-0.004295450686726326,-0.002895663302791548,0.00045206949710053883,-0.00241565028817163,-0.004115058815371946,-0.0035183818260279363,-0.002868660060541421,-0.0018702124308341294,0.0004719895000248396,-0.006005438827340259,-0.002696502360291301,-0.006219805029658654,-0.005788369835680516,-0.010876208780791189,-0.0046117557431248814,-0.009216672682168692,-0.010735675581080715,-0.005942692296093562,-0.007987830667086374,-0.0039002882741553547,-0.0021957169104806144,-0.010167034171656184,-0.007963765760917979,-0.003550924165041987,-0.007645916841010812,-0.00697643311281297,-0.004801445252542945,-0.007813656860955831,-0.003378216944989335,-0.009901013513742955,-0.008042951339245045,-0.006646720892179937,-0.008305929049429499,-0.0038911310133672387
+52.42149,4.90541,0.0011481664866622363,-0.0028768785056312233,0.0004299872214700591,-0.0013791231833100003,-0.0011611345500992386,-0.0018225350383452086,-0.00332499671514876,-0.002105558360369318,-0.002631731816661096,-0.00722834021207447,-0.003162961479239531,-0.002165991120151703,-0.003510738041471465,-0.00563617488648956,-0.003876400395509035,-0.0042177967562987235,-0.004592238829243312,-0.004363414989263933,-0.0022089366541188046,-0.0031797838895838973,-0.0022093401781893268,-0.0033490414217577577,-0.0025448977604082394,-0.0029353142623756295,-0.0063581059500895,-0.0019864790722445786,-0.004595450686726326,-0.004095663302791547,-0.0008479305028994612,-0.0025156502881716293,-0.005515058815371946,-0.003918381826027936,-0.003968660060541421,-0.0039702124308341295,-0.0024280104999751606,-0.006305438827340259,-0.0030965023602913012,-0.0057198050296586546,-0.005888369835680515,-0.007776208780791188,-0.004411755743124882,-0.004216672682168691,-0.0056356755810807145,-0.006642692296093562,-0.005287830667086373,-0.006500288274155355,-0.006795716910480614,-0.008567034171656183,-0.00786376576091798,-0.003550924165041987,-0.004445916841010812,-0.0075764331128129695,-0.004401445252542945,-0.006913656860955831,-0.0075782169449893355,-0.005601013513742955,-0.0066429513392450455,-0.007946720892179937,-0.004705929049429498,-0.003691131013367238
+52.42139,4.906193,0.0022481664866622363,-0.0006768785056312236,-0.0007700127785299409,-0.00027912318331000025,0.0005388654499007613,-0.0018225350383452086,-0.00062499671514876,0.0005944416396306818,0.0021682681833389036,-0.00262834021207447,-0.0014629614792395307,-0.00026599112015170297,-0.0010107380414714651,-0.0036361748864895595,-0.002276400395509035,-0.00021779675629872354,-0.0030922388292433127,-0.0030634149892639333,-0.0011089366541188047,2.0216110416102786e-05,-9.340178189327052e-06,-0.0015490414217577575,0.0006551022395917606,-0.0018353142623756293,-0.000958105950089501,-0.0011864790722445786,-0.002095450686726327,0.00010433669720845212,0.0038520694971005387,0.0006843497118283702,-0.0010150588153719463,-0.002418381826027936,-0.0013686600605414215,-0.0018702124308341294,0.0006719895000248395,-0.0037054388273402585,-0.001396502360291301,-0.0024198050296586546,-0.004088369835680516,-0.0041762087807911885,-0.003111755743124881,-0.0026166726821686905,-0.006935675581080715,-0.0024426922960935626,-0.0014878306670863732,-0.002400288274155355,-0.0032957169104806143,-0.004467034171656184,-0.00646376576091798,-0.0009509241650419876,-0.0017459168410108113,-0.0012764331128129695,0.0004985547474570544,-0.0055136568609558305,-0.002978216944989335,-1.0135137429545483e-06,-0.0008429513392450453,-0.0009467208921799372,-0.0009059290494294986,-9.113101336723803e-05
+52.421455,4.905484,-0.001751833513337764,-0.006176878505631224,-0.003370012778529941,-0.0005791231833100002,-0.0005611345500992388,-0.0018225350383452086,-0.00432499671514876,-5.558360369318171e-06,-0.0014317318166610963,-0.007328340212074469,-0.0016629614792395308,-0.001765991120151703,-0.004110738041471465,-0.00933617488648956,-0.004276400395509036,-0.003717796756298723,-0.0059922388292433125,-0.005363414989263933,-0.006208936654118805,-0.007679783889583898,-0.003909340178189327,-0.005049041421757758,-0.0036448977604082397,-0.00663531426237563,-0.008058105950089501,-0.004986479072244579,-0.008295450686726326,-0.0054956633027915475,-0.004447930502899461,-0.00811565028817163,-0.006815058815371946,-0.006818381826027935,-0.006168660060541422,-0.005570212430834129,-0.00442801049997516,-0.007305438827340259,-0.004696502360291301,-0.008119805029658655,-0.007388369835680516,-0.010976208780791188,-0.006011755743124882,-0.008016672682168692,-0.010835675581080716,-0.010942692296093562,-0.007487830667086373,-0.010700288274155355,-0.010195716910480615,-0.010967034171656185,-0.01236376576091798,-0.005150924165041988,-0.008045916841010812,-0.00927643311281297,-0.008401445252542945,-0.011213656860955832,-0.008778216944989335,-0.006701013513742955,-0.010042951339245045,-0.009046720892179937,-0.007705929049429499,-0.010191131013367239
+52.421393,4.905601,-0.00035183351333776375,-0.007876878505631223,-0.0024700127785299408,-0.0009791231833100001,-0.0023611345500992387,-0.0024225350383452085,-0.00402499671514876,-0.002305558360369318,0.0015682681833389038,-0.0027283402120744696,-0.002762961479239531,-6.599112015170309e-05,-0.002110738041471465,-0.005536174886489559,-0.0030764003955090348,-0.003017796756298724,-0.0030922388292433127,-0.0027634149892639334,-0.0014089366541188047,-0.002779783889583897,-0.001709340178189327,-0.0036490414217577576,-0.0002448977604082394,0.0022646857376243707,-0.001058105950089501,0.0010135209277554215,-0.0010954506867263264,-0.0002956633027915479,0.0005520694971005389,0.00018434971182837022,-0.0018150588153719464,-0.0020183818260279362,-0.0011686600605414215,0.0008297875691658705,-0.0013280104999751604,-0.0026054388273402587,0.0007034976397086991,-0.0023198050296586543,-0.0014883698356805155,-0.005976208780791189,-0.0015117557431248811,-0.0004166726821686905,-0.005335675581080715,-0.004342692296093562,-0.0005878306670863735,-0.001000288274155355,-0.0008957169104806144,-0.0052670341716561835,-0.00506376576091798,0.0015490758349580125,-0.0026459168410108112,-0.0016764331128129692,-0.002001445252542946,-0.002113656860955831,-0.002978216944989335,-0.0009010135137429544,-0.004442951339245046,-0.003246720892179937,-0.0022059290494294984,-0.001591131013367238
+52.421296,4.906326,0.0016481664866622363,-0.00047687850563122355,0.00022998722147005908,0.0013208768166899998,-0.0007611345500992386,7.746496165479157e-05,-0.00172499671514876,0.0009944416396306817,0.0018682681833389037,-0.0013283402120744697,-0.0006629614792395308,0.000534008879848297,-0.0026107380414714648,-0.0034361748864895594,0.0003235996044909648,-0.0014177967562987235,-0.0013922388292433123,-0.00026341498926393353,-0.0010089366541188045,0.003320216110416103,0.0021906598218106726,-0.0032490414217577574,0.0007551022395917604,-0.0010353142623756293,-0.004358105950089501,-0.0005864790722445784,0.00010454931327367339,0.002504336697208452,0.004552069497100539,0.0029843497118283704,0.0007849411846280537,-0.001118381826027936,-0.0013686600605414215,-0.0010702124308341295,0.0022719895000248395,-0.0025054388273402584,0.000603497639708699,-0.003219805029658654,-0.0023883698356805157,-0.004376208780791188,0.0005882442568751189,0.0009833273178313094,-0.002135675581080715,-0.0029426922960935627,-0.003187830667086374,-0.0008002882741553551,-0.0008957169104806144,-0.0036670341716561836,-0.00606376576091798,0.0025490758349580125,-0.0027459168410108115,-0.00027643311281296944,0.0013985547474570544,-0.0019136568609558308,-0.0016782169449893352,-0.00020101351374295459,-0.002342951339245045,-0.001146720892179937,-0.00020592904942949854,0.002708868986632762
+52.421356,4.905831,0.0010481664866622362,-0.0009768785056312236,-0.001170012778529941,0.0014208768166899999,-0.0007611345500992386,-0.0008225350383452084,-0.00032499671514876,-0.0007055583603693182,0.0038682681833389037,-0.00432834021207447,-0.002462961479239531,-0.000865991120151703,-0.0018107380414714653,-0.00443617488648956,-0.002876400395509035,-0.0019177967562987233,-0.004092238829243313,-0.0023634149892639332,-0.0036089366541188048,-0.004479783889583897,0.0011906598218106728,-0.0021490414217577576,-4.489776040823932e-05,-0.0004353142623756294,-0.011258105950089501,0.0022135209277554216,-0.003395450686726327,-0.0007956633027915479,0.00045206949710053883,-0.0006156502881716297,-0.0009150588153719463,-0.0020183818260279362,-0.0018686600605414211,-0.0009702124308341295,-0.0010280104999751604,-0.005705438827340259,-0.000596502360291301,-0.0021198050296586547,-0.0039883698356805155,-0.0074762087807911885,-0.002711755743124881,-0.0031166726821686905,-0.0037356755810807147,-0.004942692296093562,-0.004187830667086374,-0.002700288274155355,-0.0010957169104806143,-0.002767034171656184,-0.005963765760917981,0.0019490758349580127,-0.0016459168410108114,-0.005376433112812969,-0.0019014452525429458,-0.005013656860955831,-0.004978216944989336,-0.004001013513742955,-0.003142951339245045,-0.002746720892179937,-0.004505929049429498,-0.0024911310133672385
+52.421279,4.906425,0.0034481664866622365,0.0024231214943687767,0.002429987221470059,0.0009208768166899999,0.0007388654499007613,0.00027746496165479155,-0.00132499671514876,0.0009944416396306817,0.002568268183338904,-0.0034283402120744693,0.0008370385207604693,0.001234008879848297,0.00038926195852853477,-0.0021361748864895595,0.0003235996044909648,-0.0012177967562987235,-0.0010922388292433124,-0.0014634149892639335,-0.00020893665411880454,-0.0011797838895838972,0.0021906598218106726,-0.0015490414217577575,0.0013551022395917604,0.0002646857376243705,-0.002058105950089501,0.0019135209277554215,-0.0017954506867263265,-0.001195663302791548,0.0029520694971005386,0.0011843497118283702,-0.0008150588153719463,-0.0035183818260279363,-0.0002686600605414215,0.0005297875691658706,0.00017198950002483956,-0.0021054388273402586,-0.000596502360291301,-0.004419805029658655,-0.0010883698356805155,-0.004576208780791189,-0.002211755743124881,-1.667268216869056e-05,-0.0024356755810807152,-0.007142692296093562,-0.0014878306670863732,-0.001700288274155355,-0.0011957169104806142,-0.0035670341716561842,-0.00556376576091798,0.0014490758349580126,-0.00044591684101081153,-0.0009764331128129695,-0.0007014452525429457,-0.003313656860955831,-0.002078216944989335,-0.0016010135137429545,-0.002542951339245045,-0.003146720892179937,-0.0009059290494294986,-0.000891131013367238
+52.421317,4.905742,-0.0007518335133377639,-0.004376878505631224,0.0006299872214700591,-0.0011791231833100002,-0.0022611345500992384,-0.0020225350383452083,-0.00342499671514876,-0.0025055583603693183,-3.173181666109607e-05,-0.005128340212074469,-0.004562961479239531,-0.002665991120151703,-0.003510738041471465,-0.005436174886489559,-0.004476400395509035,-0.006017796756298723,-0.005092238829243313,-0.0022634149892639334,-0.005508936654118805,-0.003979783889583897,-0.004809340178189327,-0.005549041421757757,-0.0047448977604082395,-0.005435314262375629,-0.0081581059500895,-0.006086479072244579,-0.005795450686726327,-0.005195663302791548,-0.003347930502899461,-0.00441565028817163,-0.005315058815371946,-0.007418381826027937,-0.006268660060541421,-0.004570212430834129,-0.0034280104999751602,-0.006905438827340259,-0.0054965023602913015,-0.007719805029658655,-0.007888369835680515,-0.011076208780791187,-0.005711755743124882,-0.00661667268216869,-0.009635675581080715,-0.009842692296093563,-0.008887830667086373,-0.008700288274155355,-0.009995716910480614,-0.007467034171656184,-0.01226376576091798,-0.006150924165041987,-0.006645916841010811,-0.007076433112812969,-0.007201445252542946,-0.009813656860955831,-0.008178216944989335,-0.006801013513742955,-0.004942951339245045,-0.007646720892179937,-0.005605929049429498,-0.002591131013367238
+52.42129,4.905839,-0.002951833513337764,-0.004176878505631224,-0.003570012778529941,-0.011179123183310002,-0.004861134550099239,-0.006622535038345209,-0.0038249967151487603,-0.004005558360369318,0.0007682681833389039,-0.004428340212074469,-0.00736296147923953,-0.006265991120151703,-0.009310738041471466,-0.005436174886489559,-0.007276400395509036,-0.005617796756298724,-0.007792238829243313,-0.006663414989263934,-0.007408936654118806,-0.007279783889583897,-0.006709340178189326,-0.007949041421757758,-0.006644897760408238,-0.00803531426237563,-0.008958105950089501,-0.006386479072244579,-0.008795450686726327,-0.007995663302791547,-0.0049479305028994605,-0.00631565028817163,-0.007515058815371946,-0.010618381826027935,-0.00866866006054142,-0.00907021243083413,-0.007728010499975161,-0.010505438827340258,-0.0083965023602913,-0.010219805029658654,-0.009488369835680516,-0.015176208780791189,-0.00801175574312488,-0.011916672682168691,-0.011435675581080716,-0.014242692296093562,-0.011787830667086373,-0.011200288274155356,-0.011795716910480614,-0.011367034171656184,-0.014863765760917979,-0.006450924165041987,-0.010445916841010811,-0.009476433112812968,-0.006601445252542946,-0.008913656860955832,-0.009678216944989335,-0.007801013513742954,-0.008842951339245045,-0.011046720892179937,-0.010505929049429498,-0.011191131013367238
+52.421101,4.90625,0.005148166486662237,-0.0017768785056312235,0.002629987221470059,0.00042087681668999985,0.002538865449900761,0.0005774649616547916,-0.0009249967151487601,0.0014944416396306818,0.0033682681833389037,-0.0018283402120744694,-0.0011629614792395308,0.0029340088798482968,-0.0011107380414714652,-0.0020361748864895597,-0.002076400395509035,-0.0019177967562987233,-0.0013922388292433123,-0.0013634149892639337,0.0017910633458811955,0.0011202161104161027,0.0008906598218106728,-0.0017490414217577574,0.00015510223959176034,-0.002135314262375629,-0.003058105950089501,-0.0009864790722445786,-0.0026954506867263267,-0.00019566330279154786,0.0007520694971005388,-0.0013156502881716298,-0.0035150588153719463,-0.002618381826027936,-0.002868660060541421,-0.0020702124308341293,0.00037198950002483955,-0.0036054388273402587,0.002103497639708699,-0.0026198050296586542,-0.0020883698356805157,-0.004676208780791188,-0.0019117557431248809,-0.00021667268216869057,-0.003435675581080715,-0.0040426922960935625,0.0010121693329136266,0.0012997117258446449,-0.0004957169104806144,-0.004867034171656184,-0.00336376576091798,0.0006490758349580126,0.00025408315898918857,-0.00667643311281297,0.003898554747457054,-0.006413656860955831,-0.0031782169449893352,0.002398986486257045,0.0017570486607549546,-0.002146720892179937,-0.0026059290494294986,-0.003591131013367238
+52.421006,4.9066,0.0002481664866622363,-0.0019768785056312236,-0.002270012778529941,-0.00427912318331,-0.0006611345500992386,-0.0035225350383452083,-0.0028249967151487603,-0.002705558360369318,0.0018682681833389037,-0.00522834021207447,-0.00036296147923953084,-0.004765991120151703,-0.0016107380414714652,-0.0037361748864895594,-0.002876400395509035,-0.0012177967562987235,-0.0035922388292433122,-0.0031634149892639336,-0.0014089366541188047,-0.0016797838895838972,-0.002009340178189327,-0.004649041421757758,-0.0008448977604082397,-0.0032353142623756295,-0.004558105950089501,-0.0021864790722445787,-0.0009954506867263266,-0.002195663302791548,0.002552069497100539,-0.0014156502881716296,-0.0007150588153719464,-0.004518381826027936,-0.0037686600605414213,-0.004870212430834129,-0.0023280104999751604,-0.005005438827340258,-0.001996502360291301,-0.0050198050296586545,-0.0038883698356805157,-0.00847620878079119,-0.002011755743124881,-0.0007166726821686905,-0.005435675581080715,-0.0029426922960935627,-0.003787830667086374,-0.004100288274155355,-0.003595716910480614,-0.005767034171656184,-0.00716376576091798,0.00024907583495801253,-0.0047459168410108115,-0.0013764331128129693,-0.0017014452525429458,-0.0045136568609558305,-0.0052782169449893356,-0.003401013513742955,-0.002442951339245045,-0.005446720892179937,-0.0026059290494294986,-0.0016911310133672379
+52.420959,4.906623,0.001248166486662236,-0.0021768785056312237,-0.001070012778529941,0.0003208768166899998,-0.0007611345500992386,-0.0005225350383452085,-0.00372499671514876,-0.0009055583603693183,0.001968268183338904,-0.00422834021207447,-0.0011629614792395308,0.000134008879848297,-0.0018107380414714653,-0.00443617488648956,-0.002176400395509035,-1.7796756298723562e-05,-0.0036922388292433125,-0.002963414989263933,-0.0020089366541188045,-0.0014797838895838971,-0.0008093401781893272,-0.0030490414217577574,-0.0006448977604082396,-0.0016353142623756292,-0.0037581059500895013,-0.0017864790722445785,-0.002095450686726327,-0.0017956633027915478,0.0007520694971005388,-0.0008156502881716298,-0.0027150588153719464,-0.008618381826027937,-0.0017686600605414213,-0.0015702124308341295,-0.0020280104999751605,-0.004905438827340259,-0.002496502360291301,-0.004319805029658654,-0.0037883698356805154,-0.006976208780791188,-0.002211755743124881,-0.0016166726821686904,-0.004735675581080715,-0.004842692296093563,-0.0035878306670863733,-0.0036002882741553548,-0.0026957169104806144,-0.006167034171656184,-0.00766376576091798,-0.0005509241650419874,-0.002945916841010812,-0.0033764331128129693,-0.002001445252542946,-0.005713656860955831,-0.0031782169449893352,-0.0012010135137429546,-0.003842951339245045,-0.0039467208921799375,-0.0031059290494294986,-0.002691131013367238
+52.339576,4.881105,-0.0011518335133377637,-0.00027687850563122356,-0.00037001277852994095,-0.0013791231833100003,-0.002061134550099239,-0.004022535038345209,-0.0035249967151487604,-0.0022055583603693184,0.00046826818333890394,-0.0027283402120744696,-0.0016629614792395308,-0.0005659911201517031,-0.002410738041471465,-0.0037361748864895594,-0.003276400395509035,-0.0004177967562987235,-0.003892238829243312,-0.0057634149892639335,-0.0013089366541188044,-0.001979783889583897,-0.0031093401781893265,-0.005549041421757757,-4.489776040823932e-05,-0.0011353142623756296,-0.004358105950089501,-0.0026864790722445782,-0.0031954506867263267,-0.004895663302791548,-0.004847930502899461,-0.00211565028817163,-0.0028150588153719462,-0.006318381826027937,-0.004568660060541422,-0.00407021243083413,-0.00492801049997516,-0.007405438827340258,-0.004996502360291301,-0.0047198050296586545,-0.005488369835680515,-0.004276208780791189,-0.002311755743124881,-0.003916672682168691,-0.0060356755810807156,-0.005142692296093563,-0.0011878306670863733,-0.007300288274155355,-0.0056957169104806145,-0.004567034171656184,-0.008163765760917981,-0.005650924165041987,-0.0033459168410108113,-0.0028764331128129698,-0.0034014452525429452,-0.004913656860955831,-0.0036782169449893353,-0.005401013513742955,-0.004942951339245045,-0.0038467208921799372,-0.003905929049429499,-0.0024911310133672385
+52.339573,4.881004,-0.0024518335133377634,-0.0018768785056312237,-0.002370012778529941,-0.0023791231833100003,-0.003761134550099239,-0.0042225350383452084,-0.0029249967151487597,-0.0032055583603693184,0.0006682681833389038,-0.00392834021207447,-0.0030629614792395308,-0.001065991120151703,-0.003310738041471465,-0.004036174886489559,-0.003676400395509035,-0.0036177967562987237,-0.0036922388292433125,-0.005863414989263934,-0.0035089366541188045,-0.004179783889583897,-0.003609340178189327,-0.004749041421757757,-0.0010448977604082393,-0.0008353142623756296,-0.006258105950089501,-0.0012864790722445785,-0.003795450686726327,-0.004095663302791547,-0.006747930502899461,-0.00501565028817163,-0.004215058815371946,-0.007318381826027936,-0.004268660060541421,-0.005470212430834129,-0.004228010499975161,-0.006005438827340259,-0.0081965023602913,-0.0038198050296586548,-0.0072883698356805155,-0.005676208780791189,-0.0053117557431248815,-0.007216672682168691,-0.0060356755810807156,-0.005442692296093563,-0.002187830667086373,-0.007100288274155355,-0.004095716910480615,-0.003467034171656184,-0.008163765760917981,-0.007450924165041986,-0.006445916841010812,-0.00467643311281297,-0.006001445252542945,-0.006613656860955831,-0.006178216944989335,-0.0062010135137429544,-0.007442951339245046,-0.006346720892179937,-0.008005929049429499,-0.005391131013367238
+52.339562,4.88097,-0.007751833513337763,-0.008376878505631223,-0.005870012778529941,-0.00557912318331,-0.00766113455009924,-0.007322535038345209,-0.00972499671514876,-0.007005558360369318,-0.0037317318166610962,-0.00962834021207447,-0.007262961479239531,-0.006565991120151703,-0.007610738041471466,-0.009736174886489559,-0.008276400395509035,-0.005917796756298724,-0.008792238829243312,-0.011063414989263934,-0.007608936654118804,-0.005679783889583897,-0.007609340178189326,-0.012949041421757757,-0.00794489776040824,-0.004535314262375629,-0.009158105950089502,-0.006086479072244579,-0.0070954506867263265,-0.011395663302791547,-0.009247930502899461,-0.00771565028817163,-0.009315058815371946,-0.011918381826027936,-0.01276866006054142,-0.00857021243083413,-0.01662801049997516,-0.013905438827340258,-0.0091965023602913,-0.008219805029658654,-0.010988369835680516,-0.012276208780791189,-0.01231175574312488,-0.010216672682168691,-0.008735675581080715,-0.014142692296093563,-0.010187830667086374,-0.015300288274155355,-0.011695716910480615,-0.013367034171656184,-0.01416376576091798,-0.012050924165041986,-0.011145916841010812,-0.01247643311281297,-0.013301445252542945,-0.012913656860955832,-0.013578216944989334,-0.014001013513742954,-0.014042951339245045,-0.014446720892179937,-0.013905929049429498,-0.012891131013367238
+52.339568,4.880741,0.0010481664866622362,0.0010231214943687765,0.00022998722147005908,0.0007208768166899999,-0.0006611345500992386,0.0005774649616547916,-0.0010249967151487601,0.0005944416396306818,0.002968268183338904,-0.0025283402120744695,-0.0015629614792395307,-0.0005659911201517031,-0.0007107380414714652,-0.0025361748864895593,-0.0002764003955090352,0.002582203243701276,-0.0017922388292433123,-0.0028634149892639337,-0.0008089366541188045,-0.0004797838895838972,-0.000909340178189327,-0.0025490414217577573,0.0018551022395917605,0.0033646857376243705,-0.001158105950089501,0.0021135209277554213,0.0021045493132736733,-0.001395663302791548,-0.002847930502899461,0.0019843497118283704,-0.00011505881537194632,-0.001618381826027936,0.0003313399394585786,0.0001297875691658705,-0.0015280104999751605,-0.004105438827340258,-0.000796502360291301,-0.0006198050296586544,0.004911630164319484,0.0057237912192088115,0.010488244256875119,0.010783327317831309,0.003864324418919285,0.0011573077039064375,0.0026121693329136265,0.002999711725844645,0.009504283089519385,0.008732965828343816,0.0030362342390820194,0.006149075834958013,0.007054083158989188,0.006923566887187031,0.006198554747457055,0.005786343139044169,0.005921783055010664,0.0056989864862570455,0.006657048660754955,0.0059532791078200625,0.005794070950570502,0.007608868986632762
+52.339512,4.881182,-0.005351833513337763,-0.004376878505631224,-0.005570012778529941,-0.00527912318331,-0.006961134550099239,-0.007522535038345209,-0.00802499671514876,-0.006705558360369318,-0.003231731816661096,-0.00872834021207447,-0.007462961479239531,-0.006765991120151703,-0.007610738041471466,-0.00873617488648956,-0.008476400395509035,-0.005117796756298723,-0.009692238829243312,-0.010463414989263934,-0.0073089366541188045,-0.007379783889583898,-0.007709340178189327,-0.011349041421757758,-0.005944897760408239,-0.0065353142623756294,-0.009458105950089502,-0.006586479072244578,-0.006595450686726326,-0.009495663302791547,-0.00904793050289946,-0.006715650288171629,-0.007815058815371947,-0.009618381826027936,-0.008068660060541421,-0.00787021243083413,-0.00922801049997516,-0.01240543882734026,-0.0097965023602913,-0.009719805029658656,-0.010488369835680515,-0.009476208780791189,-0.008711755743124881,-0.00941667268216869,-0.010835675581080716,-0.011642692296093562,-0.007487830667086373,-0.012300288274155354,-0.011095716910480615,-0.010467034171656184,-0.013363765760917981,-0.010750924165041987,-0.008845916841010812,-0.008376433112812968,-0.010001445252542946,-0.00971365686095583,-0.009478216944989334,-0.010001013513742954,-0.010842951339245045,-0.011146720892179936,-0.010905929049429499,-0.008491131013367239
+52.339566,4.880623,-0.0015518335133377639,-0.0005768785056312236,-0.0016700127785299408,-0.00257912318331,-0.0025611345500992384,-0.0030225350383452083,-0.00412499671514876,-0.001805558360369318,-0.001331731816661096,-0.004728340212074469,-0.003862961479239531,-0.002865991120151703,-0.003810738041471465,-0.0069361748864895595,-0.003576400395509035,-0.0017177967562987237,-0.005592238829243312,-0.006563414989263934,-0.0040089366541188045,-0.003379783889583897,-0.0032093401781893268,-0.006749041421757758,-0.00034489776040823967,-0.0006353142623756295,-0.004358105950089501,-0.0014864790722445786,-0.0017954506867263265,-0.005895663302791548,-0.004147930502899461,-0.0012156502881716295,-0.0027150588153719464,-0.005418381826027937,-0.0031686600605414215,-0.0035702124308341293,-0.0035280104999751605,-0.008105438827340258,-0.004796502360291301,-0.004219805029658654,-0.006788369835680516,-0.006376208780791188,-0.002711755743124881,-0.004516672682168691,-0.004935675581080715,-0.007142692296093562,-0.0013878306670863734,-0.007200288274155355,-0.005295716910480614,-0.004867034171656184,-0.007963765760917979,-0.006350924165041988,-0.0047459168410108115,-0.004476433112812969,-0.006301445252542946,-0.006113656860955831,-0.0052782169449893356,-0.006501013513742954,-0.0066429513392450455,-0.006746720892179937,-0.005805929049429498,-0.0044911310133672385
+52.339565,4.880577,-0.004351833513337763,-0.0040768785056312234,-0.005170012778529941,-0.00397912318331,-0.005161134550099239,-0.005122535038345208,-0.00462499671514876,-0.004305558360369318,-0.001631731816661096,-0.006628340212074469,-0.00536296147923953,-0.004565991120151703,-0.005910738041471466,-0.007536174886489559,-0.007076400395509035,-0.004617796756298724,-0.006892238829243312,-0.007963414989263933,-0.0053089366541188045,-0.004879783889583897,-0.005309340178189327,-0.009249041421757758,-0.00434489776040824,-0.0042353142623756295,-0.006658105950089501,-0.004486479072244578,-0.004495450686726327,-0.008195663302791548,-0.008347930502899462,-0.00461565028817163,-0.005215058815371946,-0.007518381826027936,-0.006168660060541422,-0.00607021243083413,-0.00832801049997516,-0.01070543882734026,-0.007596502360291301,-0.0057198050296586546,-0.009188369835680516,-0.007676208780791189,-0.004211755743124881,-0.006816672682168691,-0.008135675581080715,-0.008742692296093563,-0.004387830667086374,-0.009400288274155354,-0.009395716910480615,-0.010067034171656183,-0.011463765760917979,-0.008550924165041987,-0.006945916841010811,-0.00667643311281297,-0.007701445252542946,-0.007613656860955831,-0.006978216944989336,-0.008201013513742954,-0.008642951339245045,-0.007446720892179937,-0.008505929049429498,-0.0067911310133672385
+52.339622,4.880071,-0.004851833513337764,-0.0019768785056312236,-0.004470012778529941,-0.00427912318331,-0.007061134550099239,-0.005622535038345209,-0.00302499671514876,-0.005405558360369318,-0.000831731816661096,-0.0025283402120744695,-0.007562961479239531,-0.005365991120151703,-0.008110738041471466,-0.00893617488648956,-0.009276400395509036,-0.009017796756298723,-0.010192238829243312,-0.009763414989263933,-0.007608936654118804,-0.007679783889583898,-0.005409340178189327,-0.006949041421757758,-0.0025448977604082394,-0.00493531426237563,-0.0081581059500895,-0.006286479072244578,-0.0050954506867263265,-0.0054956633027915475,-0.002347930502899461,-0.00441565028817163,-0.005215058815371946,-0.0062183818260279355,-0.006368660060541422,-0.005170212430834129,-0.00492801049997516,-0.01130543882734026,-0.0118965023602913,-0.008319805029658655,-0.009188369835680516,-0.008576208780791189,-0.0056117557431248815,-0.007216672682168691,-0.006135675581080715,-0.0019426922960935626,-0.007287830667086374,-0.009700288274155354,-0.010395716910480614,-0.009767034171656183,-0.01296376576091798,-0.009850924165041988,-0.008545916841010812,-0.01467643311281297,-0.005701445252542945,-0.009313656860955831,-0.008278216944989335,-0.006601013513742955,-0.009142951339245045,-0.007846720892179937,-0.007005929049429498,-0.0033911310133672382
+52.339561,4.880523,-0.003351833513337763,-0.0032768785056312235,-0.0037700127785299407,-0.0030791231833100004,-0.004861134550099239,-0.005522535038345208,-0.0065249967151487604,-0.004905558360369318,-0.0025317318166610966,-0.007628340212074469,-0.007262961479239531,-0.004165991120151703,-0.0052107380414714655,-0.00793617488648956,-0.0054764003955090354,-0.0045177967562987234,-0.0066922388292433126,-0.007563414989263934,-0.0053089366541188045,-0.005779783889583897,-0.005209340178189327,-0.008349041421757757,-0.0026448977604082396,-0.004135314262375629,-0.004858105950089501,-0.0026864790722445782,-0.0038954506867263264,-0.001695663302791548,-0.003547930502899461,-0.003115650288171629,-0.002615058815371946,-0.007318381826027936,-0.004368660060541422,-0.0049702124308341296,-0.005728010499975161,-0.00850543882734026,-0.0078965023602913,-0.005319805029658654,-0.008488369835680515,-0.006976208780791188,-0.005511755743124881,-0.005816672682168691,-0.007235675581080715,-0.009942692296093562,-0.003787830667086374,-0.009000288274155355,-0.007495716910480614,-0.007767034171656184,-0.01076376576091798,-0.008250924165041987,-0.006245916841010812,-0.007376433112812969,-0.007701445252542946,-0.008713656860955831,-0.007878216944989335,-0.008401013513742953,-0.008442951339245044,-0.008646720892179938,-0.008805929049429497,-0.006991131013367239
+52.339641,4.879828,-0.003651833513337764,-0.006676878505631224,-0.0036700127785299413,-0.0040791231833100005,-0.007461134550099239,-0.005022535038345209,-0.00812499671514876,-0.005305558360369318,-0.004831731816661097,-0.009828340212074469,-0.004162961479239531,-0.0034659911201517027,-0.004910738041471466,-0.007136174886489559,-0.0061764003955090355,-0.0036177967562987237,-0.004792238829243313,-0.008163414989263934,-0.005508936654118805,-0.003679783889583897,-0.005209340178189327,-0.014449041421757758,-0.00824489776040824,-0.0038353142623756293,-0.0054581059500895006,-0.004086479072244579,-0.0027954506867263265,-0.009995663302791547,-0.01084793050289946,-0.00441565028817163,-0.009015058815371946,-0.010418381826027936,-0.00956866006054142,-0.007770212430834129,-0.01092801049997516,-0.01350543882734026,-0.007596502360291301,-0.009419805029658656,-0.008488369835680515,-0.00877620878079119,-0.007511755743124882,-0.00631667268216869,-0.015335675581080715,-0.010642692296093562,-0.004387830667086374,-0.0078002882741553545,-0.007295716910480614,-0.011867034171656184,-0.011063765760917981,-0.008750924165041987,-0.007745916841010812,-0.00957643311281297,-0.010101445252542945,-0.010713656860955831,-0.008978216944989334,-0.010601013513742954,-0.011642951339245044,-0.011446720892179936,-0.011605929049429498,-0.009891131013367239
+52.339556,4.880493,-0.0022518335133377637,-0.0014768785056312236,-0.002670012778529941,-0.00157912318331,-0.0029611345500992385,-0.004822535038345208,-0.00462499671514876,-0.004205558360369318,-0.0007317318166610962,-0.005328340212074469,-0.004562961479239531,-0.002565991120151703,-0.004010738041471465,-0.0059361748864895595,-0.004676400395509035,-0.003017796756298724,-0.005392238829243313,-0.006463414989263934,-0.0038089366541188044,-0.0045797838895838975,-0.0038093401781893266,-0.006049041421757758,-0.0010448977604082393,-0.004535314262375629,-0.005658105950089501,-0.0028864790722445788,-0.0035954506867263264,-0.009095663302791547,-0.008047930502899462,-0.0033156502881716296,-0.004915058815371946,-0.008118381826027936,-0.005468660060541422,-0.004570212430834129,-0.00532801049997516,-0.008805438827340258,-0.007096502360291301,-0.0060198050296586545,-0.008188369835680515,-0.006676208780791188,-0.004811755743124881,-0.0061166726821686905,-0.006835675581080714,-0.007742692296093563,-0.002787830667086374,-0.005900288274155355,-0.0066957169104806145,-0.006067034171656184,-0.010463765760917981,-0.006350924165041988,-0.005545916841010812,-0.0055764331128129695,-0.006701445252542945,-0.007813656860955831,-0.006778216944989335,-0.006801013513742955,-0.006942951339245045,-0.006746720892179937,-0.007105929049429498,-0.005591131013367238
+52.339645,4.879708,-0.0006518335133377637,-0.0024768785056312236,-0.0016700127785299408,-0.0009791231833100001,-0.0009611345500992387,-0.0009225350383452085,-0.0026249967151487598,-0.0025055583603693183,0.00016826818333890402,-0.004428340212074469,-0.0011629614792395308,0.000434008879848297,-0.002310738041471465,-0.00673617488648956,-0.0014764003955090351,-0.0014177967562987235,-0.0032922388292433123,-0.0023634149892639332,-0.00010893665411880449,-0.0016797838895838972,-0.0016093401781893271,-0.007349041421757758,-0.00414489776040824,-0.0010353142623756293,-0.004258105950089501,-0.0011864790722445786,-0.0029954506867263266,-0.005695663302791547,-0.004047930502899461,-0.0020156502881716297,-0.0032150588153719464,-0.005418381826027937,-0.0029686600605414214,-0.0029702124308341295,-0.004528010499975161,-0.009705438827340259,-0.0078965023602913,-0.004919805029658654,-0.005088369835680516,-0.005376208780791189,-0.004011755743124882,-0.0033166726821686906,-0.007235675581080715,-0.005942692296093562,-0.0006878306670863735,-0.004500288274155355,-0.002895716910480614,-0.006667034171656184,-0.0068637657609179805,-0.005350924165041987,-0.0037459168410108115,-0.005376433112812969,-0.004701445252542945,-0.005813656860955831,-0.0052782169449893356,-0.006001013513742955,-0.005142951339245046,-0.007946720892179937,-0.006705929049429498,-0.0057911310133672384
+52.339557,4.88044,-0.0022518335133377637,-0.0016768785056312237,-0.0024700127785299408,-0.00227912318331,-0.003061134550099239,-0.003722535038345209,-0.00462499671514876,-0.0036055583603693177,-0.0005317318166610961,-0.00362834021207447,-0.003962961479239531,-0.002665991120151703,-0.004510738041471465,-0.00563617488648956,-0.005276400395509036,-0.0033177967562987238,-0.0056922388292433125,-0.007363414989263933,-0.003708936654118804,-0.0045797838895838975,-0.004609340178189327,-0.007949041421757758,-0.003944897760408239,-0.004135314262375629,-0.006558105950089501,-0.004786479072244578,-0.0050954506867263265,-0.007895663302791548,-0.006147930502899461,-0.004115650288171629,-0.005415058815371946,-0.007318381826027936,-0.006268660060541421,-0.004570212430834129,-0.00552801049997516,-0.00850543882734026,-0.006396502360291301,-0.005419805029658654,-0.007088369835680516,-0.005376208780791189,-0.004211755743124881,-0.0038166726821686906,-0.008935675581080715,-0.007842692296093563,-0.0039878306670863735,-0.009000288274155355,-0.007795716910480614,-0.005667034171656184,-0.01066376576091798,-0.008250924165041987,-0.006445916841010812,-0.006776433112812969,-0.007401445252542946,-0.00831365686095583,-0.006678216944989336,-0.007901013513742955,-0.009142951339245045,-0.008446720892179937,-0.008805929049429497,-0.0067911310133672385
+52.339632,4.879295,-0.0021518335133377635,-0.0026768785056312232,-0.0016700127785299408,-0.0021791231833100002,-0.003461134550099239,-0.004822535038345208,-0.00502499671514876,-0.002005558360369318,0.0003682681833389037,-0.00462834021207447,-0.003962961479239531,-0.000865991120151703,-0.003510738041471465,-0.00473617488648956,-0.002676400395509035,-0.003717796756298723,-0.004392238829243313,-0.006563414989263934,-0.004208936654118805,-0.0045797838895838975,-0.0032093401781893268,-0.008149041421757756,-0.0017448977604082399,6.468573762437053e-05,-0.005558105950089501,-0.004186479072244578,-0.0036954506867263267,-0.0067956633027915474,-0.004147930502899461,-0.004115650288171629,-0.004015058815371946,-0.007518381826027936,-0.00836866006054142,-0.004770212430834129,-0.0060280104999751605,-0.008705438827340258,-0.006896502360291301,-0.0050198050296586545,-0.006588369835680515,-0.005676208780791189,-0.002911755743124881,-0.0051166726821686905,-0.003935675581080715,-0.005742692296093563,-0.003187830667086374,-0.006200288274155355,-0.005595716910480614,-0.006867034171656183,-0.008163765760917981,-0.006050924165041988,-0.004945916841010812,-0.006176433112812969,-0.006001445252542945,-0.007013656860955831,-0.0045782169449893355,-0.007401013513742955,-0.005242951339245045,-0.007446720892179937,-0.007305929049429498,-0.007291131013367239
+52.33964,4.879219,-0.0015518335133377639,-0.0032768785056312235,-0.00017001277852994086,-0.0018791231833100003,-0.0025611345500992384,-0.0024225350383452085,-0.0016249967151487602,-0.002105558360369318,-0.000831731816661096,-0.004728340212074469,-0.003462961479239531,-0.00026599112015170297,-0.003310738041471465,-0.00503617488648956,-0.0051764003955090355,-0.0028177967562987233,-0.0032922388292433123,-0.005563414989263934,-0.0035089366541188045,-0.001979783889583897,-0.001209340178189327,-0.006849041421757757,-0.0028448977604082393,-0.0019353142623756295,-0.007458105950089501,-0.0023864790722445783,-0.0011954506867263267,-0.005695663302791547,-0.0036479305028994614,-0.00461565028817163,-0.0029150588153719465,-0.0069183818260279365,-0.004368660060541422,-0.0033702124308341293,-0.0036280104999751603,-0.007405438827340258,-0.0037965023602913013,-0.004419805029658655,-0.005788369835680516,-0.0022762087807911887,-0.001611755743124881,-0.0029166726821686904,-0.007235675581080715,-0.006242692296093562,-0.002887830667086373,-0.0038002882741553553,-0.004595716910480614,-0.005867034171656183,-0.00886376576091798,-0.006350924165041988,-0.002945916841010812,-0.00407643311281297,-0.004001445252542945,-0.0055136568609558305,-0.006678216944989336,-0.005401013513742955,-0.004242951339245045,-0.005446720892179937,-0.004605929049429498,-0.005691131013367238
+52.339637,4.879035,-5.1833513337763834e-05,-0.005776878505631224,-0.001470012778529941,-0.00127912318331,-0.0005611345500992388,-0.0012225350383452086,-0.00392499671514876,-0.0006055583603693181,-0.0005317318166610961,-0.0021283402120744694,-0.002362961479239531,0.0029340088798482968,0.002389261958528535,-0.00603617488648956,-0.0009764003955090352,-0.0036177967562987237,-0.0008922388292433124,-0.0028634149892639337,-0.0034089366541188043,0.0011202161104161027,-0.0011093401781893271,-0.007449041421757758,-0.0032448977604082395,-3.531426237562952e-05,-0.001258105950089501,0.00011352092775542152,-0.0005954506867263265,-0.005395663302791547,-0.008047930502899462,0.0012843497118283703,-0.005215058815371946,-0.005018381826027936,-0.004068660060541422,-0.0039702124308341295,-0.00502801049997516,-0.007105438827340258,-0.003996502360291301,-0.004019805029658654,-0.0028883698356805157,-0.0022762087807911887,-0.001811755743124881,-0.00401667268216869,-0.005535675581080715,-0.0063426922960935625,0.00041216933291362656,-0.002600288274155355,-0.003595716910480614,-0.007367034171656184,-0.00696376576091798,-0.0012509241650419875,-0.002245916841010811,-0.00607643311281297,-0.004601445252542946,-0.006813656860955831,-0.003278216944989335,-0.004601013513742955,-0.005142951339245046,-0.004546720892179937,-0.004405929049429498,-0.0016911310133672379
+52.339522,4.875401,-0.004051833513337763,-0.006576878505631224,-0.005270012778529941,-0.00387912318331,-0.005161134550099239,-0.0014225350383452085,-0.00552499671514876,-0.005805558360369318,-0.0039317318166610955,-0.006628340212074469,-0.00466296147923953,-0.0013659911201517028,-0.002110738041471465,-0.006536174886489559,-0.002676400395509035,-0.0023177967562987237,-0.0032922388292433123,-0.0015634149892639335,0.00019106334588119548,0.0008202161104161028,-0.0010093401781893273,-0.009149041421757757,-0.004844897760408239,-0.0005353142623756294,-0.0038581059500895007,-0.0020864790722445784,-0.0002954506867263266,-0.008195663302791548,-0.008747930502899461,-0.00561565028817163,-0.004715058815371946,-0.008618381826027937,-0.005068660060541422,-0.00507021243083413,-0.00722801049997516,-0.006905438827340259,-0.007996502360291301,-0.008019805029658655,-0.005088369835680516,-0.007376208780791189,-0.0046117557431248814,-0.005216672682168691,-0.010235675581080716,-0.010842692296093562,-0.004687830667086374,-0.004300288274155355,-0.0043957169104806145,-0.008667034171656185,-0.00516376576091798,-0.005250924165041988,-0.004645916841010811,-0.007976433112812969,-0.009301445252542945,-0.00971365686095583,-0.0055782169449893355,-0.009901013513742955,-0.009942951339245045,-0.008646720892179938,-0.009105929049429497,-0.007591131013367239
+52.339436,4.874059,-0.0028518335133377636,-0.0028768785056312233,-0.004170012778529941,-0.0033791231833100004,-0.003761134550099239,-0.0028225350383452087,-0.00742499671514876,-0.0026055583603693186,-0.005231731816661096,-0.00422834021207447,-0.002262961479239531,-0.0018659911201517028,-0.001410738041471465,-0.00533617488648956,-0.002376400395509035,-0.0019177967562987233,-0.004492238829243312,-0.003963414989263933,-0.0006089366541188046,-0.0006797838895838971,-0.000909340178189327,-0.0062490414217577575,-0.004244897760408239,-0.0002353142623756295,-0.004258105950089501,-0.0015864790722445784,-0.0027954506867263265,-0.005595663302791548,-0.00964793050289946,-0.0030156502881716297,-0.004615058815371946,-0.0069183818260279365,-0.004568660060541422,-0.005170212430834129,-0.012728010499975162,-0.007205438827340259,-0.0044965023602913014,-0.005119805029658654,-0.004088369835680516,-0.002176208780791189,-0.0019117557431248809,-0.0019166726821686904,-0.0056356755810807145,-0.009242692296093563,-0.0015878306670863735,-0.003300288274155355,-0.0036957169104806144,-0.008467034171656184,-0.0048637657609179805,-0.003550924165041987,-0.002545916841010812,-0.00637643311281297,-0.0039014452525429457,-0.007613656860955831,-0.004978216944989336,-0.009501013513742954,-0.008442951339245044,-0.008846720892179936,-0.008005929049429499,-0.006691131013367239
+52.339412,4.873807,-0.0022518335133377637,-0.0031768785056312233,-0.003070012778529941,-0.0040791231833100005,-0.004161134550099239,-0.004522535038345208,-0.0052249967151487605,-0.0028055583603693183,-0.0009317318166610963,-0.007328340212074469,-0.0018629614792395307,-0.001465991120151703,-0.002210738041471465,-0.0049361748864895595,-0.003176400395509035,-0.0012177967562987235,-0.005292238829243312,-0.0025634149892639338,-0.0032089366541188046,-0.002579783889583897,-0.0003093401781893272,-0.006149041421757757,-0.00464489776040824,0.00016468573762437057,-0.004158105950089501,-0.0021864790722445787,-0.002595450686726327,-0.004695663302791547,-0.0059479305028994605,-0.0023156502881716296,-0.004015058815371946,-0.009018381826027936,-0.004368660060541422,-0.00467021243083413,-0.00532801049997516,-0.006005438827340259,-0.005096502360291301,-0.0060198050296586545,-0.004388369835680516,-0.004976208780791189,-0.002511755743124881,-0.0028166726821686906,-0.004935675581080715,-0.005842692296093562,-0.0002878306670863733,-0.003000288274155355,-0.002895716910480614,-0.005667034171656184,-0.00586376576091798,-0.004050924165041988,-0.004345916841010811,-0.0034764331128129696,-0.006901445252542946,-0.016513656860955832,-0.004478216944989335,-0.008901013513742954,-0.006542951339245045,-0.0069467208921799375,-0.005505929049429498,-0.0044911310133672385
+52.338526,4.879842,-0.011251833513337764,-0.008676878505631223,-0.010470012778529941,-0.0076791231833099995,-0.012661134550099238,-0.012022535038345208,-0.01172499671514876,-0.011405558360369319,-0.009631731816661097,-0.01562834021207447,-0.012162961479239532,-0.011465991120151703,-0.011710738041471465,-0.01303617488648956,-0.012876400395509035,-0.011417796756298724,-0.012492238829243312,-0.016363414989263934,-0.012608936654118805,-0.011079783889583897,-0.011809340178189328,-0.018449041421757757,-0.013844897760408238,-0.011035314262375629,-0.0157581059500895,-0.013086479072244578,-0.013895450686726327,-0.01799566330279155,-0.012947930502899462,-0.01271565028817163,-0.015815058815371947,-0.014818381826027936,-0.01906866006054142,-0.01547021243083413,-0.02082801049997516,-0.02170543882734026,-0.017196502360291303,-0.016119805029658655,-0.017188369835680516,-0.01817620878079119,-0.01701175574312488,-0.01741667268216869,-0.017935675581080716,-0.02324269229609356,-0.015087830667086374,-0.017300288274155355,-0.016995716910480616,-0.025667034171656184,-0.021363765760917978,-0.018450924165041988,-0.01734591684101081,-0.01997643311281297,-0.018201445252542945,-0.02011365686095583,-0.019978216944989337,-0.021001013513742953,-0.020342951339245043,-0.022446720892179937,-0.0232059290494295,-0.019591131013367236
+52.33851,4.879419,-0.018051833513337764,-0.018476878505631223,-0.015570012778529941,-0.01777912318331,-0.01996113455009924,-0.021122535038345207,-0.01802499671514876,-0.021405558360369316,-0.016731731816661096,-0.02232834021207447,-0.02236296147923953,-0.0192659911201517,-0.021510738041471463,-0.02393617488648956,-0.020476400395509034,-0.020817796756298725,-0.02289223882924331,-0.025063414989263934,-0.019408936654118806,-0.021179783889583897,-0.02330934017818933,-0.029949041421757756,-0.02374489776040824,-0.02473531426237563,-0.027658105950089502,-0.02638647907224458,-0.026195450686726327,-0.02959566330279155,-0.027747930502899462,-0.027315650288171633,-0.025515058815371947,-0.031618381826027935,-0.029068660060541422,-0.02697021243083413,-0.02822801049997516,-0.03080543882734026,-0.0306965023602913,-0.029719805029658656,-0.030088369835680515,-0.02977620878079119,-0.02971175574312488,-0.03051667268216869,-0.032935675581080716,-0.033042692296093565,-0.025787830667086373,-0.030100288274155357,-0.031295716910480616,-0.034267034171656184,-0.036063765760917986,-0.035350924165041986,-0.03384591684101081,-0.03287643311281297,-0.036301445252542947,-0.036013656860955826,-0.036578216944989334,-0.03640101351374296,-0.03614295133924505,-0.03634672089217993,-0.037005929049429495,-0.033391131013367235
+52.338513,4.879251,-0.013251833513337764,-0.018476878505631223,-0.013870012778529941,-0.01087912318331,-0.014161134550099238,-0.013722535038345208,-0.01422499671514876,-0.01480555836036932,-0.014331731816661095,-0.02192834021207447,-0.01696296147923953,-0.012465991120151704,-0.017410738041471464,-0.01813617488648956,-0.017276400395509036,-0.018417796756298725,-0.017492238829243313,-0.019263414989263934,-0.013708936654118806,-0.015479783889583898,-0.015009340178189327,-0.022849041421757754,-0.01644489776040824,-0.01933531426237563,-0.0217581059500895,-0.02098647907224458,-0.019395450686726327,-0.02319566330279155,-0.02334793050289946,-0.01891565028817163,-0.021915058815371948,-0.022818381826027936,-0.02066866006054142,-0.01937021243083413,-0.02362801049997516,-0.02540543882734026,-0.0236965023602913,-0.023619805029658655,-0.023788369835680515,-0.02417620878079119,-0.02191175574312488,-0.02521667268216869,-0.023335675581080715,-0.02044269229609356,-0.019087830667086372,-0.023800288274155357,-0.020495716910480615,-0.029067034171656184,-0.02866376576091798,-0.03005092416504199,-0.02774591684101081,-0.03007643311281297,-0.029001445252542946,-0.02781365686095583,-0.028478216944989337,-0.027701013513742954,-0.029542951339245043,-0.029946720892179937,-0.0307059290494295,-0.028391131013367238
+52.338609,4.878329,-0.003351833513337763,-0.004476878505631224,-0.004570012778529941,-0.0027791231833100005,-0.006161134550099239,-0.0031225350383452086,-0.00792499671514876,-0.004105558360369318,-0.003631731816661096,-0.00802834021207447,-0.00506296147923953,-0.002165991120151703,-0.003810738041471465,-0.00903617488648956,-0.002676400395509035,-0.004817796756298723,-0.004792238829243313,-0.006163414989263934,-0.00010893665411880449,-0.0009797838895838971,-0.001209340178189327,-0.011949041421757758,-0.005044897760408239,-0.0015353142623756293,-0.006858105950089501,-0.003886479072244579,-0.0028954506867263268,-0.008295663302791547,-0.01174793050289946,-0.004115650288171629,-0.0060150588153719455,-0.008918381826027937,-0.005268660060541421,-0.006170212430834129,-0.01002801049997516,-0.009305438827340258,-0.0080965023602913,-0.008819805029658656,-0.008088369835680516,-0.008976208780791188,-0.006211755743124881,-0.008916672682168692,-0.008735675581080715,-0.0027426922960935626,-0.007887830667086374,-0.007400288274155355,-0.009695716910480615,-0.014967034171656183,-0.01236376576091798,-0.009950924165041987,-0.010045916841010812,-0.00927643311281297,-0.010601445252542946,-0.013213656860955832,-0.012978216944989334,-0.011701013513742954,-0.015842951339245046,-0.013946720892179937,-0.0196059290494295,-0.008391131013367237
+52.338544,4.877894,-0.002351833513337764,-0.0030768785056312234,-0.0024700127785299408,-0.0021791231833100002,-0.003061134550099239,-0.0030225350383452083,-0.00472499671514876,-0.0028055583603693183,-0.001031731816661096,-0.00362834021207447,-0.002862961479239531,-0.001765991120151703,-0.003310738041471465,-0.00603617488648956,-0.0025764003955090348,-0.005617796756298724,-0.0049922388292433124,-0.005063414989263933,-0.0031089366541188043,-0.002379783889583897,-0.0021093401781893274,-0.0072490414217577575,-0.0026448977604082396,-0.0020353142623756293,-0.004858105950089501,-0.0020864790722445784,-0.0024954506867263266,-0.006595663302791548,-0.005547930502899461,-0.0029156502881716295,-0.0037150588153719464,-0.005618381826027936,-0.004768660060541422,-0.004570212430834129,-0.00522801049997516,-0.002005438827340259,-0.005596502360291301,-0.005219805029658654,-0.006388369835680516,-0.004476208780791189,-0.004711755743124882,-0.006216672682168691,-0.008035675581080716,-0.007142692296093562,-0.0025878306670863733,-0.0068002882741553545,-0.006495716910480614,-0.0072670341716561835,-0.008763765760917981,-0.006750924165041987,-0.0057459168410108116,-0.005676433112812969,-0.006301445252542946,-0.00851365686095583,-0.006778216944989335,-0.007801013513742954,-0.007942951339245045,-0.007646720892179937,-0.006705929049429498,-0.005891131013367239
+52.338582,4.877608,-0.0019518335133377636,-0.0031768785056312233,-0.003070012778529941,-0.00297912318331,-0.003161134550099239,-0.0032225350383452084,-0.00452499671514876,-0.003305558360369318,0.0011682681833389038,-0.0034283402120744693,-0.002962961479239531,-0.000765991120151703,-0.002110738041471465,-0.00573617488648956,-0.002276400395509035,-0.004317796756298723,-0.004192238829243312,-0.005363414989263933,-0.0024089366541188042,-0.002579783889583897,-0.0007093401781893269,-0.006149041421757757,-0.0019448977604082395,-0.0011353142623756296,-0.003458105950089501,-0.0007864790722445785,-0.00019545068672632664,-0.003395663302791548,-0.0037479305028994612,-0.0039156502881716295,-0.003915058815371946,-0.005418381826027937,-0.0027686600605414213,-0.0028702124308341292,-0.01092801049997516,-0.005305438827340259,-0.003196502360291301,-0.0047198050296586545,-0.004588369835680515,-0.005376208780791189,-0.002211755743124881,-0.008116672682168691,-0.0060356755810807156,-0.0073426922960935625,-0.0004878306670863734,-0.002400288274155355,-0.004195716910480614,-0.005767034171656184,-0.00606376576091798,-0.005250924165041988,-0.003245916841010812,-0.006176433112812969,-0.006201445252542946,-0.005813656860955831,-0.005378216944989336,-0.004501013513742954,-0.008642951339245045,-0.008446720892179937,-0.006005929049429498,-0.010591131013367238
+52.338547,4.877196,-0.0030518335133377632,-0.0036768785056312233,-0.0053700127785299406,-0.00317912318331,-0.004661134550099239,-0.0036225350383452086,-0.0026249967151487598,-0.0035055583603693184,-0.00043173181666109626,-0.007028340212074469,-0.0025629614792395308,0.000434008879848297,-0.007010738041471465,-0.006436174886489559,-0.003576400395509035,-0.005417796756298723,-0.004592238829243312,-0.005663414989263934,-0.0031089366541188043,-0.002479783889583897,-0.0022093401781893268,-0.006949041421757758,-0.0012448977604082394,-0.0015353142623756293,-0.004958105950089501,-0.0011864790722445786,-0.0022954506867263265,-0.005595663302791548,-0.005847930502899461,-0.00401565028817163,-0.004915058815371946,-0.0069183818260279365,-0.006168660060541422,-0.004770212430834129,-0.006828010499975161,-0.006905438827340259,-0.005696502360291301,-0.007819805029658655,-0.006688369835680516,-0.007576208780791188,-0.0043117557431248815,-0.0054166726821686904,-0.010535675581080716,-0.007542692296093562,-0.0019878306670863734,-0.007200288274155355,-0.008095716910480614,-0.006767034171656184,-0.00826376576091798,-0.008050924165041986,-0.007445916841010812,-0.00727643311281297,-0.0055014452525429455,-0.007613656860955831,-0.008178216944989335,-0.007901013513742955,-0.008242951339245045,-0.009746720892179938,-0.006105929049429498,-0.005291131013367238
+52.338504,4.876263,0.003948166486662236,-0.011776878505631224,2.998722147005907e-05,0.00352087681669,0.0020388654499007616,0.0016774649616547914,0.00027500328485124004,0.0007944416396306818,0.002468268183338904,-0.0016283402120744696,0.0009370385207604693,-0.0005659911201517031,8.926195852853482e-05,-0.0033361748864895596,-0.0002764003955090352,-0.0031177967562987232,-0.0029922388292433124,-0.0018634149892639334,-0.0009089366541188045,0.00012021611041610278,0.002290659821810673,-0.0019490414217577575,0.0008551022395917604,0.0021646857376243704,-0.000258105950089501,0.003913520927755421,0.0036045493132736734,0.0006043366972084521,0.0019520694971005385,0.00348434971182837,0.0023849411846280535,0.000881618173972064,0.004031339939458579,0.0018297875691658705,0.0012719895000248395,-0.0017054388273402587,0.0007034976397086991,0.0024801949703413453,0.0005116301643194843,-0.002676208780791189,0.002588244256875119,0.0007833273178313093,-0.001835675581080715,-0.0023426922960935624,0.0009121693329136266,-0.002100288274155355,-0.0004957169104806144,0.002132965828343816,-0.0026637657609179803,0.0007490758349580125,0.0016540831589891886,0.0024235668871870307,0.0034985547474570547,0.00048634313904416895,0.0017217830550106646,0.003198986486257045,0.002657048660754955,0.0022532791078200627,0.0021940709505705014,0.003908868986632762
+52.338503,4.876266,0.006548166486662237,-0.006376878505631224,0.006929987221470059,0.00282087681669,0.0013388654499007615,0.0031774649616547915,-0.00042499671514876,0.0027944416396306817,0.0026682681833389036,-0.0022283402120744696,0.003837038520760469,0.0058340088798482966,0.004789261958528535,0.0017638251135104403,0.006223599604490965,0.0006822032437012764,0.005407761170756687,0.0037365850107360663,0.005091063345881195,0.005620216110416103,0.006490659821810673,-0.0010490414217577575,0.0031551022395917604,0.0037646857376243707,0.0035418940499104996,0.0036135209277554214,0.005304549313273674,0.0003043366972084521,-4.7930502899461126e-05,0.0018843497118283703,0.0036849411846280535,-0.002318381826027936,0.0028313399394585786,0.0012297875691658704,-0.0007280104999751604,0.0003945611726597414,-0.001196502360291301,0.00018019497034134563,-0.0021883698356805156,0.0023237912192088117,-0.00041175574312488116,-0.0027166726821686903,-0.001135675581080715,-0.006142692296093562,0.007112169332913626,0.002599711725844645,-0.0006957169104806144,0.002832965828343816,0.00443623423908202,0.0036490758349580123,0.0014540831589891885,0.0033235668871870305,0.003898554747457054,0.003286343139044169,0.0004217830550106648,0.0027989864862570453,0.0009570486607549547,0.001653279107820063,0.0016940709505705014,0.002308868986632762
+52.33843,4.873585,-0.0006518335133377637,-0.0020768785056312234,-0.0029700127785299408,-0.00257912318331,-0.003061134550099239,-0.0029225350383452085,-0.00452499671514876,-0.0028055583603693183,-0.00013173181666109634,-0.00432834021207447,-0.004262961479239531,-0.0013659911201517028,-0.002710738041471465,-0.005236174886489559,-0.003976400395509035,-0.004417796756298723,-0.004192238829243312,-0.0016634149892639336,-0.0036089366541188048,-0.002479783889583897,0.0005906598218106728,-0.005849041421757757,-0.00034489776040823967,-0.0006353142623756295,-0.003258105950089501,-0.0005864790722445784,-0.0028954506867263268,-0.005195663302791548,-0.0069479305028994605,-0.0025156502881716293,-0.0034150588153719465,-0.005018381826027936,-0.003968660060541421,-0.0038702124308341293,-0.0031280104999751603,-0.005305438827340259,-0.005396502360291301,-0.0047198050296586545,-0.0036883698356805156,-0.004876208780791189,-0.003011755743124881,-0.0030166726821686906,-0.007935675581080714,-0.007842692296093563,-0.003487830667086374,-0.0008002882741553551,-0.002595716910480614,-0.008067034171656185,-0.0021637657609179803,0.0016490758349580125,0.0015540831589891885,0.0014235668871870307,0.003198554747457054,0.002486343139044169,0.002221783055010665,-0.0008010135137429546,0.0013570486607549547,0.0010532791078200628,-0.0013059290494294986,0.002008868986632762
+52.338421,4.872182,-0.005251833513337764,0.0017231214943687766,0.002629987221470059,-0.0001791231833100002,0.0004388654499007613,-0.0035225350383452083,-0.00392499671514876,-0.0025055583603693183,0.0042682681833389035,-0.006028340212074469,-0.003262961479239531,-0.005565991120151703,-0.002910738041471465,-0.004536174886489559,-0.002376400395509035,-0.0007177967562987234,-0.010092238829243311,-0.004263414989263934,-0.0040089366541188045,-0.006179783889583897,-0.0013093401781893272,-0.009349041421757758,-0.0011448977604082396,-0.0023353142623756293,-0.0044581059500895005,0.00021352092775542134,-0.0017954506867263265,-0.002495663302791548,-0.0036479305028994614,-0.003815650288171629,-0.0019150588153719463,-0.005718381826027937,-0.0018686600605414211,-0.0025702124308341293,-0.0030280104999751605,-0.004905438827340259,-0.0027965023602913013,-0.0037198050296586545,-0.006888369835680515,-0.004776208780791189,-0.00851175574312488,-0.00531667268216869,-0.006135675581080715,-0.005942692296093562,-0.003187830667086374,-0.004300288274155355,-0.007795716910480614,-0.004467034171656184,-0.01286376576091798,-0.006850924165041987,-0.005445916841010812,-0.005876433112812969,-0.004001445252542945,-0.00851365686095583,-0.006778216944989335,-0.007901013513742955,-0.005242951339245045,-0.0069467208921799375,-0.004605929049429498,-0.0027911310133672384
+52.424639,4.896093,-0.0005518335133377638,-0.0022768785056312235,-0.002070012778529941,-0.0009791231833100001,-0.0022611345500992384,-0.0024225350383452085,-0.00152499671514876,-0.0013055583603693182,0.0016682681833389038,-0.0025283402120744695,-0.003162961479239531,-0.001565991120151703,-0.001410738041471465,-0.00443617488648956,-0.003576400395509035,-0.0001177967562987235,-0.004892238829243312,0.0005365850107360666,-0.0018089366541188044,-0.004879783889583897,-0.0015093401781893273,-0.0020490414217577573,0.0006551022395917606,0.0005646857376243705,-0.0038581059500895007,0.0020135209277554215,-0.0018954506867263268,-0.002095663302791548,-0.003347930502899461,-0.0003156502881716298,-0.0014150588153719462,-0.002418381826027936,-0.0024686600605414214,-0.0032702124308341294,-0.0023280104999751604,-0.0035054388273402584,-0.0022965023602913013,-0.004819805029658654,-0.004388369835680516,-0.008076208780791188,-0.004011755743124882,-0.00431667268216869,-0.004535675581080715,-0.0029426922960935627,-0.0029878306670863735,-0.0032002882741553555,-0.004095716910480615,-0.003867034171656184,-0.0018637657609179802,-0.00045092416504198735,-0.0023459168410108113,0.0009235668871870307,-0.0014014452525429458,-0.004413656860955831,-0.004878216944989335,-0.002401013513742955,-0.002942951339245045,-0.002846720892179937,-0.0015059290494294985,-0.0011911310133672379
+52.424687,4.895591,0.0008481664866622363,-0.0005768785056312236,-0.001370012778529941,-0.0003791231833100001,3.88654499007613e-05,-0.0009225350383452085,-0.00182499671514876,-5.558360369318171e-06,0.001368268183338904,-0.0022283402120744696,-0.0020629614792395307,0.00023400887984829693,-0.0007107380414714652,-0.0034361748864895594,-0.002876400395509035,-0.0019177967562987233,-0.0018922388292433126,-0.0021634149892639336,-0.0003089366541188046,-0.002479783889583897,0.000990659821810673,-0.003149041421757757,0.0002551022395917606,-0.00013531426237562945,-0.005658105950089501,0.0024135209277554213,-0.0010954506867263264,-0.002895663302791548,-0.0019479305028994613,8.434971182837018e-05,-0.002115058815371946,-0.0009183818260279362,-0.0022686600605414213,-0.0015702124308341295,-0.0005280104999751604,-0.0031054388273402587,-0.001396502360291301,-0.0025198050296586544,-0.0036883698356805156,-0.007276208780791188,-0.001811755743124881,-0.0011166726821686904,-0.003235675581080715,-0.0015426922960935627,-0.0006878306670863735,-0.006600288274155355,-0.002395716910480614,-0.0017670341716561839,-0.00506376576091798,0.0005490758349580126,-0.0006459168410108114,-0.00027643311281296944,-0.002301445252542946,-0.0036136568609558307,-0.003978216944989336,-0.003201013513742955,-0.002842951339245045,-0.002746720892179937,-0.0023059290494294987,-0.001091131013367238
+52.424658,4.895789,0.0024481664866622364,0.0003231214943687764,-0.001070012778529941,0.00022087681668999976,0.0006388654499007614,-0.0023225350383452087,-0.00022499671514876007,0.0009944416396306817,0.004068268183338904,-0.0028283402120744695,-0.002462961479239531,-0.000865991120151703,-0.0006107380414714651,-0.0031361748864895595,-0.002876400395509035,-0.00021779675629872354,-0.0030922388292433127,-0.0008634149892639334,-0.00010893665411880449,-0.0006797838895838971,0.0011906598218106728,-0.0015490414217577575,0.0029551022395917603,0.0002646857376243705,-0.0035581059500895008,0.0009135209277554214,-0.0003954506867263266,-0.0009956633027915478,-0.0019479305028994613,-1.5650288171629653e-05,-0.0013150588153719464,-0.001718381826027936,-0.0029686600605414214,-0.0006702124308341295,-0.0006280104999751605,-0.0008054388273402586,-0.001196502360291301,-0.0008198050296586544,-0.0033883698356805157,-0.005776208780791188,-0.000611755743124881,-0.0005166726821686906,-0.003435675581080715,-0.0015426922960935627,0.0006121693329136267,-0.001000288274155355,-0.0021957169104806144,-0.002167034171656184,-0.0045637657609179805,0.0013490758349580126,-4.591684101081135e-05,0.0006235668871870306,-0.00010144525254294568,-0.0045136568609558305,-0.002878216944989335,-0.0017010135137429546,5.7048660754954745e-05,-0.0020467208921799373,-0.0009059290494294986,-0.000491131013367238
+52.424587,4.896287,0.0010481664866622362,-0.0010768785056312236,-0.001770012778529941,0.00202087681669,-0.0006611345500992386,-0.0013225350383452084,-0.00022499671514876007,-0.00020555836036931826,0.0028682681833389037,-0.00392834021207447,-0.0008629614792395309,0.003234008879848297,-0.0005107380414714651,-0.0020361748864895597,-0.0002764003955090352,-0.0001177967562987235,-0.003192238829243312,-0.0004634149892639335,-0.0004089366541188045,-0.0006797838895838971,0.001390659821810673,-0.0015490414217577575,0.0009551022395917605,0.0012646857376243706,-0.0037581059500895013,0.0022135209277554216,0.00020454931327367338,-0.001895663302791548,-0.00034793050289946115,0.0007843497118283703,-0.0006150588153719463,-0.0010183818260279362,-0.004068660060541422,-0.0011702124308341293,0.0026719895000248397,-0.0012054388273402587,-0.000196502360291301,-0.0007198050296586544,-0.0021883698356805156,-0.006176208780791189,-0.000511755743124881,-0.0009166726821686906,-0.002135675581080715,-0.0025426922960935625,-0.0007878306670863733,-0.0009002882741553551,-0.00039571691048061435,-0.0017670341716561839,-0.012063765760917979,-0.0007509241650419875,-0.00024591684101081144,-0.0011764331128129692,0.0006985547474570543,-0.002013656860955831,-0.0021782169449893352,-0.0026010135137429545,-0.002142951339245045,-0.002446720892179937,-0.0013059290494294986,-0.0014911310133672382
+52.424742,4.894916,0.003648166486662236,-0.00027687850563122356,0.0011299872214700591,0.0022208768166899996,0.0015388654499007613,0.00027746496165479155,-0.00012499671514876003,0.0014944416396306818,0.0031682681833389036,-0.0011283402120744696,0.00043703852076046914,0.002034008879848297,0.0005892619585285349,-0.0007361748864895595,-7.640039550903516e-05,0.002882203243701276,-0.0006922388292433124,-0.00016341498926393348,0.0013910633458811953,0.001020216110416103,0.003290659821810673,0.0005509585782422425,0.0031551022395917604,0.0031646857376243704,-0.001658105950089501,0.003913520927755421,0.0015045493132736735,4.336697208452112e-06,-0.0005479305028994612,0.0027843497118283703,0.0011849411846280536,0.000881618173972064,0.0013313399394585786,-0.0001702124308341295,0.0008719895000248396,9.456117265974127e-05,0.0009034976397086991,-0.00021980502965865438,-0.0005883698356805155,-0.0034762087807911884,0.0006882442568751189,0.00018332731783130945,-0.001035675581080715,-0.0012426922960935625,0.0019121693329136266,0.0001997117258446448,4.283089519385657e-06,-0.000467034171656184,-0.00236376576091798,0.004249075834958012,0.0019540831589891887,0.0016235668871870306,0.0016985547474570543,0.001786343139044169,-0.0004782169449893352,0.0005989864862570454,-0.00014295133924504527,0.0005532791078200628,0.0003940709505705015,0.000808868986632762
+52.424684,4.895283,0.0024481664866622364,-0.0010768785056312236,0.0008299872214700591,0.00022087681668999976,0.00033886544990076133,-0.0016225350383452086,-0.00112499671514876,0.0004944416396306817,0.002968268183338904,-0.0011283402120744696,-0.0007629614792395308,0.001134008879848297,-0.00011073804147146515,-0.0005361748864895594,-0.0011764003955090352,0.002282203243701276,-0.0011922388292433125,0.0001365850107360665,0.0004910633458811955,-0.0003797838895838972,0.003690659821810673,0.0012509585782422424,0.0027551022395917607,0.0018646857376243705,-0.0028581059500895007,0.0030135209277554215,-0.0008954506867263266,-0.0010956633027915477,-0.0014479305028994613,0.0008843497118283702,0.0003849411846280536,-0.0010183818260279362,0.0007313399394585785,0.0017297875691658705,0.0005719895000248396,-0.0005054388273402586,-0.0022965023602913013,-0.003519805029658654,-0.0033883698356805157,-0.006376208780791188,-1.1755743124881087e-05,-0.00011667268216869052,-0.003935675581080715,-0.003842692296093563,0.0011121693329136267,-0.002200288274155355,-0.0004957169104806144,-0.003467034171656184,-0.0034637657609179803,0.00014907583495801248,-0.00044591684101081153,-0.0013764331128129693,-0.0015014452525429457,-0.0031136568609558307,-0.003778216944989335,-0.0035010135137429547,-0.003642951339245045,-0.003446720892179937,-0.0032059290494294984,-0.0017911310133672381
+52.424706,4.895103,0.0016481664866622363,-0.0007768785056312236,-0.00037001277852994095,-0.00247912318331,0.0001388654499007613,-0.0016225350383452086,-0.0028249967151487603,-0.00040555836036931824,0.00026826818333890385,-0.0028283402120744695,-0.0017629614792395308,-0.0031659911201517028,-0.0010107380414714651,-0.0021361748864895595,-0.0030764003955090348,0.00038220324370127646,-0.0056922388292433125,-0.0038634149892639337,-0.0035089366541188045,-0.003479783889583897,-0.004709340178189327,-0.005049041421757758,-0.00304489776040824,-0.002635314262375629,-0.008858105950089502,-0.0028864790722445788,-0.004995450686726326,-0.005895663302791548,-0.006547930502899461,-0.004115650288171629,-0.006115058815371946,-0.007318381826027936,-0.0046686600605414215,-0.004170212430834129,-0.004528010499975161,-0.0038054388273402588,-0.006196502360291302,-0.006519805029658654,-0.005588369835680515,-0.009676208780791189,-0.005511755743124881,-0.0064166726821686905,-0.007935675581080714,-0.009742692296093562,-0.003787830667086374,-0.006700288274155355,-0.007995716910480614,-0.008167034171656184,-0.01056376576091798,-0.004850924165041988,-0.004345916841010811,-0.005676433112812969,-0.006401445252542945,-0.007713656860955831,-0.008178216944989335,-0.007801013513742954,-0.006742951339245046,-0.0072467208921799375,-0.0049059290494294985,-0.006691131013367239
+52.424726,4.89498,0.0019481664866622362,-0.0011768785056312236,0.0006299872214700591,0.0012208768166899998,0.0005388654499007613,-0.00032253503834520845,-0.00062499671514876,0.0009944416396306817,0.0028682681833389037,-0.0019283402120744697,-0.0008629614792395309,0.001134008879848297,-0.00041073804147146516,-0.0020361748864895597,-0.0011764003955090352,0.0011822032437012763,-0.0009922388292433124,0.0004365850107360665,0.0007910633458811955,-0.0004797838895838972,0.001890659821810673,-0.0013490414217577574,0.0013551022395917604,0.0015646857376243706,-0.002658105950089501,0.0031135209277554214,0.00020454931327367338,-0.0012956633027915478,-0.0012479305028994612,0.0019843497118283704,0.0005849411846280537,-0.0007183818260279362,0.0009313399394585786,0.0008297875691658705,0.0007719895000248395,-0.0005054388273402586,0.001203497639708699,-0.0009198050296586543,-0.0010883698356805155,-0.004076208780791188,0.000988244256875119,0.0005833273178313095,-0.001935675581080715,-0.0023426922960935624,0.0014121693329136266,-0.0009002882741553551,-0.0006957169104806144,-0.002167034171656184,-0.0031637657609179803,0.0018490758349580124,0.0011540831589891885,0.0008235668871870306,0.0003985547474570543,-0.0015136568609558309,-0.0013782169449893353,9.898648625704542e-05,-0.0006429513392450453,-0.0002467208921799372,-0.0001059290494294985,0.00030886898663276194
+52.424747,4.894751,0.0006481664866622362,-0.0030768785056312234,-0.0012700127785299409,0.00022087681668999976,-0.0009611345500992387,-0.0013225350383452084,-0.00242499671514876,0.0002944416396306818,0.0014682681833389037,-0.00262834021207447,-0.0020629614792395307,0.000634008879848297,-0.001910738041471465,-0.0024361748864895594,-0.001876400395509035,0.0008822032437012764,-0.0016922388292433125,-0.00026341498926393353,0.0014910633458811956,-0.0003797838895838972,0.0008906598218106728,-0.004049041421757758,0.0004551022395917605,-0.0005353142623756294,-0.0044581059500895005,0.0014135209277554215,-0.0012954506867263265,-0.002695663302791548,-0.002247930502899461,8.434971182837018e-05,-0.0015150588153719463,-0.0022183818260279363,-0.0014686600605414214,-0.0009702124308341295,-0.0005280104999751604,-0.0022054388273402585,-0.001196502360291301,-0.002919805029658654,-0.0022883698356805154,-0.006276208780791189,-0.001611755743124881,-0.0006166726821686906,-0.002535675581080715,-0.004642692296093562,0.00041216933291362656,-0.001400288274155355,-0.0016957169104806142,-0.004467034171656184,-0.00556376576091798,-0.0009509241650419876,-0.0020459168410108114,-0.0017764331128129695,-0.0014014452525429458,-0.0031136568609558307,-0.003978216944989336,-0.0017010135137429546,-0.002442951339245045,-0.0020467208921799373,-0.0025059290494294987,-0.0009911310133672382
+52.424651,4.895518,0.0025481664866622363,-0.00017687850563122357,0.0011299872214700591,0.0005208768166899998,0.0005388654499007613,-0.0013225350383452084,-0.00082499671514876,0.0003944416396306818,0.0033682681833389037,-0.0014283402120744695,0.00023703852076046921,0.002634008879848297,0.00028926195852853483,-3.617488648955942e-05,-0.0006764003955090352,0.0024822032437012767,0.0004077611707566876,0.0015365850107360664,0.0027910633458811955,0.002020216110416103,0.003290659821810673,-0.0004490414217577575,0.0033551022395917605,0.0021646857376243704,-0.0018581059500895009,0.003213520927755421,0.0008045493132736734,-0.0007956633027915479,-0.001547930502899461,0.0010843497118283702,0.0001849411846280537,-0.0013183818260279361,-6.866006054142139e-05,0.0006297875691658704,7.198950002483952e-05,-0.0008054388273402586,-9.6502360291301e-05,-0.0012198050296586545,-0.0025883698356805153,-0.004976208780791189,8.824425687511896e-05,0.00018332731783130945,-0.002235675581080715,-0.0022426922960935626,0.0018121693329136265,0.0001997117258446448,-0.0004957169104806144,-0.0017670341716561839,-0.0031637657609179803,0.0015490758349580125,0.0009540831589891886,0.0007235668871870306,0.00019855474745705435,-0.001613656860955831,-0.0018782169449893353,-0.0015010135137429545,-0.0018429513392450453,-0.0017467208921799371,-0.0012059290494294986,-0.00039113101336723816
+52.424664,4.895391,0.004748166486662236,0.0008231214943687765,0.0023299872214700592,0.00152087681669,0.0004388654499007613,-0.0005225350383452085,0.00057500328485124,0.0016944416396306818,0.004868268183338903,-0.0003283402120744695,-6.29614792395308e-05,0.002734008879848297,0.001389261958528535,0.0013638251135104406,0.0001235996044909648,0.002882203243701276,-0.00029223882924331237,0.0022365850107360667,0.0029910633458811956,0.00012021611041610278,0.001890659821810673,0.0022509585782422422,0.004255102239591761,0.00526468573762437,-0.0004581059500895009,0.0043135209277554215,0.0014045493132736734,4.336697208452112e-06,0.0015520694971005388,0.0022843497118283703,0.0016849411846280536,-1.8381826027936195e-05,0.0020313399394585787,0.0021297875691658704,0.0013719895000248396,0.00029456117265974136,0.000403497639708699,8.019497034134559e-05,-0.0013883698356805156,-0.002176208780791189,0.0006882442568751189,-0.0007166726821686905,-0.0017356755810807151,0.00035730770390643733,0.002412169332913627,0.001499711725844645,-0.00019571691048061434,0.000732965828343816,-0.00286376576091798,0.0017490758349580126,0.0032540831589891886,0.0027235668871870306,0.0016985547474570543,-0.001113656860955831,-0.0016782169449893352,-0.0010010135137429545,-0.002142951339245045,-0.0013467208921799372,-0.0010059290494294985,0.00030886898663276194
+52.424677,4.895335,0.0019481664866622362,-0.0028768785056312233,2.998722147005907e-05,-0.00107912318331,-0.0028611345500992383,-0.0035225350383452083,-0.00342499671514876,-0.0022055583603693184,0.0006682681833389038,-0.004128340212074469,-0.003162961479239531,-0.0006659911201517029,-0.002410738041471465,-0.0032361748864895594,-0.003376400395509035,-0.0005177967562987236,-0.0026922388292433125,-0.0014634149892639335,-0.0012089366541188046,-0.0021797838895838972,-9.340178189327052e-06,-0.003149041421757757,-0.0004448977604082395,-0.0008353142623756296,-0.004558105950089501,0.0005135209277554215,-0.0021954506867263267,-0.004695663302791547,-0.0037479305028994612,-0.0019156502881716296,-0.0019150588153719463,-0.004518381826027936,-0.003368660060541421,-0.0026702124308341296,-0.0038280104999751604,-0.004505438827340258,-0.003396502360291301,-0.004919805029658654,-0.0052883698356805155,-0.008276208780791189,-0.0034117557431248813,-0.0029166726821686904,-0.005535675581080715,-0.005742692296093563,-0.0014878306670863732,-0.003400288274155355,-0.0031957169104806144,-0.004867034171656184,-0.00586376576091798,-0.0006509241650419874,-0.0019459168410108113,-0.0024764331128129696,-0.002401445252542946,-0.004013656860955831,-0.004678216944989336,-0.0039010135137429545,-0.004542951339245045,-0.004246720892179937,-0.004305929049429498,-0.003291131013367238
+52.424685,4.895234,0.0020481664866622363,-0.00047687850563122355,0.0004299872214700591,0.0006208768166899998,3.88654499007613e-05,-0.0012225350383452086,-0.00112499671514876,0.0003944416396306818,0.002268268183338904,-0.0020283402120744695,-0.0012629614792395308,0.001134008879848297,-0.00041073804147146516,-0.0017361748864895595,-0.0014764003955090351,0.0015822032437012765,-0.0014922388292433124,-6.341498926393349e-05,9.106334588119544e-05,-0.0001797838895838972,0.001390659821810673,-0.0019490414217577575,0.0014551022395917605,0.0012646857376243706,-0.002658105950089501,0.0026135209277554214,-0.0005954506867263265,-0.001995663302791548,-0.001647930502899461,0.0006843497118283702,-0.0007150588153719464,-0.0018183818260279361,-0.0008686600605414214,-0.0003702124308341295,-0.0005280104999751604,-0.0016054388273402586,-0.0006965023602913009,-0.0020198050296586544,-0.0027883698356805154,-0.005476208780791188,-0.000511755743124881,-0.0009166726821686906,-0.003035675581080715,-0.0026426922960935623,-0.0002878306670863733,-0.001700288274155355,-0.002095716910480614,-0.002467034171656184,-0.0045637657609179805,0.0008490758349580126,-0.00024591684101081144,-0.0003764331128129695,-0.0007014452525429457,-0.002713656860955831,-0.002978216944989335,-0.0014010135137429544,-0.002642951339245045,-0.001946720892179937,-0.0020059290494294987,-0.000891131013367238
+52.424691,4.895179,0.0024481664866622364,-0.0009768785056312236,0.0006299872214700591,0.0007208768166899999,3.88654499007613e-05,-0.0007225350383452086,-0.00122499671514876,0.0008944416396306817,0.002468268183338904,-0.0018283402120744694,0.00013703852076046917,0.0016340088798482968,0.00028926195852853483,-0.0011361748864895595,-0.001376400395509035,0.0021822032437012764,-0.0009922388292433124,0.0001365850107360665,-0.00010893665411880449,-7.978388958389715e-05,0.0016906598218106729,-0.0007490414217577575,0.0018551022395917605,0.0013646857376243705,-0.002458105950089501,0.0029135209277554213,-0.0004954506867263267,-0.0015956633027915477,-0.001847930502899461,0.0009843497118283704,-0.0005150588153719463,-0.0013183818260279361,-0.0010686600605414216,0.0004297875691658705,-0.00032801049997516045,-0.0016054388273402586,-0.0006965023602913009,-0.0012198050296586545,-0.0024883698356805155,-0.005076208780791189,-1.1755743124881087e-05,-0.0005166726821686906,-0.0029356755810807152,-0.0033426922960935624,0.0003121693329136266,-0.002000288274155355,-0.0014957169104806143,-0.003067034171656184,-0.00446376576091798,0.0006490758349580126,-0.00044591684101081153,-0.0011764331128129692,-0.0013014452525429456,-0.0026136568609558307,-0.003278216944989335,-0.0016010135137429545,-0.003042951339245045,-0.002646720892179937,-0.0024059290494294985,-0.0014911310133672382
+52.424632,4.895636,0.003648166486662236,0.0010231214943687765,0.0023299872214700592,0.0005208768166899998,0.00033886544990076133,-0.0016225350383452086,-0.00022499671514876007,0.0002944416396306818,0.003268268183338904,-0.00012834021207446954,0.00013703852076046917,0.001834008879848297,0.00028926195852853483,-0.0009361748864895595,-0.0006764003955090352,0.0013822032437012764,-0.0007922388292433125,0.0001365850107360665,-0.0009089366541188045,0.0004202161104161028,0.002090659821810673,-0.0014490414217577575,0.0018551022395917605,0.0010646857376243705,-0.002358105950089501,0.0031135209277554214,-0.0003954506867263266,-0.0022956633027915478,-0.00024793050289946116,0.0005843497118283702,0.00028494118462805366,-0.0009183818260279362,-6.866006054142139e-05,0.0001297875691658705,0.0004719895000248396,-0.0010054388273402588,-0.000896502360291301,-0.0017198050296586545,-0.0023883698356805157,-0.005076208780791189,-0.000611755743124881,-0.0004166726821686905,-0.003435675581080715,-0.0027426922960935626,-0.0006878306670863735,-0.002400288274155355,-0.0017957169104806142,-0.002467034171656184,-0.00376376576091798,0.0009490758349580126,-0.0007459168410108115,-0.00027643311281296944,-0.0008014452525429458,-0.0026136568609558307,-0.003078216944989335,-0.002401013513742955,-0.003442951339245045,-0.002446720892179937,-0.0022059290494294984,-0.0016911310133672379
+52.424648,4.895445,-0.0035518335133377637,-0.007276878505631224,-0.006470012778529941,-0.00387912318331,-0.0032611345500992385,-0.004122535038345208,-0.00612499671514876,-0.004505558360369318,-0.0038317318166610965,-0.00792834021207447,-0.005862961479239531,-0.005565991120151703,-0.005410738041471465,-0.00783617488648956,-0.006576400395509036,-0.003417796756298723,-0.007692238829243313,-0.006463414989263934,-0.006408936654118805,-0.007179783889583897,-0.005309340178189327,-0.008549041421757757,-0.005344897760408239,-0.005735314262375629,-0.0104581059500895,-0.005486479072244579,-0.007795450686726326,-0.009595663302791548,-0.008947930502899461,-0.00541565028817163,-0.008015058815371946,-0.007818381826027936,-0.006068660060541422,-0.007570212430834129,-0.00732801049997516,-0.007805438827340258,-0.007696502360291301,-0.008619805029658655,-0.008888369835680516,-0.012976208780791188,-0.00801175574312488,-0.007816672682168692,-0.010335675581080716,-0.009542692296093563,-0.007787830667086373,-0.008600288274155356,-0.010495716910480615,-0.009867034171656184,-0.012163765760917981,-0.006950924165041988,-0.008245916841010812,-0.009176433112812969,-0.008601445252542946,-0.011213656860955832,-0.010378216944989334,-0.009901013513742955,-0.009142951339245045,-0.009746720892179938,-0.010005929049429499,-0.009391131013367238
+52.424515,4.896512,0.002348166486662236,0.0007231214943687765,-0.00037001277852994095,0.0006208768166899998,0.00033886544990076133,0.00037746496165479154,-0.0010249967151487601,0.0015944416396306818,0.0026682681833389036,-0.0011283402120744696,-0.0006629614792395308,-0.000365991120151703,-0.00011073804147146515,-0.0024361748864895594,-0.002276400395509035,0.00028220324370127647,-9.223882924331238e-05,-0.0015634149892639335,-0.00020893665411880454,2.0216110416102786e-05,0.0012906598218106729,-0.0011490414217577574,0.0006551022395917606,0.0011646857376243706,-0.0037581059500895013,0.0028135209277554214,-0.0007954506867263266,-0.0017956633027915478,-0.002147930502899461,-0.0004156502881716296,-0.0006150588153719463,-0.0013183818260279361,-0.0006686600605414213,0.0005297875691658706,-0.0019280104999751604,-0.0021054388273402586,-0.000896502360291301,-0.0020198050296586544,-0.0030883698356805153,-0.005676208780791189,-0.002011755743124881,-0.0010166726821686904,-0.003935675581080715,-0.0022426922960935626,0.0007121693329136266,-0.0008002882741553551,-0.0015957169104806144,-0.002867034171656184,-0.0038637657609179804,0.0016490758349580125,-0.0009459168410108113,-0.0003764331128129695,-0.0010014452525429457,-0.002413656860955831,-0.0021782169449893352,-0.0020010135137429547,0.00045704866075495476,-0.0020467208921799373,-0.0018059290494294986,-0.0006911310133672381
+52.424749,4.894465,0.0022481664866622363,-0.0011768785056312236,0.00012998722147005912,0.0007208768166899999,0.0007388654499007613,-0.0005225350383452085,-0.00192499671514876,-0.0003055583603693182,0.0014682681833389037,-0.0016283402120744696,-0.0015629614792395307,0.000634008879848297,-0.0016107380414714652,-0.0014361748864895594,-0.0015764003955090352,0.0017822032437012764,-0.0017922388292433123,-0.0006634149892639335,9.106334588119544e-05,0.00012021611041610278,0.0016906598218106729,-0.0021490414217577576,0.0014551022395917605,0.0012646857376243706,-0.0038581059500895007,0.0024135209277554213,-0.0002954506867263266,-0.002095663302791548,-0.001547930502899461,0.0009843497118283704,-0.0012150588153719464,-0.0014183818260279362,-0.0008686600605414214,-0.0006702124308341295,-0.0019280104999751604,-0.0019054388273402586,-0.001096502360291301,-0.0021198050296586547,-0.0022883698356805154,-0.0051762087807911885,-0.0014117557431248809,-0.0016166726821686904,-0.001835675581080715,-0.004242692296093562,0.00021216933291362658,-0.0008002882741553551,-0.0010957169104806143,-0.002567034171656184,-0.00436376576091798,0.0007490758349580125,0.0005540831589891886,-0.0007764331128129695,0.00019855474745705435,-0.002713656860955831,-0.002278216944989335,-0.0017010135137429546,-0.0027429513392450452,-0.002146720892179937,-0.0018059290494294986,-0.0016911310133672379
+52.424719,4.894662,0.002848166486662236,-0.00027687850563122356,0.0008299872214700591,0.00152087681669,-0.00026113455009923873,0.00027746496165479155,-0.00042499671514876,0.0007944416396306818,0.0026682681833389036,-0.0009283402120744696,-6.29614792395308e-05,0.001934008879848297,-1.0738041471465142e-05,-0.0024361748864895594,-0.0010764003955090352,0.0018822032437012764,-0.0009922388292433124,0.0005365850107360666,0.00039106334588119546,-0.0003797838895838972,0.001890659821810673,-0.0016490414217577574,0.0017551022395917606,0.0019646857376243703,-0.002158105950089501,0.003513520927755421,0.0004045493132736734,-0.002095663302791548,-0.001047930502899461,0.00218434971182837,0.0005849411846280537,0.0001816181739720639,0.0013313399394585786,0.0004297875691658705,0.0005719895000248396,-5.438827340258556e-06,0.000403497639708699,-0.0006198050296586544,-0.0004883698356805156,-0.004076208780791188,0.0005882442568751189,0.0003833273178313095,-0.0014356755810807152,-0.004242692296093562,0.0012121693329136265,-0.0003002882741553551,-0.0009957169104806143,-0.0032670341716561843,-0.00366376576091798,0.0019490758349580127,0.0009540831589891886,-0.0010764331128129694,-0.00030144525254294577,-0.002513656860955831,-0.0021782169449893352,-0.0008010135137429546,-0.00014295133924504527,-0.00044672089217993714,0.0004940709505705014,-9.113101336723803e-05
+52.424714,4.89452,0.0034481664866622365,0.0013231214943687764,0.0003299872214700591,0.0014208768166899999,0.0026388654499007614,0.00027746496165479155,0.00167500328485124,0.0009944416396306817,0.002468268183338904,-0.0013283402120744697,-0.0002629614792395308,0.001034008879848297,0.00018926195852853487,-0.0002361748864895595,-0.0008764003955090352,0.0018822032437012764,-0.0006922388292433124,0.00033658501073606647,0.0012910633458811955,0.0003202161104161028,0.002990659821810673,-0.00014904142175775755,0.0030551022395917606,0.0013646857376243705,-0.003058105950089501,0.003913520927755421,0.00030454931327367343,-0.0007956633027915479,-0.0008479305028994612,0.00288434971182837,-0.0010150588153719463,0.0001816181739720639,-0.00046866006054142146,0.0008297875691658705,-0.0001280104999751604,-0.0009054388273402586,3.497639708699001e-06,-0.0017198050296586545,-0.0015883698356805155,-0.0030762087807911886,0.0001882442568751189,-0.0006166726821686906,-0.001835675581080715,-0.0021426922960935627,0.0009121693329136266,-0.0003002882741553551,-0.0006957169104806144,-0.000567034171656184,-0.00336376576091798,0.0033490758349580124,0.002654083158989189,0.0030235668871870305,0.002298554747457054,-0.001413656860955831,0.0024217830550106647,0.0012989864862570455,5.7048660754954745e-05,0.002453279107820063,0.0011940709505705014,0.0035088689866327617
+52.424456,4.896708,-0.0005518335133377638,-0.003976878505631224,-0.004170012778529941,-0.00157912318331,-0.0016611345500992388,-0.0024225350383452085,-0.0029249967151487597,-0.0010055583603693183,0.001368268183338904,-0.0035283402120744696,-0.0035629614792395308,-0.004565991120151703,-0.004810738041471465,-0.0038361748864895596,-0.005276400395509036,-0.0031177967562987232,-0.0056922388292433125,-0.005663414989263934,-0.005408936654118805,-0.001579783889583897,-0.0024093401781893273,-0.005349041421757758,-0.0019448977604082395,-0.0016353142623756292,-0.005258105950089501,0.0007135209277554214,-0.002595450686726327,-0.004095663302791547,-0.003047930502899461,-0.00151565028817163,-0.004415058815371946,-0.0042183818260279355,-0.002368660060541421,-0.0027702124308341294,-0.0040280104999751605,-0.0037054388273402585,-0.0025965023602913012,-0.003519805029658654,-0.004688369835680516,-0.008676208780791188,-0.0053117557431248815,-0.00401667268216869,-0.006735675581080715,-0.0060426922960935625,-0.003187830667086374,-0.005600288274155355,-0.007595716910480614,-0.005167034171656184,-0.00736376576091798,-0.0019509241650419876,-0.003545916841010812,-0.003576433112812969,-0.002701445252542946,-0.005213656860955831,-0.007678216944989336,-0.002401013513742955,-0.0032429513392450452,-0.002946720892179937,-0.0034059290494294985,-0.0020911310133672383
+52.424464,4.896652,0.0024481664866622364,-7.687850563122355e-05,-0.002370012778529941,-0.00077912318331,0.00033886544990076133,-0.0031225350383452086,-0.0009249967151487601,-0.0013055583603693182,0.0010682681833389038,-0.00042834021207446957,-0.003662961479239531,-0.003865991120151703,-0.0026107380414714648,-0.007136174886489559,-0.007376400395509035,-0.0019177967562987233,-0.005592238829243312,-0.007463414989263934,-0.005808936654118805,-0.005479783889583897,-0.0024093401781893273,-0.004049041421757758,-0.003144897760408239,-0.004435314262375629,-0.0035581059500895008,-0.0012864790722445785,-0.0047954506867263266,-0.005695663302791547,-0.0034479305028994613,-0.0017156502881716296,-0.0022150588153719464,-0.003818381826027936,-0.0018686600605414211,-0.0029702124308341295,-0.0028280104999751604,-0.0035054388273402584,-0.0012965023602913009,-0.004219805029658654,-0.005788369835680516,-0.009176208780791189,-0.004511755743124881,-0.00401667268216869,-0.0056356755810807145,-0.005842692296093562,-0.003487830667086374,-0.005000288274155355,-0.006095716910480615,-0.004967034171656184,-0.00776376576091798,-0.0023509241650419874,-0.002245916841010811,-0.0037764331128129695,-0.004701445252542945,-0.002713656860955831,-0.004478216944989335,-0.0015010135137429545,-0.005542951339245045,-0.004046720892179937,-0.0038059290494294987,-0.003991131013367238
+52.424469,4.896608,0.004048166486662236,0.0012231214943687766,-0.00017001277852994086,0.00272087681669,0.0029388654499007613,0.0025774649616547916,0.00147500328485124,0.003494441639630682,0.004968268183338904,0.0011716597879255304,0.0013370385207604693,0.002634008879848297,0.0009892619585285347,-0.0006361748864895595,-0.0004764003955090351,0.0006822032437012764,-0.0006922388292433124,0.0013365850107360665,0.0021910633458811953,0.0012202161104161028,0.0015906598218106728,0.0012509585782422424,0.0030551022395917606,0.0027646857376243707,-0.002758105950089501,0.0025135209277554215,0.0007045493132736734,-0.0004956633027915478,0.0029520694971005386,0.0036843497118283705,0.0018849411846280535,0.002981618173972064,0.0020313399394585787,0.0022297875691658707,0.004371989500024839,0.0012945611726597412,0.002603497639708699,0.0021801949703413454,-0.00018836983568051554,-0.002976208780791189,0.002588244256875119,8.332731783130944e-05,-0.0006356755810807151,-0.0021426922960935627,-0.0009878306670863734,-0.0012002882741553552,-0.0012957169104806142,-0.0013670341716561839,-0.00276376576091798,0.0033490758349580124,0.002654083158989189,0.0015235668871870305,0.0018985547474570544,-0.001113656860955831,-0.0009782169449893351,0.002698986486257045,0.00035704866075495477,-0.0005467208921799372,0.0013940709505705013,0.002608868986632762
+52.42474,4.894241,0.0007481664866622362,0.0005231214943687765,0.0004299872214700591,-0.0005791231833100002,-0.0011611345500992386,-0.0014225350383452085,-0.00122499671514876,0.00019444163963068176,0.0036682681833389037,-0.004028340212074469,-0.0013629614792395306,0.00023400887984829693,-0.0005107380414714651,-0.0049361748864895595,-0.001876400395509035,-0.0001177967562987235,-0.0018922388292433126,-0.00016341498926393348,0.0024910633458811956,0.001020216110416103,-0.0013093401781893272,-0.004449041421757757,-0.0008448977604082397,0.0019646857376243703,-0.003958105950089501,0.0026135209277554214,-0.0002954506867263266,-0.0017956633027915478,0.00045206949710053883,-0.00021565028817162974,-0.0015150588153719463,-0.00011838182602793624,-0.0012686600605414213,-0.0017702124308341294,-0.0031280104999751603,-0.0029054388273402586,-0.002496502360291301,-0.004119805029658655,-0.0015883698356805155,-0.006076208780791188,-0.002311755743124881,-0.0008166726821686905,-0.002635675581080715,-0.004942692296093562,-0.0007878306670863733,-0.0006002882741553551,-0.0022957169104806142,-0.001967034171656184,-0.00406376576091798,0.0010490758349580125,-0.0018459168410108115,0.0016235668871870306,-0.0031014452525429453,-0.002013656860955831,-0.0036782169449893353,0.0002989864862570454,-0.003642951339245045,-0.0008467208921799372,-5.92904942949853e-06,0.002408868986632762
+52.424779,4.893891,4.816648666223621e-05,0.0010231214943687765,-0.000970012778529941,-0.0003791231833100001,-0.0004611345500992387,-0.0012225350383452086,-0.00252499671514876,-0.0008055583603693182,0.0010682681833389038,-0.0038283402120744695,-0.0017629614792395308,-0.00016599112015170292,-0.002310738041471465,-0.0034361748864895594,-0.002476400395509035,0.0023822032437012764,-0.004892238829243312,-0.0025634149892639338,-0.0015089366541188045,-0.0007797838895838971,-0.0018093401781893272,-0.003149041421757757,-0.00014489776040823958,0.0014646857376243705,-0.005358105950089501,0.0013135209277554214,-0.002095450686726327,-0.003195663302791548,-0.0036479305028994614,0.0005843497118283702,-0.0023150588153719462,-0.003018381826027936,-0.0014686600605414214,-0.0026702124308341296,-0.0031280104999751603,-0.0042054388273402585,-0.001696502360291301,-0.0031198050296586547,-0.0020883698356805157,-0.004576208780791189,-0.001611755743124881,-0.0027166726821686903,-0.002735675581080715,-0.004142692296093563,-8.783066708637345e-05,-0.003400288274155355,-0.0029957169104806143,-0.0036670341716561836,-0.00526376576091798,-0.0013509241650419873,-0.0009459168410108113,0.0008235668871870306,-0.002001445252542946,-0.002313656860955831,-0.004478216944989335,-0.002701013513742955,-0.002542951339245045,-0.001546720892179937,-0.0015059290494294985,-0.0006911310133672381
+52.424697,4.894534,0.003248166486662236,0.0035231214943687765,0.0006299872214700591,0.00102087681669,0.0004388654499007613,0.00047746496165479153,0.0013750032848512401,0.0010944416396306818,0.004868268183338903,-0.0003283402120744695,0.0005370385207604691,0.001334008879848297,0.00038926195852853477,-0.0027361748864895598,-0.0007764003955090351,0.0017822032437012764,0.00020776117075668754,0.00033658501073606647,0.0015910633458811954,0.00022021611041610282,0.001990659821810673,-0.00014904142175775755,0.0032551022395917607,0.0026646857376243704,-0.002258105950089501,0.003913520927755421,0.0006045493132736734,-0.0008956633027915479,-0.0008479305028994612,0.00218434971182837,0.0001849411846280537,0.00038161817397206377,0.0006313399394585786,-0.0004702124308341295,0.0008719895000248396,-0.0014054388273402585,0.000103497639708699,0.0005801949703413455,-0.0005883698356805155,-0.0023762087807911885,0.000788244256875119,0.0003833273178313095,-0.001535675581080715,-0.0027426922960935626,0.0022121693329136263,0.0013997117258446447,0.0004042830895193857,-0.000867034171656184,-0.0019637657609179802,0.0016490758349580125,0.0016540831589891886,-0.0023764331128129693,0.0021985547474570543,-0.0026136568609558307,-0.0016782169449893352,-0.0015010135137429545,0.0010570486607549548,-0.0003467208921799372,0.00019407095057050148,-0.001891131013367238
+52.424706,4.894466,0.0027481664866622364,-7.687850563122355e-05,0.0008299872214700591,0.0014208768166899999,0.0001388654499007613,0.00047746496165479153,-0.00072499671514876,0.0010944416396306818,0.0031682681833389036,-0.0014283402120744695,0.00013703852076046917,0.001334008879848297,0.00038926195852853477,-0.0018361748864895596,-0.001376400395509035,0.0021822032437012764,-0.0003922388292433124,0.0009365850107360665,0.0015910633458811954,0.0006202161104161028,0.002490659821810673,0.00015095857824224258,0.0033551022395917605,0.0022646857376243707,-0.0025581059500895008,0.0034135209277554217,-0.00019545068672632664,-0.0014956633027915479,-0.001347930502899461,0.00238434971182837,-0.00031505881537194634,0.000881618173972064,-0.0011686600605414215,-0.0002702124308341295,-0.0007280104999751604,-0.0003054388273402587,0.000503497639708699,-0.0008198050296586544,-0.0013883698356805156,-0.005376208780791189,0.00038824425687511893,8.332731783130944e-05,-0.001935675581080715,-0.0024426922960935626,0.0016121693329136265,-0.0011002882741553551,-0.00019571691048061434,-0.001167034171656184,-0.0021637657609179803,0.0026490758349580123,0.0013540831589891886,0.0009235668871870307,-0.0004014452525429456,-0.002313656860955831,-0.002278216944989335,0.0002989864862570454,-0.0017429513392450452,-0.0009467208921799372,-0.0013059290494294986,0.0010088689866327618
+52.424781,4.893823,0.0010481664866622362,0.00042312149436877643,-0.000970012778529941,-0.0003791231833100001,0.0012388654499007612,-0.0012225350383452086,-0.0009249967151487601,-0.00020555836036931826,0.0026682681833389036,-0.0034283402120744693,-0.002662961479239531,3.400887984829695e-05,-0.0006107380414714651,-0.0037361748864895594,-0.002976400395509035,0.0013822032437012764,-0.0016922388292433125,-0.0015634149892639335,-0.00020893665411880454,-0.001279783889583897,-0.000409340178189327,-0.0028490414217577573,-0.0012448977604082394,-3.531426237562952e-05,-0.004158105950089501,0.0017135209277554214,-0.0009954506867263266,-0.002195663302791548,-0.0034479305028994613,0.00018434971182837022,0.0016849411846280536,-0.002118381826027936,-0.0011686600605414215,-0.0020702124308341293,-0.00222801049997516,-0.0019054388273402586,-0.000996502360291301,-0.0036198050296586542,-0.0025883698356805153,-0.005376208780791189,-0.002411755743124881,-0.0025166726821686906,-0.002635675581080715,-0.004542692296093563,-0.0010878306670863735,-0.003100288274155355,-0.002395716910480614,-0.003767034171656184,-0.00516376576091798,0.0008490758349580126,-0.0011459168410108114,0.0008235668871870306,-0.00010144525254294568,-0.003313656860955831,-0.0008782169449893352,-0.0013010135137429546,-0.0019429513392450453,-0.0013467208921799372,-0.0005059290494294985,-0.00019113101336723807
+52.424819,4.893459,0.0002481664866622363,-0.0017768785056312235,0.002829987221470059,-0.0013791231833100003,-0.0016611345500992388,-0.0017225350383452084,-0.00302499671514876,-0.001505558360369318,0.0007682681833389039,-0.00492834021207447,-0.0010629614792395307,-0.000765991120151703,-0.002110738041471465,-0.005136174886489559,-0.0007764003955090351,-0.0010177967562987236,-0.0032922388292433123,-0.0017634149892639334,-0.0008089366541188045,-0.0013797838895838973,-0.0008093401781893272,-0.005449041421757758,-0.0017448977604082399,0.0003646857376243705,-0.0057581059500895005,0.0007135209277554214,-0.0028954506867263268,-0.003895663302791548,-0.004047930502899461,-0.0019156502881716296,-0.0032150588153719464,-0.003118381826027936,-0.0034686600605414214,-0.0033702124308341293,-0.0031280104999751603,-0.0034054388273402586,-0.001996502360291301,-0.0050198050296586545,-0.0036883698356805156,-0.006776208780791189,-0.0043117557431248815,-0.0029166726821686904,-0.0076356755810807145,-0.005842692296093562,-0.0009878306670863734,-0.002700288274155355,-0.0026957169104806144,-0.005167034171656184,-0.00526376576091798,-0.0014509241650419876,-0.0018459168410108115,-0.0036764331128129693,-0.0031014452525429453,-0.004813656860955831,-0.004778216944989335,-0.0028010135137429546,-0.003542951339245045,-0.0039467208921799375,-0.0037059290494294984,-0.002691131013367238
+52.424672,4.894684,4.816648666223621e-05,-0.0025768785056312234,-0.002370012778529941,0.00042087681668999985,0.00033886544990076133,0.00017746496165479153,-0.00032499671514876,-0.0014055583603693183,0.002468268183338904,-0.0014283402120744695,-0.0001629614792395308,0.001534008879848297,-0.00041073804147146516,-0.0034361748864895594,-0.003776400395509035,0.003182203243701277,-0.0019922388292433124,0.0014365850107360665,0.0028910633458811954,-0.0001797838895838972,0.001390659821810673,-0.0042490414217577575,-0.0007448977604082394,0.0018646857376243705,-0.003958105950089501,0.0024135209277554213,0.0008045493132736734,-0.003695663302791548,-0.002547930502899461,0.0024843497118283704,-0.002115058815371946,-0.002118381826027936,-0.0012686600605414213,-7.02124308341295e-05,0.004071989500024839,-0.0013054388273402587,-0.0017965023602913009,-0.0025198050296586544,-0.0018883698356805154,-0.003676208780791189,-0.0008117557431248811,0.00018332731783130945,-0.002835675581080715,-0.006742692296093563,0.0017121693329136267,-0.00040028827415535516,-0.0007957169104806144,-0.005567034171656183,-0.00326376576091798,0.0005490758349580126,0.00025408315898918857,-0.0071764331128129685,0.0007985547474570543,-0.006113656860955831,-0.005478216944989335,-0.004501013513742954,-0.004242951339245045,0.0020532791078200626,-0.0024059290494294985,-0.008191131013367239
+52.424715,4.894291,0.003148166486662236,-0.00037687850563122356,-0.001570012778529941,-0.0016791231833100002,-0.00026113455009923873,-0.0019225350383452085,-0.00232499671514876,-0.0011055583603693181,-0.004131731816661096,-0.00622834021207447,-0.0018629614792395307,-6.599112015170309e-05,0.00028926195852853483,-0.00443617488648956,-0.002176400395509035,-0.0003177967562987236,-0.0027922388292433123,0.00033658501073606647,0.0024910633458811956,-0.0007797838895838971,0.0012906598218106729,-0.0027490414217577574,0.0014551022395917605,0.0014646857376243705,-0.005058105950089501,0.0025135209277554215,-0.0009954506867263266,-0.004295663302791548,-0.004147930502899461,-0.0014156502881716296,-0.002115058815371946,-0.0049183818260279365,-0.002068660060541421,-0.0026702124308341296,-0.0013280104999751604,-0.0032054388273402585,-0.001596502360291301,-0.0028198050296586548,-0.0033883698356805157,-0.006376208780791188,-0.001011755743124881,-0.0017166726821686905,-0.0029356755810807152,-0.004442692296093563,-0.0029878306670863735,-0.0016002882741553552,-0.002395716910480614,-0.003467034171656184,-0.00546376576091798,0.0007490758349580125,0.00015408315898918852,-0.0008764331128129693,-0.0010014452525429457,-0.004313656860955831,-0.004678216944989336,-0.0033010135137429546,-0.005142951339245046,-0.0025467208921799373,-0.0015059290494294985,-0.000891131013367238
+52.424775,4.893755,-0.0002518335133377637,-0.00047687850563122355,-0.003870012778529941,0.00022087681668999976,0.0007388654499007613,-0.0008225350383452084,-0.005924996715148761,-0.0007055583603693182,0.0023682681833389037,-0.006028340212074469,-0.003262961479239531,-0.00046599112015170306,-0.0013107380414714652,-0.00443617488648956,-0.003476400395509035,-0.0005177967562987236,-0.004792238829243313,-0.002963414989263933,-0.0020089366541188045,-0.002879783889583897,-0.0016093401781893271,-0.004749041421757757,-0.0017448977604082399,-0.0006353142623756295,-0.006458105950089501,0.0008135209277554214,-0.0024954506867263266,-0.003995663302791548,-0.008447930502899461,-0.00021565028817162974,-0.0038150588153719463,-0.0008183818260279361,-0.0017686600605414213,-0.0024702124308341295,0.0014719895000248396,-0.004905438827340259,-0.004596502360291301,-0.004319805029658654,-0.004588369835680515,-0.007676208780791189,-0.002811755743124881,0.0020833273178313093,-0.004135675581080715,-0.0030426922960935625,-0.0007878306670863733,-0.001700288274155355,-0.0029957169104806143,-0.004667034171656184,-0.005963765760917981,-0.0010509241650419874,-0.002545916841010812,-0.00407643311281297,-0.004201445252542946,-0.006713656860955831,-0.004378216944989336,-0.009401013513742954,0.0011570486607549546,-0.001546720892179937,0.0004940709505705014,0.001708868986632762
+52.424844,4.893139,0.0004481664866622362,0.003823121494368777,-0.002570012778529941,-0.00077912318331,-0.0009611345500992387,-0.0021225350383452086,-0.00422499671514876,-0.0005055583603693183,0.0014682681833389037,-0.00462834021207447,-0.0017629614792395308,0.000734008879848297,-0.0007107380414714652,-0.0031361748864895595,-0.002876400395509035,-0.0015177967562987236,-0.003992238829243312,-0.0020634149892639333,-0.0016089366541188043,-0.0005797838895838973,-0.00020934017818932714,-0.0033490414217577577,-0.0006448977604082396,0.0011646857376243706,-0.004958105950089501,0.0009135209277554214,-0.0003954506867263266,-0.002195663302791548,-0.0032479305028994612,0.0008843497118283702,-0.002615058815371946,-0.002818381826027936,-0.0027686600605414213,-0.0018702124308341294,-0.0028280104999751604,-0.0035054388273402584,-0.001396502360291301,-0.003219805029658654,-0.0028883698356805157,-0.0035762087807911886,-0.001311755743124881,-0.004916672682168691,-0.002535675581080715,-0.006842692296093562,-0.0009878306670863734,-0.004000288274155355,-0.0027957169104806143,-0.003067034171656184,-0.00536376576091798,-0.0006509241650419874,-0.0019459168410108113,-0.0016764331128129692,-0.0017014452525429458,-0.0055136568609558305,-0.004478216944989335,-0.003801013513742955,-0.002342951339245045,-0.0035467208921799373,-0.004505929049429498,-0.0024911310133672385
+52.424885,4.892759,0.0038481664866622358,0.0022231214943687766,2.998722147005907e-05,0.00512087681669,0.0024388654499007613,0.0015774649616547914,0.0026750032848512403,0.0023944416396306815,0.0042682681833389035,-0.0005283402120744696,0.002037038520760469,0.001834008879848297,0.001989261958528535,-0.0017361748864895595,0.0007235996044909648,0.0043822032437012765,0.0016077611707566877,0.0027365850107360663,0.0038910633458811954,0.003220216110416103,0.003090659821810673,-0.00014904142175775755,0.0015551022395917605,0.0025646857376243706,-0.000958105950089501,0.007013520927755422,0.0014045493132736734,-0.002895663302791548,-4.7930502899461126e-05,0.00418434971182837,0.0025849411846280536,0.004681618173972064,0.0010313399394585787,0.0018297875691658705,0.00037198950002483955,-5.438827340258556e-06,0.000603497639708699,-0.0017198050296586545,0.0011116301643194844,-0.007976208780791189,0.001388244256875119,0.00018332731783130945,-0.001035675581080715,-0.0011426922960935625,0.0026121693329136265,0.0026997117258446453,0.0011042830895193858,-0.000767034171656184,-0.00166376576091798,0.0030490758349580125,0.0027540831589891886,0.002823566887187031,0.002898554747457054,0.0002863431390441691,-0.0004782169449893352,0.0019989864862570454,0.0006570486607549547,0.001953279107820063,0.0016940709505705014,0.0005088689866327619
+52.424358,4.897241,0.0030481664866622363,0.0020231214943687765,0.0008299872214700591,0.0029208768166899997,0.0011388654499007614,0.00037746496165479154,0.0009750032848512399,0.0024944416396306818,0.0036682681833389037,-0.00022834021207446958,0.0008370385207604693,0.002734008879848297,0.0014892619585285347,-0.0010361748864895597,0.0016235996044909648,0.00048220324370127645,0.0008077611707566876,0.0025365850107360666,0.0027910633458811955,0.002720216110416103,0.0033906598218106728,0.0017509585782422424,0.0021551022395917604,0.0017646857376243706,-0.001658105950089501,0.0034135209277554217,0.0007045493132736734,0.0006043366972084521,0.0012520694971005389,0.0024843497118283704,0.0006849411846280536,0.00038161817397206377,0.002731339939458579,0.0022297875691658707,0.0024719895000248396,0.0007945611726597412,0.001103497639708699,0.0014801949703413455,-0.0008883698356805155,-0.0018762087807911887,0.001088244256875119,0.0012833273178313096,-0.001835675581080715,0.0014573077039064374,0.0014121693329136266,-0.00020028827415535507,-0.00019571691048061434,0.00043296582834381606,-0.0015637657609179803,0.0026490758349580123,0.0016540831589891886,0.003123566887187031,0.002598554747457054,0.000586343139044169,-0.001278216944989335,0.0011989864862570455,-0.0014429513392450453,-0.0012467208921799371,0.0002940709505705015,0.002108868986632762
+52.424367,4.897161,0.0007481664866622362,-0.0020768785056312234,-0.001470012778529941,2.0876816689999883e-05,-0.0005611345500992388,-0.0025225350383452083,-0.00302499671514876,-0.0009055583603693183,0.0009682681833389037,-0.00462834021207447,-0.003762961479239531,-0.001265991120151703,-0.002810738041471465,-0.00443617488648956,-0.0030764003955090348,-0.0032177967562987235,-0.005092238829243313,-0.0033634149892639333,-0.0007089366541188044,-0.0016797838895838972,-0.001709340178189327,-0.0014490414217577575,0.0002551022395917606,-0.0004353142623756294,-0.004158105950089501,0.00021352092775542134,-0.0022954506867263265,-0.001895663302791548,-0.0014479305028994613,-0.0001156502881716297,-0.0029150588153719465,-0.003118381826027936,-0.0011686600605414215,-0.0014702124308341295,-0.0026280104999751603,-0.002705438827340259,-0.001496502360291301,-0.003519805029658654,-0.004688369835680516,-0.007676208780791189,-0.002511755743124881,-0.0028166726821686906,-0.003435675581080715,-0.003842692296093563,0.0011121693329136267,-0.001900288274155355,-0.0018957169104806143,-0.0018670341716561841,-0.004263765760917981,-5.092416504198739e-05,0.00045408315898918855,-0.0011764331128129692,-0.0021014452525429453,-0.003013656860955831,-0.003578216944989335,-0.0008010135137429546,-0.0012429513392450452,-0.0020467208921799373,-0.0033059290494294987,-0.000891131013367238
+52.424377,4.897062,-0.0005518335133377638,-0.0020768785056312234,-0.004070012778529941,-0.0011791231833100002,-0.002761134550099239,-0.0022225350383452084,-0.00372499671514876,-0.002705558360369318,0.00046826818333890394,-0.005628340212074469,-0.004562961479239531,-0.003965991120151703,-0.003810738041471465,-0.007136174886489559,-0.007076400395509035,-0.004717796756298723,-0.005892238829243312,-0.006363414989263933,-0.0025089366541188045,-0.007079783889583897,-0.003309340178189327,-0.0042490414217577575,-0.00414489776040824,-0.002635314262375629,-0.006458105950089501,-0.002986479072244578,-0.004395450686726326,-0.003695663302791548,-0.00914793050289946,-0.00631565028817163,-0.008115058815371947,-0.010618381826027935,-0.009368660060541422,-0.00877021243083413,-0.00892801049997516,-0.00910543882734026,-0.006796502360291301,-0.011119805029658656,-0.010088369835680516,-0.01727620878079119,-0.00881175574312488,-0.00851667268216869,-0.008835675581080714,-0.0031426922960935627,-0.0036878306670863736,-0.007200288274155355,-0.006495716910480614,-0.005467034171656184,-0.00496376576091798,-0.003850924165041988,-0.004245916841010812,-0.00817643311281297,-0.004901445252542946,-0.005913656860955831,-0.005378216944989336,-0.0030010135137429547,-0.006942951339245045,-0.002746720892179937,-0.004405929049429498,-0.004191131013367239
+52.424409,4.896797,-0.0005518335133377638,-0.0033768785056312233,-0.003070012778529941,-0.0011791231833100002,-0.0033611345500992387,-0.0031225350383452086,-0.0038249967151487603,-0.0016055583603693184,0.00016826818333890402,-0.00392834021207447,-0.002762961479239531,-0.001565991120151703,-0.0026107380414714648,-0.00413617488648956,-0.002276400395509035,0.00048220324370127645,-0.0026922388292433125,-0.0012634149892639334,-0.0003089366541188046,-0.0008797838895838972,0.0005906598218106728,-0.0023490414217577577,0.0011551022395917606,-3.531426237562952e-05,-0.0037581059500895013,0.0014135209277554215,-0.0011954506867263267,-0.003095663302791548,-0.003047930502899461,-0.0010156502881716299,-0.003915058815371946,-0.004518381826027936,-0.0010686600605414216,-0.0021702124308341296,-0.00412801049997516,-0.0035054388273402584,-0.001396502360291301,-0.004019805029658654,-0.004588369835680515,-0.005476208780791188,-0.002611755743124881,-0.0013166726821686905,-0.004935675581080715,-0.003842692296093563,-0.002787830667086374,0.001699711725844645,-0.0027957169104806143,-0.004567034171656184,-0.00576376576091798,-0.005150924165041988,-0.0017459168410108113,-0.0012764331128129695,-0.004201445252542946,-0.006213656860955831,-0.0065782169449893355,0.0013989864862570455,-0.006442951339245046,-0.005146720892179937,-0.004105929049429498,-0.0027911310133672384
+52.424769,4.893657,0.0020481664866622363,-0.0015768785056312234,0.0006299872214700591,0.0008208768166899998,-0.0004611345500992387,-0.0020225350383452083,-0.00222499671514876,-0.0006055583603693181,0.0007682681833389039,-0.0015283402120744695,-0.002362961479239531,-0.000365991120151703,-0.0008107380414714651,-0.0015361748864895595,-0.002776400395509035,0.00048220324370127645,-0.0025922388292433122,-6.341498926393349e-05,-0.0014089366541188047,-0.0021797838895838972,0.0007906598218106729,-0.0032490414217577574,-0.0010448977604082393,-0.0019353142623756295,-0.0067581059500895005,0.0025135209277554215,-0.0032954506867263265,-0.0017956633027915478,-0.004247930502899461,0.00048434971182837036,-0.0010150588153719463,-0.002718381826027936,-0.0013686600605414215,-0.0023702124308341292,-0.0032280104999751606,-0.002005438827340259,-0.001896502360291301,-0.0028198050296586548,-0.004488369835680515,-0.006876208780791189,-0.002311755743124881,-0.0034166726821686904,-0.004735675581080715,-0.004242692296093562,-0.0035878306670863733,-0.005600288274155355,-0.0034957169104806144,-0.002967034171656184,-0.008163765760917981,0.0007490758349580125,-0.0014459168410108113,-0.0006764331128129694,-0.002301445252542946,-0.003413656860955831,-0.003978216944989336,-0.0030010135137429547,-0.004042951339245046,-0.003146720892179937,-0.0033059290494294987,-0.004191131013367239
+52.424869,4.892818,0.006148166486662237,0.006523121494368776,0.006529987221470059,0.0022208768166899996,0.003438865449900761,0.0013774649616547915,0.0008750032848512399,0.0019944416396306818,0.007168268183338903,0.006171659787925531,0.0017370385207604692,0.001934008879848297,0.0007892619585285348,0.00386382511351044,2.359960449096484e-05,0.002882203243701276,0.0003077611707566876,0.0017365850107360665,0.0016910633458811952,0.0018202161104161028,0.003290659821810673,0.0027509585782422427,0.0014551022395917605,0.0034646857376243708,-0.001458105950089501,0.004713520927755422,4.549313273673455e-06,0.004604336697208452,0.0018520694971005387,0.0030843497118283702,0.0026849411846280534,0.004281618173972063,0.0019313399394585784,0.0025297875691658706,0.0010719895000248396,-0.00020543882734025865,0.001303497639708699,0.0018801949703413456,-0.0011883698356805156,-0.00027620878079118866,0.0015882442568751188,0.0003833273178313095,-0.001035675581080715,0.0013573077039064376,0.0023121693329136266,0.001499711725844645,0.0014042830895193857,0.000332965828343816,-0.00236376576091798,0.004549075834958012,0.0021540831589891883,0.00652356688718703,0.005598554747457054,0.004486343139044169,0.002321783055010665,0.0030989864862570452,0.003557048660754955,0.005153279107820063,0.0038940709505705016,0.003008868986632762
+52.42471,4.894121,0.0015481664866622362,-0.0005768785056312236,-0.0002700127785299409,0.0008208768166899998,0.0018388654499007613,-0.0009225350383452085,-0.00302499671514876,-5.558360369318171e-06,0.0015682681833389038,-0.0030283402120744696,-0.0016629614792395308,-0.0009659911201517031,-0.0011107380414714652,-0.0034361748864895594,-0.002176400395509035,0.0023822032437012764,-0.0033922388292433126,-0.0010634149892639335,-0.0007089366541188044,-0.0013797838895838973,0.0010906598218106728,-0.0039490414217577575,0.0010551022395917605,0.0018646857376243705,-0.002958105950089501,0.005013520927755422,-0.0024954506867263266,-0.002795663302791548,-0.002047930502899461,0.0009843497118283704,-0.0038150588153719463,-0.004318381826027937,-0.0025686600605414212,-0.0003702124308341295,-0.0005280104999751604,-0.0022054388273402585,-0.0025965023602913012,-0.003219805029658654,-0.004688369835680516,-0.008576208780791189,-0.0008117557431248811,-0.0034166726821686904,-0.002735675581080715,-0.003542692296093563,-0.0017878306670863736,-0.0025002882741553554,-0.0022957169104806142,-0.0033670341716561837,-0.0061637657609179795,0.0008490758349580126,-0.0014459168410108113,-0.0004764331128129693,-0.0010014452525429457,-0.003513656860955831,-0.004178216944989335,-0.0019010135137429547,-0.0027429513392450452,-0.0020467208921799373,-0.0015059290494294985,-0.0014911310133672382
+52.424812,4.893187,0.0017481664866622361,-0.00047687850563122355,-0.0037700127785299407,-0.00287912318331,-0.0022611345500992384,-0.0008225350383452084,-0.00252499671514876,-0.0029055583603693185,0.0010682681833389038,-0.0023283402120744695,-0.00406296147923953,-0.0037659911201517026,-0.003410738041471465,-0.00853617488648956,-0.004376400395509035,-0.0026177967562987237,-0.004792238829243313,-0.0017634149892639334,-0.0024089366541188042,-0.001979783889583897,-0.0010093401781893273,-0.006949041421757758,-0.0036448977604082397,-0.0014353142623756295,-0.0057581059500895005,0.0007135209277554214,-0.0017954506867263265,-0.001895663302791548,-0.004147930502899461,-0.0032156502881716294,-0.0014150588153719462,-0.002818381826027936,-0.0025686600605414212,-0.00597021243083413,-0.0010280104999751604,-0.004505438827340258,-0.0035965023602913013,-0.005119805029658654,-0.007488369835680515,-0.004476208780791189,-0.004711755743124882,-0.0037166726821686903,-0.008535675581080714,-0.0053426922960935624,-0.0030878306670863737,-0.004100288274155355,-0.007895716910480615,-0.003767034171656184,-0.006563765760917981,-0.0023509241650419874,-0.003545916841010812,0.0005235668871870306,-0.0015014452525429457,-0.006413656860955831,-0.005878216944989335,-0.0030010135137429547,-0.003142951339245045,-0.004646720892179937,-0.004205929049429498,-0.001891131013367238
+52.424833,4.893074,0.001248166486662236,0.0008231214943687765,-0.000670012778529941,0.00022087681668999976,0.0005388654499007613,-0.0017225350383452084,-0.00242499671514876,-0.0005055583603693183,0.0003682681833389037,-0.0021283402120744694,-0.0015629614792395307,-6.599112015170309e-05,-0.0018107380414714653,-0.005236174886489559,-0.001976400395509035,0.0009822032437012765,-0.0029922388292433124,-0.0010634149892639335,-0.0003089366541188046,-0.001579783889583897,9.065982181067278e-05,-0.0025490414217577573,0.0004551022395917605,-3.531426237562952e-05,-0.004558105950089501,0.0033135209277554215,-0.0007954506867263266,-0.002195663302791548,-0.0046479305028994606,-0.0001156502881716297,-0.002115058815371946,-0.002118381826027936,-0.0014686600605414214,-0.0013702124308341294,-0.0018280104999751604,-0.0011054388273402586,-0.001196502360291301,-0.0028198050296586548,-0.0032883698356805154,-0.004276208780791189,-0.002611755743124881,-0.0036166726821686905,-0.003035675581080715,-0.004142692296093563,-0.0019878306670863734,-0.004100288274155355,-0.003595716910480614,-0.003467034171656184,-0.00566376576091798,-0.0006509241650419874,-0.0017459168410108113,-0.00027643311281296944,-0.0011014452525429457,-0.003213656860955831,-0.003778216944989335,0.0012989864862570455,-0.0018429513392450453,-0.002446720892179937,-0.0020059290494294987,-0.001591131013367238
+52.424379,4.89692,-0.002351833513337764,-0.0010768785056312236,-0.003270012778529941,-0.00197912318331,-0.004461134550099239,-0.004622535038345209,-0.00312499671514876,-0.004505558360369318,0.0015682681833389038,-0.0018283402120744694,-0.005262961479239531,-0.0016659911201517032,-0.005410738041471465,-0.0030361748864895597,-0.006376400395509035,-0.003717796756298723,-0.005792238829243313,-0.0033634149892639333,-0.0040089366541188045,-0.002879783889583897,0.0006906598218106728,-0.0028490414217577573,-0.0013448977604082397,-0.0024353142623756295,-0.006858105950089501,-0.0015864790722445784,-0.0040954506867263265,-0.003995663302791548,-0.004547930502899461,-0.00501565028817163,-0.004215058815371946,-0.006618381826027937,-0.005768660060541422,-0.00507021243083413,-0.00802801049997516,-0.0034054388273402586,-0.007196502360291302,-0.005419805029658654,-0.007688369835680516,-0.00817620878079119,-0.0066117557431248815,-0.005216672682168691,-0.009135675581080716,-0.0070426922960935626,-0.0020878306670863737,-0.007000288274155355,-0.011995716910480615,-0.002467034171656184,-0.00716376576091798,0.0005490758349580126,-0.0040459168410108114,-0.0015764331128129694,-0.0038014452525429454,-0.004213656860955831,-0.005478216944989335,-0.002901013513742955,-0.007842951339245044,-0.005246720892179937,-0.005305929049429498,-0.005091131013367238
+52.424746,4.893698,0.001248166486662236,0.0010231214943687765,0.001629987221470059,0.0019208768166899997,0.0008388654499007612,-0.0008225350383452084,-0.00032499671514876,0.001394441639630682,0.003468268183338904,-0.00262834021207447,-0.00706296147923953,-0.0033659911201517033,-0.003210738041471465,-0.0022361748864895593,-0.0016764003955090352,-0.0004177967562987235,-0.0037922388292433128,-0.0014634149892639335,-0.0016089366541188043,-0.002779783889583897,0.0014906598218106728,-0.0004490414217577575,0.0027551022395917607,-0.0013353142623756292,-0.005158105950089501,-0.00028647907224457845,-0.002595450686726327,-0.0014956633027915479,-0.002547930502899461,-0.0011156502881716297,0.0023849411846280535,-0.002118381826027936,-0.002368660060541421,0.0007297875691658704,0.0005719895000248396,-0.004105438827340258,-0.003696502360291301,8.019497034134559e-05,-0.0049883698356805155,-0.0030762087807911886,-0.003011755743124881,-0.0036166726821686905,-0.005435675581080715,-0.0036426922960935623,-0.0025878306670863733,-0.003400288274155355,-0.0056957169104806145,-0.005467034171656184,-0.00806376576091798,-0.004150924165041987,-0.0026459168410108112,-0.00027643311281296944,0.0007985547474570543,-0.002913656860955831,-0.006478216944989335,-0.0010010135137429545,-0.0014429513392450453,-0.0008467208921799372,-0.0008059290494294985,0.000608868986632762
+52.424828,4.893025,0.0013481664866622362,-0.0016768785056312237,-0.000970012778529941,0.0006208768166899998,0.0008388654499007612,0.00017746496165479153,-0.00182499671514876,-0.00010555836036931822,0.0010682681833389038,-0.0010283402120744695,-0.0009629614792395309,-0.0005659911201517031,-0.0013107380414714652,0.00646382511351044,-0.002076400395509035,0.0034822032437012767,-0.0036922388292433125,-0.0006634149892639335,-0.0012089366541188046,-0.0010797838895838974,-0.0003093401781893272,-0.0023490414217577577,0.0005551022395917605,-0.0018353142623756293,-0.004658105950089501,0.0033135209277554215,-0.0023954506867263268,-9.566330279154789e-05,-0.0036479305028994614,0.0005843497118283702,0.0001849411846280537,-0.0022183818260279363,-0.0025686600605414212,0.0001297875691658705,-0.0024280104999751606,-0.002005438827340259,-0.002496502360291301,-0.002919805029658654,-0.0032883698356805154,-0.0041762087807911885,-0.002711755743124881,-0.0033166726821686906,-0.004835675581080715,-0.004842692296093563,-0.002187830667086373,-0.0035002882741553554,-0.0021957169104806144,-0.002967034171656184,-0.00636376576091798,-0.0010509241650419874,-0.0006459168410108114,-0.0005764331128129694,9.85547474570543e-05,-0.003913656860955831,-0.004778216944989335,-0.0003010135137429545,-0.003342951339245045,-0.002246720892179937,-0.0021059290494294986,-0.000891131013367238
+52.424847,4.892851,0.003548166486662236,0.006523121494368776,-0.001170012778529941,-0.0001791231833100002,0.0001388654499007613,0.00047746496165479153,0.0018750032848512401,0.0003944416396306818,0.007568268183338904,-0.0015283402120744695,0.00043703852076046914,0.000734008879848297,-0.0006107380414714651,-0.0002361748864895595,-0.0007764003955090351,0.0026822032437012764,-0.0009922388292433124,-0.0007634149892639335,-8.936654118804556e-06,0.0004202161104161028,0.0014906598218106728,0.0002509585782422426,0.0035551022395917606,0.0014646857376243705,-0.004258105950089501,0.0027135209277554216,0.00010454931327367339,0.0009043366972084522,-0.004047930502899461,0.0015843497118283702,0.0013849411846280537,0.0020816181739720637,-0.0022686600605414213,0.0008297875691658705,0.0022719895000248395,0.0016945611726597413,-0.000196502360291301,-1.9805029658654457e-05,-0.0013883698356805156,-0.0034762087807911884,0.001388244256875119,-0.0015166726821686904,-0.0007356755810807151,-4.2692296093562636e-05,-0.0002878306670863733,9.971172584464496e-05,-0.0013957169104806143,-0.0009670341716561839,-0.0031637657609179803,0.0020490758349580125,0.0017540831589891886,0.004923566887187031,0.0023985547474570544,-0.0015136568609558309,-0.0005782169449893352,-0.0001010135137429546,0.0007570486607549547,-0.00014672089217993717,0.0032940709505705013,0.0038088689866327616
+52.424914,4.892242,0.0016481664866622363,-0.005276878505631224,-0.0007700127785299409,-7.912318331000016e-05,-0.00026113455009923873,-0.0011225350383452085,-0.005924996715148761,0.0012944416396306817,0.0006682681833389038,-0.0029283402120744697,0.0007370385207604692,0.001134008879848297,-1.0738041471465142e-05,-0.0025361748864895593,-0.0014764003955090351,0.004982203243701276,0.0007077611707566875,0.00033658501073606647,0.0016910633458811952,-0.0007797838895838971,0.0021906598218106726,-0.0025490414217577573,0.0004551022395917605,0.0024646857376243703,-0.002458105950089501,0.004513520927755421,0.0011045493132736733,-0.004095663302791547,-0.005547930502899461,0.0022843497118283703,-0.0011150588153719463,-0.0008183818260279361,-0.0010686600605414216,-0.0004702124308341295,-0.00782801049997516,-0.0029054388273402586,-0.000296502360291301,-0.0023198050296586543,-0.0011883698356805156,-0.004676208780791188,0.00038824425687511893,-0.0013166726821686905,-0.001535675581080715,-0.012342692296093562,0.0006121693329136267,-0.001900288274155355,0.00010428308951938566,-0.0039670341716561835,-0.00166376576091798,0.0010490758349580125,-0.0007459168410108115,-0.0026764331128129692,-0.0014014452525429458,-0.0026136568609558307,-0.003378216944989335,-0.004001013513742955,-0.004542951339245045,-0.0059467208921799375,-0.005505929049429498,-0.004291131013367238
+52.42431,4.897453,-0.0010518335133377639,-0.0030768785056312234,-0.0007700127785299409,-7.912318331000016e-05,-0.0004611345500992387,-0.0017225350383452084,-0.00222499671514876,0.0020944416396306816,0.0005682681833389038,-0.0035283402120744696,-0.0004629614792395308,0.001934008879848297,8.926195852853482e-05,0.0011638251135104405,-0.0002764003955090352,-0.005117796756298723,0.0008077611707566876,0.0006365850107360664,0.0029910633458811956,0.002820216110416103,0.004490659821810673,0.004450958578242242,-0.0011448977604082396,0.0008646857376243706,-0.004658105950089501,0.0026135209277554214,-0.0035954506867263264,0.003304336697208452,0.0033520694971005387,-0.002815650288171629,0.002984941184628054,-0.0015183818260279362,0.0009313399394585786,0.0018297875691658705,0.0020719895000248395,-5.438827340258556e-06,-0.004596502360291301,0.0015801949703413457,-0.0049883698356805155,-0.002976208780791189,0.0020882442568751188,-0.0018166726821686905,-0.002835675581080715,-0.003942692296093562,0.0010121693329136266,0.0006997117258446448,0.0021042830895193856,-0.009667034171656184,-0.00976376576091798,0.0018490758349580124,0.0016540831589891886,0.0003235668871870306,0.0018985547474570544,0.00018634313904416903,-0.0026782169449893352,-0.0026010135137429545,-0.0032429513392450452,-0.002446720892179937,-0.0012059290494294986,0.002308868986632762
+52.424884,4.89248,0.002648166486662236,0.0019231214943687767,0.0005299872214700591,-0.0009791231833100001,-0.0033611345500992387,-0.0017225350383452084,-0.00022499671514876007,-5.558360369318171e-06,0.002968268183338904,-0.00042834021207446957,-0.0008629614792395309,0.000834008879848297,-0.0012107380414714652,-0.0037361748864895594,-0.002776400395509035,0.004282203243701276,-0.0009922388292433124,-0.0006634149892639335,-0.00020893665411880454,0.001020216110416103,0.001890659821810673,-0.004349041421757758,-0.0026448977604082396,0.00046468573762437055,-0.000658105950089501,0.0008135209277554214,-9.545068672632659e-05,-0.002395663302791548,-0.003547930502899461,0.0017843497118283703,-0.0019150588153719463,-0.0032183818260279363,-0.0008686600605414214,-0.0007702124308341296,-0.0030280104999751605,-0.007305438827340259,-0.0017965023602913009,-0.004519805029658654,-0.0017883698356805156,-0.004876208780791189,-0.001011755743124881,-0.0006166726821686906,-0.002035675581080715,-0.0020426922960935625,0.00041216933291362656,-0.00010028827415535513,-0.0009957169104806143,-0.004667034171656184,-0.00396376576091798,-0.0005509241650419874,-0.00024591684101081144,-0.0019764331128129696,-0.0013014452525429456,-0.003013656860955831,-0.0031782169449893352,-0.0020010135137429547,-0.002142951339245045,5.3279107820062804e-05,-0.0014059290494294987,0.000808868986632762
+52.424702,4.893957,0.0017481664866622361,-0.0009768785056312236,-0.001570012778529941,-0.0008791231833100003,-0.0011611345500992386,-0.003722535038345209,-0.00252499671514876,-0.002105558360369318,-0.0006317318166610963,-0.004728340212074469,-0.0014629614792395307,-0.001965991120151703,-0.002710738041471465,-0.0034361748864895594,-0.003976400395509035,-0.0001177967562987235,-0.004892238829243312,-0.0020634149892639333,-0.0024089366541188042,-0.00027978388958389724,0.0008906598218106728,-0.0030490414217577574,0.0002551022395917606,-0.0020353142623756293,-0.005058105950089501,0.0008135209277554214,-0.0023954506867263268,-0.002895663302791548,-0.002747930502899461,-0.0001156502881716297,-0.002115058815371946,-0.0015183818260279362,-0.0017686600605414213,0.0009297875691658705,-0.0021280104999751607,0.0007945611726597412,0.0009034976397086991,-0.0017198050296586545,-0.0049883698356805155,-0.008376208780791188,-0.0015117557431248811,-0.0008166726821686905,-0.001835675581080715,-0.005242692296093562,-0.0035878306670863733,-0.0018002882741553553,-0.0034957169104806144,-0.0020670341716561838,-0.0061637657609179795,0.0006490758349580126,-0.00024591684101081144,-0.0020764331128129694,-0.0031014452525429453,-0.0026136568609558307,-0.003578216944989335,-0.0018010135137429544,-0.0014429513392450453,-0.0025467208921799373,-0.0035059290494294988,-0.001891131013367238
+52.424793,4.893133,0.0037481664866622364,0.0010231214943687765,0.001629987221470059,0.0008208768166899998,0.003138865449900761,0.0009774649616547915,-0.00042499671514876,0.0020944416396306816,0.003468268183338904,-0.0009283402120744696,0.0009370385207604693,0.002734008879848297,0.0015892619585285348,-0.00013617488648955947,-0.0004764003955090351,0.0023822032437012764,0.0005077611707566877,-0.0010634149892639335,0.0018910633458811953,0.001020216110416103,0.0015906598218106728,-0.0027490414217577574,0.0022551022395917606,0.0026646857376243704,-0.002058105950089501,0.004513520927755421,0.0019045493132736732,-0.0015956633027915477,0.00045206949710053883,0.0017843497118283703,0.0001849411846280537,0.0010816181739720637,-0.0008686600605414214,0.0002297875691658705,0.0015719895000248394,0.0021945611726597414,0.000803497639708699,-0.0005198050296586544,0.0003116301643194845,-0.005676208780791189,-0.0008117557431248811,-1.667268216869056e-05,-0.001635675581080715,-0.004142692296093563,0.0011121693329136267,-0.0005002882741553551,-0.0012957169104806142,-0.000867034171656184,-0.0031637657609179803,0.0016490758349580125,0.0010540831589891885,0.0011235668871870305,-0.002001445252542946,-0.0031136568609558307,-0.002278216944989335,0.006298986486257045,0.00035704866075495477,-0.0017467208921799371,0.0002940709505705015,0.0004088689866327619
+52.424885,4.892355,0.0004481664866622362,-0.0011768785056312236,-0.003970012778529941,-0.00047912318331000013,-0.00036113455009923866,-0.004022535038345209,-0.00472499671514876,-0.0003055583603693182,-3.173181666109607e-05,-0.0030283402120744696,-0.003862961479239531,-0.0031659911201517028,-0.003710738041471465,-0.005836174886489559,-0.002076400395509035,-0.0035177967562987234,-0.003992238829243312,-0.0031634149892639336,-0.0030089366541188045,-0.0038797838895838974,0.00029065982181067287,-0.004349041421757758,-0.0013448977604082397,-0.0008353142623756296,-0.0102581059500895,-0.0010864790722445784,-0.0035954506867263264,-0.0054956633027915475,-0.005347930502899461,0.0010843497118283702,-0.0012150588153719464,-0.003618381826027936,-0.0007686600605414214,-0.0018702124308341294,-0.00392801049997516,-0.004805438827340259,-0.000796502360291301,-0.0015198050296586544,-0.005188369835680515,-0.0041762087807911885,-0.002511755743124881,-0.0034166726821686904,-0.004235675581080715,-0.009742692296093562,0.005412169332913626,-0.006900288274155355,-0.005095716910480615,-0.005567034171656183,-0.00576376576091798,-0.0015509241650419874,0.0011540831589891885,-0.0007764331128129695,-0.0008014452525429458,-0.004713656860955831,-0.003778216944989335,-0.0030010135137429547,-0.0043429513392450455,-0.004346720892179937,-0.004805929049429498,-0.0054911310133672385
+52.424942,4.891848,0.004048166486662236,0.0019231214943687767,0.001029987221470059,0.0018208768166899998,0.002538865449900761,-0.0014225350383452085,0.0004750032848512399,0.0017944416396306817,0.0036682681833389037,0.0002716597879255304,-0.00406296147923953,-6.599112015170309e-05,-0.003010738041471465,0.0016638251135104405,-0.002176400395509035,0.0018822032437012764,-0.0032922388292433123,-0.0023634149892639332,-0.0024089366541188042,-0.0021797838895838972,0.0016906598218106729,0.0002509585782422426,0.0038551022395917605,0.0002646857376243705,-0.005858105950089501,0.0030135209277554215,-0.0017954506867263265,0.0007043366972084521,-0.0017479305028994612,-0.0008156502881716298,0.0020849411846280536,0.0010816181739720637,0.0022313399394585784,0.0020297875691658706,-0.00032801049997516045,0.0011945611726597413,-0.0030965023602913012,8.019497034134559e-05,-0.0036883698356805156,-0.0016762087807911886,-0.00041175574312488116,-0.00401667268216869,-0.001535675581080715,-0.0011426922960935625,-0.002887830667086373,-0.0028002882741553553,-0.0032957169104806143,-0.000767034171656184,-0.00526376576091798,-0.0005509241650419874,-0.0014459168410108113,0.0022235668871870306,0.002298554747457054,-0.0010136568609558309,0.00032178305501066477,-0.00020101351374295459,0.0005570486607549546,-0.00044672089217993714,0.0013940709505705013,0.00030886898663276194
+52.424341,4.897045,0.0013481664866622362,0.0026231214943687763,-0.000970012778529941,0.00102087681669,-0.00016113455009923868,0.00037746496165479154,-0.0016249967151487602,9.444163963068177e-05,0.0011682681833389038,-0.0021283402120744694,-0.0004629614792395308,-6.599112015170309e-05,-0.0009107380414714652,-0.0014361748864895594,0.0005235996044909648,0.0019822032437012763,-0.0006922388292433124,3.6585010736066444e-05,0.00019106334588119548,0.0006202161104161028,0.002290659821810673,-0.0016490414217577574,-0.0007448977604082394,0.0011646857376243706,-0.002158105950089501,0.0018135209277554214,-0.0007954506867263266,-0.002395663302791548,-0.00044793050289946114,-1.5650288171629653e-05,-0.0025150588153719463,-0.0025183818260279362,-0.0006686600605414213,-0.0010702124308341295,-0.0001280104999751604,-0.0005054388273402586,-0.001496502360291301,-0.0038198050296586548,-0.0039883698356805155,-0.005976208780791189,-0.0007117557431248811,-0.0019166726821686904,-0.003035675581080715,-0.0032426922960935626,0.0005121693329136266,-0.001700288274155355,-0.0024957169104806143,-0.001467034171656184,-0.00446376576091798,-0.0003509241650419875,-0.0006459168410108114,-0.00547643311281297,-0.0026014452525429457,-0.003413656860955831,-0.003878216944989335,-0.0005010135137429547,-0.004842951339245045,-0.001546720892179937,-0.0009059290494294986,0.000808868986632762
+52.424812,4.892896,0.0015481664866622362,-0.00047687850563122355,0.000929987221470059,0.0025208768166899995,-0.00026113455009923873,-0.0006225350383452085,-0.0016249967151487602,-0.001505558360369318,0.0009682681833389037,-0.0029283402120744697,-0.002962961479239531,-0.001965991120151703,-0.003810738041471465,-0.0025361748864895593,-0.004776400395509035,-0.0031177967562987232,-0.0027922388292433123,-0.0016634149892639336,-0.0019089366541188042,-0.002779783889583897,-0.0007093401781893269,-0.0009490414217577575,5.510223959176051e-05,-0.00013531426237562945,-0.008258105950089502,-0.0036864790722445783,-0.0019954506867263266,-0.0002956633027915479,-0.002747930502899461,-0.0005156502881716299,0.0003849411846280536,-0.001118381826027936,-0.004168660060541422,-0.0020702124308341293,0.0020719895000248395,-0.00040543882734025874,-0.004796502360291301,-0.002919805029658654,-0.004588369835680515,-0.004276208780791189,-0.004511755743124881,0.0010833273178313095,-0.0043356755810807154,-0.0050426922960935625,-0.0017878306670863736,-0.004500288274155355,-0.006795716910480614,-0.002767034171656184,-0.00646376576091798,-0.003550924165041987,-0.002945916841010812,0.0022235668871870306,-0.002301445252542946,-0.002013656860955831,-0.0052782169449893356,-0.0007010135137429545,-0.0014429513392450453,-0.00044672089217993714,-5.92904942949853e-06,-0.0009911310133672382
+52.424909,4.89195,0.003548166486662236,-0.0018768785056312237,0.002229987221470059,0.00392087681669,0.003938865449900761,0.00047746496165479153,0.0012750032848512398,0.0003944416396306818,0.006668268183338905,-0.0022283402120744696,0.002837038520760469,0.001434008879848297,0.0006892619585285348,0.0022638251135104403,0.0018235996044909648,0.003582203243701276,-0.0022922388292433123,0.0011365850107360664,0.0022910633458811955,0.002020216110416103,0.005590659821810673,0.0013509585782422427,0.0029551022395917603,-0.002635314262375629,-0.002658105950089501,0.005013520927755422,0.0023045493132736734,0.002104336697208452,-4.7930502899461126e-05,0.00418434971182837,0.004184941184628054,0.001881618173972064,0.0015313399394585787,0.0006297875691658704,-0.00032801049997516045,0.0018945611726597414,0.002103497639708699,0.0019801949703413457,-0.0007883698356805156,0.0012237912192088114,0.0018882442568751187,0.0013833273178313094,0.002264324418919285,0.0007573077039064373,0.0012121693329136265,-2.882741553550828e-07,0.0018042830895193857,0.001232965828343816,-0.0007637657609179801,0.0040490758349580125,0.0021540831589891883,0.0036235668871870304,0.002898554747457054,0.002586343139044169,-0.0005782169449893352,0.003398986486257045,0.00045704866075495476,0.001953279107820063,-0.0008059290494294985,-0.0002911310133672381
+52.424929,4.891723,0.0006481664866622362,-0.0010768785056312236,-0.003370012778529941,0.0013208768166899998,3.88654499007613e-05,-0.0008225350383452084,-0.00252499671514876,-0.00010555836036931822,0.0011682681833389038,-0.00962834021207447,-0.002362961479239531,0.001534008879848297,-0.00021073804147146515,-0.00573617488648956,-0.002376400395509035,0.0013822032437012764,-0.0015922388292433124,-0.0022634149892639334,-0.0010089366541188045,-0.0005797838895838973,0.00029065982181067287,-0.004149041421757757,-0.0007448977604082394,0.0018646857376243705,-0.004358105950089501,0.0019135209277554215,-9.545068672632659e-05,-0.003095663302791548,-0.00524793050289946,0.0011843497118283702,-0.0023150588153719462,-0.001918381826027936,-0.0007686600605414214,-0.0005702124308341295,-0.0030280104999751605,-0.0033054388273402588,-0.0022965023602913013,-0.004219805029658654,-0.0017883698356805156,-0.004476208780791189,-0.0015117557431248811,-0.0009166726821686906,-0.0036356755810807153,-0.003942692296093562,-0.0009878306670863734,-0.001000288274155355,-0.0029957169104806143,-0.003867034171656184,-0.00326376576091798,-0.0013509241650419873,-0.00024591684101081144,-0.0009764331128129695,-0.00020144525254294572,-0.003013656860955831,-0.004478216944989335,-0.0021010135137429545,-0.002842951339245045,-0.003446720892179937,-0.0015059290494294985,-0.001891131013367238
+52.424845,4.892425,0.003148166486662236,-0.0009768785056312236,-0.000970012778529941,0.0016208768166899997,-0.0004611345500992387,0.0006774649616547915,-0.00192499671514876,0.0007944416396306818,-0.0005317318166610961,-0.0019283402120744697,-0.0014629614792395307,0.000634008879848297,-0.001410738041471465,-0.0015361748864895595,-0.001376400395509035,0.0005822032437012765,-0.0007922388292433125,-0.0019634149892639335,-0.0011089366541188047,-0.0001797838895838972,0.002090659821810673,-0.0009490414217577575,0.0019551022395917603,-0.0020353142623756293,-0.004758105950089501,0.003213520927755421,-0.0006954506867263265,-0.001395663302791548,-0.004447930502899461,0.0014843497118283702,0.0011849411846280536,-0.001118381826027936,-0.0010686600605414216,0.0018297875691658705,-0.0033280104999751604,-0.0038054388273402588,-0.0025965023602913012,-0.0020198050296586544,-0.0037883698356805154,-0.004576208780791189,-0.001611755743124881,0.0022833273178313094,-0.002735675581080715,-0.0011426922960935625,-8.783066708637345e-05,-0.0018002882741553553,-0.0015957169104806144,-0.003067034171656184,-0.00306376576091798,0.00024907583495801253,0.00025408315898918857,-7.643311281296935e-05,0.0005985547474570543,-0.002313656860955831,-0.002978216944989335,0.0010989864862570454,0.002257048660754955,-0.001946720892179937,-5.92904942949853e-06,0.0004088689866327619
+52.424885,4.892075,0.0008481664866622363,0.0025231214943687765,-0.000670012778529941,0.00022087681668999976,3.88654499007613e-05,0.00047746496165479153,-0.00212499671514876,0.0002944416396306818,0.0010682681833389038,-0.0034283402120744693,-0.0006629614792395308,-0.00026599112015170297,-0.0012107380414714652,-0.0030361748864895597,-0.0004764003955090351,0.0034822032437012767,-0.0005922388292433124,-0.0008634149892639334,0.0020910633458811954,0.0021202161104161028,0.002690659821810673,-0.004049041421757758,0.0008551022395917604,0.0022646857376243707,-0.0025581059500895008,0.0031135209277554214,0.0011045493132736733,-0.003195663302791548,-0.004547930502899461,0.0003843497118283703,-0.0009150588153719463,-0.002818381826027936,-0.0002686600605414215,-0.0005702124308341295,-0.0011280104999751603,-0.0028054388273402583,-0.000196502360291301,-0.004419805029658655,-0.0014883698356805155,-0.004776208780791189,-0.0012117557431248812,-0.0013166726821686905,-0.002635675581080715,-0.003942692296093562,-0.0015878306670863735,-0.003400288274155355,-0.0008957169104806144,-0.005567034171656183,-0.00396376576091798,-5.092416504198739e-05,0.0003540831589891885,0.0006235668871870306,-0.0021014452525429453,-0.003313656860955831,-0.001978216944989335,-0.0011010135137429545,-0.003842951339245045,-0.0006467208921799373,-0.0011059290494294985,-0.000591131013367238
+52.424942,4.891552,0.0007481664866622362,-0.0006768785056312236,-0.002070012778529941,-0.00077912318331,-0.0011611345500992386,-0.0011225350383452085,-0.00182499671514876,-0.0003055583603693182,-0.00023173181666109616,0.0011716597879255304,-0.0017629614792395308,-0.0009659911201517031,-0.0010107380414714651,-0.0015361748864895595,-0.002476400395509035,0.0006822032437012764,-0.0008922388292433124,-0.0021634149892639336,-0.0007089366541188044,-0.001779783889583897,0.0008906598218106728,-0.0035490414217577574,-0.0008448977604082397,6.468573762437053e-05,-0.004158105950089501,0.0018135209277554214,-0.0002954506867263266,-0.0017956633027915478,-0.004347930502899461,0.0007843497118283703,-0.0018150588153719464,-0.0022183818260279363,-0.0019686600605414214,2.97875691658705e-05,-0.0012280104999751605,-0.0011054388273402586,-0.000896502360291301,-0.0027198050296586545,-0.0011883698356805156,-0.0035762087807911886,-0.00041175574312488116,-0.0015166726821686904,-0.001935675581080715,-0.004542692296093563,-0.0008878306670863734,-0.0011002882741553551,-0.0031957169104806144,-0.0036670341716561836,-0.00406376576091798,-0.0020509241650419874,-0.0007459168410108115,-0.0021764331128129692,-0.0009014452525429456,-0.003713656860955831,-0.002478216944989335,-0.002901013513742955,-0.002142951339245045,-0.0013467208921799372,-0.0038059290494294987,0.004008868986632762
+52.424966,4.891317,0.0018481664866622362,-0.00027687850563122356,-0.000670012778529941,0.0019208768166899997,-0.0013611345500992387,0.0005774649616547916,-0.0009249967151487601,0.0017944416396306817,-0.0007317318166610962,-0.0048283402120744695,0.00043703852076046914,0.002434008879848297,0.001389261958528535,-0.002836174886489559,-0.001376400395509035,0.004182203243701277,0.0017077611707566876,0.0013365850107360665,0.0033910633458811954,0.0019202161104161027,0.0028906598218106727,0.0005509585782422425,0.00535510223959176,0.0031646857376243704,-0.001758105950089501,0.0036135209277554214,0.0023045493132736734,0.0008043366972084521,-0.0014479305028994613,0.00448434971182837,0.0028849411846280535,0.001381618173972064,0.0009313399394585786,-0.0009702124308341295,0.0007719895000248395,-0.0017054388273402587,0.001303497639708699,-0.0037198050296586545,-0.0002883698356805155,-0.004376208780791188,0.0008882442568751189,0.0007833273178313093,-3.5675581080715e-05,-0.0023426922960935624,0.0005121693329136266,0.0003997117258446449,0.0007042830895193856,-0.000867034171656184,-0.0008637657609179802,0.0014490758349580126,0.0015540831589891885,0.0008235668871870306,-1.4452525429457406e-06,0.0002863431390441691,-0.002078216944989335,0.0014989864862570454,0.0010570486607549548,0.002153279107820063,0.0011940709505705014,0.0019088689866327618
+52.424998,4.891105,0.003348166486662236,0.0028231214943687764,0.0004299872214700591,0.0018208768166899998,0.0011388654499007614,0.0015774649616547914,-0.00112499671514876,0.0024944416396306818,0.0017682681833389039,-0.0012283402120744696,0.0014370385207604693,0.003134008879848297,0.0014892619585285347,0.0002638251135104405,0.0001235996044909648,0.004582203243701277,0.0018077611707566874,0.0024365850107360663,0.0031910633458811957,0.0034202161104161027,0.0034906598218106726,-0.0012490414217577574,0.0021551022395917604,0.0034646857376243708,-0.001258105950089501,0.004113520927755422,0.0020045493132736735,-0.0004956633027915478,-0.002347930502899461,0.004384349711828371,-0.0009150588153719463,-1.8381826027936195e-05,0.0014313399394585784,0.0025297875691658706,0.0025719895000248395,-0.0015054388273402586,0.001303497639708699,-0.0016198050296586544,0.00021163016431948443,-0.002476208780791189,0.0004882442568751189,0.0015833273178313095,0.000964324418919285,-0.0004426922960935626,0.0011121693329136267,0.0012997117258446449,0.0005042830895193856,-0.000567034171656184,-0.0013637657609179802,0.0005490758349580126,0.0017540831589891886,0.0018235668871870304,0.002298554747457054,0.0002863431390441691,-0.0003782169449893352,0.0002989864862570454,-0.0003429513392450452,-0.00014672089217993717,0.0014940709505705013,0.002308868986632762
+52.42422,4.897786,0.0010481664866622362,0.0005231214943687765,-0.0012700127785299409,-0.0006791231833100002,-0.0022611345500992384,-0.0039225350383452085,-0.0026249967151487598,-0.0009055583603693183,0.0038682681833389037,-0.0023283402120744695,-0.0015629614792395307,0.002334008879848297,-0.00021073804147146515,0.00036382511351044054,0.00022359960449096485,0.00038220324370127646,0.0014077611707566876,0.0021365850107360664,0.0014910633458811956,0.0043202161104161025,0.0005906598218106728,-0.0006490414217577575,0.0019551022395917603,0.00016468573762437057,-0.001958105950089501,0.0030135209277554215,0.0004045493132736734,-0.004095663302791547,-0.0036479305028994614,-0.00401565028817163,-0.0022150588153719464,-0.005218381826027936,-0.0002686600605414215,0.00452978756916587,0.0012719895000248395,0.0018945611726597414,-0.000496502360291301,-0.0021198050296586547,-0.0015883698356805155,-0.006976208780791188,0.002488244256875119,0.0026833273178313096,-0.003935675581080715,-0.0033426922960935624,0.0009121693329136266,0.002599711725844645,0.0009042830895193856,-0.003867034171656184,-0.00206376576091798,-0.0002509241650419875,0.003754083158989188,-0.0023764331128129693,-0.0036014452525429458,-0.005613656860955831,-0.003478216944989335,-0.0023010135137429546,-0.003142951339245045,-0.002946720892179937,-0.004305929049429498,-0.002291131013367238
+52.424696,4.893605,0.002648166486662236,-0.005276878505631224,0.001429987221470059,0.00022087681668999976,-0.0028611345500992383,-0.0024225350383452085,-0.0005249967151487601,-0.0013055583603693182,0.003968268183338904,-0.0017283402120744696,-0.0016629614792395308,0.001334008879848297,-0.00021073804147146515,-0.00013617488648955947,0.0017235996044909648,0.004582203243701277,-0.0005922388292433124,-6.341498926393349e-05,0.0010910633458811954,0.0003202161104161028,0.0034906598218106726,0.0022509585782422422,0.0029551022395917603,0.0023646857376243705,-0.001958105950089501,0.0043135209277554215,0.0010045493132736735,0.0004043366972084521,-0.01144793050289946,0.0015843497118283702,0.0016849411846280536,8.161817397206385e-05,0.0012313399394585786,-0.0024702124308341295,0.0006719895000248395,9.456117265974127e-05,-0.001896502360291301,-0.0022198050296586545,-0.0019883698356805155,-0.0028762087807911885,-0.0014117557431248809,0.0009833273178313094,-0.001335675581080715,0.0035573077039064375,0.003112169332913627,-0.0006002882741553551,0.00010428308951938566,0.0009329658283438161,-0.00306376576091798,0.0027490758349580126,0.0014540831589891885,0.002823566887187031,0.0016985547474570543,-0.0006136568609558309,-0.0026782169449893352,-0.0028010135137429546,0.0014570486607549547,0.0008532791078200627,0.00019407095057050148,0.0002088689866327619
+52.424937,4.891503,0.0017481664866622361,0.0017231214943687766,-0.00037001277852994095,0.00202087681669,0.0004388654499007613,-0.0011225350383452085,-0.00212499671514876,0.0010944416396306818,0.0038682681833389037,0.004171659787925531,0.00013703852076046917,-0.000765991120151703,-0.0007107380414714652,-0.0020361748864895597,-0.0017764003955090353,0.0034822032437012767,-0.0017922388292433123,-0.0003634149892639335,0.00019106334588119548,-0.0011797838895838972,0.0016906598218106729,-0.0025490414217577573,0.0016551022395917604,0.0006646857376243705,-0.001658105950089501,0.003213520927755421,0.00030454931327367343,-0.001695663302791548,-0.002047930502899461,0.0014843497118283702,-0.00041505881537194634,-0.0006183818260279361,0.0012313399394585786,0.0012297875691658704,0.00037198950002483955,0.0010945611726597415,-0.000196502360291301,-0.0034198050296586546,-0.0018883698356805154,-0.0035762087807911886,-1.1755743124881087e-05,-0.00021667268216869057,-0.001635675581080715,-0.0009426922960935626,-0.0011878306670863733,-0.0016002882741553552,-0.0016957169104806142,-0.0035670341716561842,-0.00236376576091798,0.0005490758349580126,0.00015408315898918852,0.0003235668871870306,0.0017985547474570543,-0.001213656860955831,-0.0008782169449893352,-0.0003010135137429545,0.0002570486607549547,-0.0002467208921799372,-0.004005929049429498,0.003608868986632762
+52.424692,4.893551,0.0027481664866622364,-0.0010768785056312236,-0.0004700127785299409,0.00152087681669,-0.00036113455009923866,-0.0012225350383452086,-0.00132499671514876,9.444163963068177e-05,0.0023682681833389037,-0.0013283402120744697,-0.0001629614792395308,0.002534008879848297,0.0006892619585285348,0.00036382511351044054,0.0007235996044909648,0.003982203243701276,0.0010077611707566875,0.0019365850107360665,0.0032910633458811955,0.0024202161104161027,0.004590659821810673,5.0958578242242536e-05,0.0034551022395917603,0.0038646857376243705,-0.0013581059500895009,0.004513520927755421,0.0011045493132736733,-0.0009956633027915478,-0.001047930502899461,0.0013843497118283703,-0.0005150588153719463,-0.0009183818260279362,-0.0003686600605414214,0.0001297875691658705,-0.0023280104999751604,-0.0024054388273402586,-0.0012965023602913009,-0.0024198050296586546,-0.0028883698356805157,-0.0035762087807911886,-0.001811755743124881,8.332731783130944e-05,-0.0008356755810807151,-0.0007426922960935626,0.003112169332913627,0.001199711725844645,0.0010042830895193857,3.29658283438161e-05,-0.0012637657609179801,0.0029490758349580122,0.0022540831589891886,0.0023235668871870304,0.0010985547474570542,-0.000713656860955831,-0.001778216944989335,-0.0011010135137429545,-0.0017429513392450452,-0.001046720892179937,-0.0015059290494294985,-0.0016911310133672379
+52.424899,4.891811,-0.003951833513337764,-7.687850563122355e-05,-0.005770012778529941,-0.00597912318331,-0.002161134550099239,-0.004322535038345209,-0.00642499671514876,-0.0038055583603693183,0.0033682681833389037,-0.014728340212074469,-0.00566296147923953,-0.005365991120151703,-0.007110738041471465,-0.006836174886489559,-0.0071764003955090356,-0.002117796756298723,-0.006092238829243313,-0.0067634149892639335,-0.0036089366541188048,-0.004979783889583897,-0.003009340178189327,-0.005949041421757758,-0.007144897760408239,-0.00493531426237563,-0.0073581059500895,-0.0019864790722445786,-0.006395450686726326,-0.005195663302791548,-0.005647930502899461,-0.0029156502881716295,-0.004615058815371946,-0.0069183818260279365,-0.005568660060541422,-0.005470212430834129,-0.0024280104999751606,-0.0055054388273402585,-0.005696502360291301,-0.0060198050296586545,-0.006688369835680516,-0.007676208780791189,-0.0053117557431248815,-0.005916672682168691,-0.0060356755810807156,-0.0050426922960935625,-0.006087830667086374,-0.007700288274155355,-0.004995716910480614,-0.006767034171656184,-0.00706376576091798,-0.003250924165041987,-0.0034459168410108116,-0.00487643311281297,-0.004101445252542945,-0.007713656860955831,-0.006978216944989336,-0.004601013513742955,-0.006042951339245046,-0.006646720892179937,-0.006305929049429498,-0.004091131013367238
+52.424956,4.891267,0.0034481664866622365,-0.0011768785056312236,-0.000670012778529941,0.00282087681669,-0.0011611345500992386,0.0023774649616547915,0.0026750032848512403,0.0026944416396306814,0.004168268183338904,0.0007716597879255304,0.003337038520760469,0.002634008879848297,0.0012892619585285349,-0.0002361748864895595,0.0014235996044909649,0.004782203243701277,0.002107761170756688,0.002936585010736067,0.0028910633458811954,0.0013202161104161028,0.002690659821810673,-4.904142175775751e-05,0.0030551022395917606,0.004464685737624371,-0.00035810595008950105,0.006013520927755421,0.002704549313273673,0.0005043366972084522,-0.0012479305028994612,0.004384349711828371,0.0025849411846280536,0.0010816181739720637,0.0003313399394585786,0.0014297875691658705,0.0021719895000248397,9.456117265974127e-05,0.001703497639708699,-0.0013198050296586543,0.0015116301643194846,-0.0011762087807911888,0.001688244256875119,0.0014833273178313094,0.0002643244189192849,-0.0018426922960935626,0.0022121693329136263,0.0013997117258446447,-9.571691048061435e-05,0.001432965828343816,-0.0014637657609179802,-0.0007509241650419875,0.004054083158989188,0.0025235668871870305,0.002898554747457054,0.00048634313904416895,0.0008217830550106648,0.0022989864862570453,0.002257048660754955,0.001753279107820063,0.0012940709505705015,0.005308868986632762
+52.424695,4.893499,0.00014816648666223626,-0.0029768785056312236,-0.001470012778529941,0.0009208768166899999,-0.0018611345500992385,-0.004122535038345208,-0.00242499671514876,-0.0010055583603693183,0.0009682681833389037,-0.0030283402120744696,-0.0013629614792395306,0.0021340088798482973,0.00028926195852853483,-0.0014361748864895594,-0.001376400395509035,0.002582203243701276,0.0009077611707566876,0.0022365850107360667,0.0026910633458811957,0.0019202161104161027,0.00019065982181067282,-0.004049041421757758,-0.0006448977604082396,0.0022646857376243707,-0.004958105950089501,0.0012135209277554216,-0.0005954506867263265,-0.004095663302791547,-0.003347930502899461,-0.0004156502881716296,-0.005315058815371946,-0.003618381826027936,-0.003968660060541421,-0.0034702124308341295,-0.00522801049997516,-0.0038054388273402588,-0.0030965023602913012,-0.0037198050296586545,-0.004188369835680515,-0.004576208780791189,-0.0035117557431248807,-0.00031667268216869056,-0.0002356755810807151,-0.004342692296093562,0.0013121693329136265,-0.0005002882741553551,-0.0013957169104806143,-0.002467034171656184,-0.00356376576091798,0.0017490758349580126,0.00025408315898918857,0.0006235668871870306,-0.0004014452525429456,-0.002313656860955831,-0.002778216944989335,-0.0020010135137429547,-0.0019429513392450453,-0.005846720892179937,-0.007005929049429498,-0.006891131013367238
+52.424697,4.893463,0.0015481664866622362,-0.0020768785056312234,-0.001370012778529941,-0.00027912318331000025,-0.0007611345500992386,-0.0020225350383452083,-0.00112499671514876,-0.0012055583603693182,0.001968268183338904,-0.0009283402120744696,-0.0002629614792395308,0.0021340088798482973,0.0008892619585285349,-0.0002361748864895595,-0.0009764003955090352,0.0030822032437012765,0.0003077611707566876,0.0011365850107360664,0.0026910633458811957,0.0009202161104161029,0.0014906598218106728,-0.0032490414217577574,0.0016551022395917604,0.0011646857376243706,-0.004358105950089501,0.0029135209277554213,0.00010454931327367339,-0.002095663302791548,-0.001547930502899461,0.00028434971182837027,-0.0012150588153719464,-0.0008183818260279361,-0.0013686600605414215,-0.0022702124308341294,-0.0038280104999751604,-0.0037054388273402585,-0.001696502360291301,-0.0022198050296586545,-0.0035883698356805153,-0.004276208780791189,-0.002311755743124881,0.0013833273178313094,0.001464324418919285,-0.0036426922960935623,0.0023121693329136266,0.0003997117258446449,-0.0012957169104806142,-0.002167034171656184,-0.0024637657609179802,0.00024907583495801253,0.0008540831589891886,0.0010235668871870305,-0.0004014452525429456,-0.003313656860955831,-0.0031782169449893352,-0.0008010135137429546,-0.002942951339245045,-0.002846720892179937,-0.0035059290494294988,-0.0033911310133672382
+52.424704,4.893419,0.002348166486662236,-0.0011768785056312236,-0.001170012778529941,0.0007208768166899999,-0.0006611345500992386,-0.0029225350383452085,-0.00042499671514876,-0.00040555836036931824,0.0023682681833389037,-0.0018283402120744694,-0.0004629614792395308,0.002734008879848297,8.926195852853482e-05,-0.00033617488648955956,2.359960449096484e-05,0.004282203243701276,0.0018077611707566874,0.0019365850107360665,0.0037910633458811955,0.002520216110416103,0.003690659821810673,-0.0016490414217577574,-4.489776040823932e-05,0.0030646857376243706,-0.0035581059500895008,0.0029135209277554213,-0.0004954506867263267,-0.003595663302791548,-0.005647930502899461,-0.00021565028817162974,-0.0012150588153719464,-0.0014183818260279362,-0.0012686600605414213,-0.0011702124308341293,-0.0038280104999751604,-0.0037054388273402585,-0.002996502360291301,-0.0038198050296586548,-0.004188369835680515,-0.0038762087807911886,-0.003311755743124881,-0.0004166726821686905,-0.001035675581080715,-0.003942692296093562,0.0030121693329136267,0.0007997117258446448,-0.0015957169104806144,-0.0017670341716561839,-0.00116376576091798,0.0013490758349580126,0.0007540831589891886,0.0007235668871870306,-0.00020144525254294572,-0.0019136568609558308,-0.002278216944989335,-0.0025010135137429547,-0.003342951339245045,-0.0025467208921799373,-0.0027059290494294984,-0.0034911310133672385
+52.424704,4.893392,0.0011481664866622363,-0.0022768785056312235,-0.001070012778529941,-0.0005791231833100002,-0.0013611345500992387,-0.0023225350383452087,-0.00222499671514876,-0.0009055583603693183,0.001968268183338904,-0.0021283402120744694,-0.0005629614792395308,0.002034008879848297,-0.00021073804147146515,-0.0004361748864895596,-0.00017640039550903517,0.0036822032437012764,7.761170756687662e-06,0.0010365850107360666,0.0026910633458811957,0.0011202161104161027,0.0023906598218106727,-0.0011490414217577574,0.0024551022395917603,0.0021646857376243704,-0.003058105950089501,0.003213520927755421,-0.00019545068672632664,-0.0009956633027915478,-0.002247930502899461,0.00018434971182837022,-0.0017150588153719464,-0.002318381826027936,-0.0019686600605414214,-0.0015702124308341295,-0.0034280104999751602,-0.0032054388273402585,-0.0022965023602913013,-0.004219805029658654,-0.0036883698356805156,-0.004476208780791189,-0.002911755743124881,-0.0010166726821686904,-0.001535675581080715,-0.0020426922960935625,0.0023121693329136266,0.0007997117258446448,-0.0010957169104806143,-0.001067034171656184,-0.0024637657609179802,0.0016490758349580125,0.0006540831589891885,0.0015235668871870305,-0.0004014452525429456,-0.0031136568609558307,-0.003278216944989335,-0.002401013513742955,-0.0037429513392450453,-0.0035467208921799373,-0.003905929049429499,-0.0037911310133672384
+52.424714,4.893315,0.0005481664866622362,-0.0037768785056312235,-0.001370012778529941,-0.0009791231833100001,-0.0011611345500992386,-0.0019225350383452085,-0.00332499671514876,-0.0012055583603693182,0.001368268183338904,-0.0028283402120744695,-0.0010629614792395307,0.000834008879848297,-0.0010107380414714651,-0.0011361748864895595,-0.0007764003955090351,0.002282203243701276,-0.0009922388292433124,0.0006365850107360664,0.0017910633458811955,0.0007202161104161028,0.002490659821810673,-0.0020490414217577573,0.0008551022395917604,0.0013646857376243705,-0.004158105950089501,0.0023135209277554214,-0.0002954506867263266,-0.0017956633027915478,-0.004147930502899461,0.0005843497118283702,0.00048494118462805364,-0.0020183818260279362,-0.0017686600605414213,-0.0012702124308341294,-0.0031280104999751603,-0.0032054388273402585,-0.002996502360291301,-0.0034198050296586546,-0.004588369835680515,-0.005076208780791189,-0.002911755743124881,-0.0020166726821686906,-0.0029356755810807152,-0.004442692296093563,0.0007121693329136266,-0.0011002882741553551,-0.0019957169104806143,-0.002867034171656184,-0.0045637657609179805,4.9075834958012656e-05,-0.0011459168410108114,2.3566887187030693e-05,-0.002001445252542946,-0.003813656860955831,-0.004878216944989335,-0.0031010135137429545,-0.004142951339245046,-0.0038467208921799372,-0.0036059290494294986,-0.0030911310133672383
+52.424879,4.891895,0.002848166486662236,-0.004176878505631224,2.998722147005907e-05,0.0012208768166899998,-0.0010611345500992388,-0.0014225350383452085,-2.4996715148759984e-05,0.0005944416396306818,0.001368268183338904,-0.0027283402120744696,-0.0009629614792395309,-6.599112015170309e-05,-0.0008107380414714651,-0.0015361748864895595,-0.0007764003955090351,0.0015822032437012765,-0.0017922388292433123,-0.0016634149892639336,-0.0004089366541188045,-0.001579783889583897,0.0011906598218106728,-0.0012490414217577574,0.0018551022395917605,0.0002646857376243705,-0.003458105950089501,0.0018135209277554214,-0.0029954506867263266,0.0005043366972084522,-0.002747930502899461,0.0011843497118283702,0.0006849411846280536,-0.001718381826027936,-0.003668660060541421,0.0016297875691658706,-0.0014280104999751604,-0.00020543882734025865,-0.001496502360291301,-0.0001198050296586544,-0.0027883698356805154,-0.0019762087807911888,-0.002011755743124881,-0.0033166726821686906,-0.001635675581080715,-0.0002426922960935625,-0.002887830667086373,-0.003300288274155355,-0.0031957169104806144,-0.002467034171656184,-0.00376376576091798,-0.0003509241650419875,0.0007540831589891886,0.0011235668871870305,0.0016985547474570543,-0.00041365686095583097,-0.0036782169449893353,-0.0016010135137429545,-0.0010429513392450453,-0.0003467208921799372,0.0008940709505705015,0.00030886898663276194
+52.42473,4.893124,-0.0002518335133377637,-0.0035768785056312234,-0.002870012778529941,-0.00177912318331,-0.0016611345500992388,-0.0025225350383452083,-0.0032249967151487596,-0.0016055583603693184,0.0014682681833389037,-0.0037283402120744692,-0.002362961479239531,-0.0005659911201517031,-0.002310738041471465,-0.00443617488648956,-0.003176400395509035,0.0019822032437012763,-0.0019922388292433124,-0.0016634149892639336,-0.00020893665411880454,-0.0013797838895838973,-0.0008093401781893272,-0.004149041421757757,0.00035510223959176043,-0.00033531426237562955,-0.005158105950089501,0.0015135209277554215,-0.0026954506867263267,-0.002195663302791548,-0.004547930502899461,-0.0011156502881716297,-0.002615058815371946,-0.004018381826027937,-0.0035686600605414217,-0.0034702124308341295,-0.0035280104999751605,-0.0033054388273402588,-0.003496502360291301,-0.005219805029658654,-0.004188369835680515,-0.006376208780791188,-0.004211755743124881,-0.004516672682168691,-0.004735675581080715,-0.007142692296093562,-0.0016878306670863733,-0.0039002882741553547,-0.005895716910480614,-0.005567034171656183,-0.00756376576091798,-0.0019509241650419876,-0.0031459168410108117,-0.0007764331128129695,-0.0005014452525429456,-0.003513656860955831,-0.007778216944989335,-0.0020010135137429547,-0.004242951339245045,-0.004546720892179937,-0.0036059290494294986,-0.005691131013367238
+52.424733,4.8931,0.0008481664866622363,-0.0023768785056312233,-0.001370012778529941,-0.0009791231833100001,-0.0011611345500992386,-0.0022225350383452084,-0.00302499671514876,-0.0014055583603693183,0.001368268183338904,-0.0025283402120744695,-0.0016629614792395308,0.000334008879848297,-0.001410738041471465,-0.0019361748864895594,-0.002376400395509035,0.0016822032437012763,-0.0014922388292433124,-0.0012634149892639334,0.00019106334588119548,-0.0005797838895838973,0.000490659821810673,-0.0024490414217577575,5.510223959176051e-05,0.0010646857376243705,-0.004758105950089501,0.0024135209277554213,-0.0010954506867263264,-0.002095663302791548,-0.002847930502899461,0.00018434971182837022,-0.0019150588153719463,-0.001718381826027936,-0.0024686600605414214,-0.0015702124308341295,-0.0026280104999751603,-0.0033054388273402588,-0.0030965023602913012,-0.0036198050296586542,-0.004388369835680516,-0.004976208780791189,-0.0034117557431248813,-0.0026166726821686905,-0.003235675581080715,-0.002842692296093563,-0.0007878306670863733,-0.002600288274155355,-0.002895716910480614,-0.002767034171656184,-0.00496376576091798,-0.0006509241650419874,-0.00024591684101081144,-0.0012764331128129695,-0.0016014452525429455,-0.003813656860955831,-0.004878216944989335,-0.002701013513742955,-0.003642951339245045,-0.003346720892179937,-0.0029059290494294985,-0.0030911310133672383
+52.424739,4.893004,-0.00015183351333776388,-0.0025768785056312234,-0.002070012778529941,-0.0009791231833100001,-0.0017611345500992387,-0.0039225350383452085,-0.00372499671514876,-0.002305558360369318,-0.0005317318166610961,-0.00362834021207447,-0.002762961479239531,-0.0009659911201517031,-0.002310738041471465,-0.0037361748864895594,-0.002676400395509035,0.0005822032437012765,-0.0018922388292433126,-0.0024634149892639335,-0.0014089366541188047,-0.0031797838895838973,-0.000909340178189327,-0.004649041421757758,-0.0018448977604082393,-0.0008353142623756296,-0.005358105950089501,0.00011352092775542152,-0.0016954506867263267,-0.002495663302791548,-0.0059479305028994605,-0.0014156502881716296,-0.0024150588153719465,-0.003818381826027936,-0.0026686600605414215,-0.0037702124308341294,-0.0035280104999751605,-0.004805438827340259,-0.004296502360291301,-0.005219805029658654,-0.006488369835680515,-0.007676208780791189,-0.0056117557431248815,-0.0033166726821686906,-0.005135675581080715,-0.004742692296093563,-0.0015878306670863735,-0.002700288274155355,-0.0037957169104806143,-0.0032670341716561843,-0.00576376576091798,-0.0022509241650419875,-0.002545916841010812,-0.0025764331128129694,-0.0031014452525429453,-0.001413656860955831,-0.005478216944989335,-0.004801013513742955,-0.006042951339245046,-0.005346720892179937,-0.004305929049429498,-0.0057911310133672384
+52.424965,4.891063,0.002648166486662236,0.0025231214943687765,0.0006299872214700591,0.0011208768166899997,0.0024388654499007613,0.0026774649616547914,0.0003750032848512399,0.0018944416396306817,0.004668268183338904,-0.00022834021207446958,-0.0002629614792395308,0.001334008879848297,-0.0006107380414714651,0.0010638251135104406,-0.0010764003955090352,0.004082203243701277,-0.0010922388292433124,0.0008365850107360665,0.0026910633458811957,0.001020216110416103,0.002690659821810673,0.0014509585782422425,0.0008551022395917604,0.0020646857376243706,-0.0018581059500895009,0.0028135209277554214,0.0014045493132736734,-0.0009956633027915478,-0.0008479305028994612,0.00378434971182837,0.0025849411846280536,-0.00041838182602793616,-0.0007686600605414214,-0.0013702124308341294,0.0005719895000248396,-5.438827340258556e-06,0.0007034976397086991,-0.00021980502965865438,0.0003116301643194845,-0.0007762087807911887,0.0001882442568751189,0.0012833273178313096,-0.0014356755810807152,0.005257307703906438,0.0005121693329136266,-2.882741553550828e-07,-0.0017957169104806142,-0.001567034171656184,-0.00166376576091798,-0.0005509241650419874,0.0012540831589891886,0.003123566887187031,0.0014985547474570542,-0.00041365686095583097,-0.0015782169449893354,-0.0016010135137429545,-0.0012429513392450452,0.0018532791078200628,0.0008940709505705015,-0.0011911310133672379
+52.424979,4.890953,0.002148166486662236,0.005623121494368776,2.998722147005907e-05,0.0012208768166899998,0.0008388654499007612,0.0012774649616547915,-2.4996715148759984e-05,0.0015944416396306818,0.003768268183338904,7.165978792553034e-05,0.0003370385207604692,0.0016340088798482968,0.0015892619585285348,-0.00013617488648955947,-0.0003764003955090352,0.004582203243701277,0.0006077611707566875,0.0010365850107360666,0.0019910633458811956,0.0024202161104161027,0.002090659821810673,-0.0008490414217577574,0.0012551022395917604,0.0037646857376243707,-0.0005581059500895009,0.0036135209277554214,0.0007045493132736734,-0.001195663302791548,0.0016520694971005386,0.0036843497118283705,-0.00011505881537194632,-0.0007183818260279362,-0.0007686600605414214,0.0007297875691658704,0.0016719895000248397,0.0003945611726597414,0.001403497639708699,-0.0009198050296586543,1.1630164319484447e-05,-0.0022762087807911887,0.0008882442568751189,0.0012833273178313096,-0.0006356755810807151,0.0004573077039064374,0.0008121693329136265,0.002599711725844645,4.283089519385657e-06,-0.000567034171656184,-0.00226376576091798,0.0022490758349580126,0.004354083158989189,0.0006235668871870306,0.0007985547474570543,-0.002313656860955831,-0.0009782169449893351,0.0021989864862570455,0.002957048660754955,-0.004646720892179937,0.0013940709505705013,0.003608868986632762
+52.424441,4.895537,0.0013481664866622362,-0.0022768785056312235,0.002629987221470059,-0.0023791231833100003,-0.0022611345500992384,-0.0031225350383452086,-0.0026249967151487598,-0.0017055583603693182,0.00026826818333890385,-0.0031283402120744694,-0.0018629614792395307,0.005334008879848297,0.00038926195852853477,0.0014638251135104404,0.0007235996044909648,0.0053822032437012765,0.005307761170756688,0.004536585010736067,0.006691063345881195,0.006820216110416103,0.006390659821810673,0.0018509585782422427,0.0061551022395917605,0.005064685737624371,-0.000958105950089501,0.004713520927755422,0.0006045493132736734,-0.002995663302791548,-0.004147930502899461,-0.0012156502881716295,-0.0011150588153719463,-0.004318381826027937,-0.0016686600605414215,-0.0015702124308341295,-0.0034280104999751602,-0.0035054388273402584,-0.001696502360291301,-0.0038198050296586548,-0.0049883698356805155,-0.007576208780791188,-0.002311755743124881,-0.0011166726821686904,-0.005135675581080715,-0.0014426922960935626,0.005212169332913626,0.0033997117258446454,0.0019042830895193857,0.000832965828343816,0.0006362342390820197,0.0033490758349580124,0.0013540831589891886,-0.0017764331128129695,0.0007985547474570543,-0.005813656860955831,-0.003078216944989335,-0.0059010135137429545,-0.008842951339245045,-0.003646720892179937,-0.007005929049429498,-0.004191131013367239
+52.424446,4.895491,-0.0004518335133377638,-0.004276878505631224,-0.00037001277852994095,-0.00047912318331000013,-0.0023611345500992387,-0.0006225350383452085,-0.00132499671514876,-0.0003055583603693182,0.00016826818333890402,-0.0021283402120744694,0.0010370385207604691,0.004434008879848296,0.00028926195852853483,0.002463825113510441,0.0018235996044909648,0.004082203243701277,0.0032077611707566874,0.004336585010736066,0.005091063345881195,0.004120216110416103,0.005490659821810673,-0.0038490414217577573,0.0034551022395917603,0.0038646857376243705,-0.0007581059500895009,0.0043135209277554215,0.0017045493132736736,-0.0007956633027915479,-0.0006479305028994611,0.0017843497118283703,-0.0019150588153719463,-0.0022183818260279363,-0.0017686600605414213,-0.0037702124308341294,-0.00662801049997516,-0.0014054388273402585,0.000303497639708699,-0.0019198050296586543,-0.0025883698356805153,-0.00907620878079119,-0.003111755743124881,-0.0017166726821686905,-0.0029356755810807152,-0.0026426922960935623,0.0023121693329136266,0.002599711725844645,0.00030428308951938564,-0.001267034171656184,-0.0034637657609179803,0.0037490758349580126,5.408315898918848e-05,-0.0006764331128129694,-0.0039014452525429457,-0.006713656860955831,-0.002478216944989335,-0.003701013513742955,-0.005142951339245046,-0.002946720892179937,-0.004205929049429498,-0.003291131013367238
+52.424745,4.892906,0.0017481664866622361,-0.0008768785056312235,-0.001570012778529941,-0.0011791231833100002,-0.0007611345500992386,-0.0013225350383452084,-0.0028249967151487603,-0.0009055583603693183,0.0009682681833389037,-0.004028340212074469,-0.0013629614792395306,-0.00016599112015170292,-0.00041073804147146516,-0.0024361748864895594,-0.001976400395509035,0.0024822032437012767,-0.0015922388292433124,-0.0019634149892639335,-8.936654118804556e-06,-0.0013797838895838973,0.002290659821810673,-0.0010490414217577575,0.0010551022395917605,0.0014646857376243705,-0.001458105950089501,0.0038135209277554215,0.0007045493132736734,-0.0002956633027915479,-0.003847930502899461,0.00318434971182837,-0.0016150588153719463,-0.001118381826027936,-0.0017686600605414213,-0.0018702124308341294,-0.00222801049997516,-0.003005438827340259,-0.001096502360291301,-0.0022198050296586545,-0.0034883698356805155,-0.004676208780791188,-0.0009117557431248812,-0.0006166726821686906,-0.001335675581080715,-0.0037426922960935626,-0.0007878306670863733,-0.003100288274155355,-0.003095716910480614,-0.004067034171656184,-0.00396376576091798,0.0008490758349580126,-0.0012459168410108112,2.3566887187030693e-05,-0.0007014452525429457,-0.0019136568609558308,-0.003478216944989335,-0.0019010135137429547,-0.003542951339245045,-0.0008467208921799372,-0.0017059290494294986,-0.001091131013367238
+52.424917,4.891373,0.00034816648666223613,0.0048231214943687765,0.000929987221470059,-7.912318331000016e-05,-0.0013611345500992387,-0.0030225350383452083,-0.00472499671514876,-0.0009055583603693183,-0.004931731816661096,-0.005928340212074469,-0.0012629614792395308,-0.001265991120151703,0.0009892619585285347,-0.0037361748864895594,0.0015235996044909647,0.0009822032437012765,0.0004077611707566876,-0.0007634149892639335,0.0019910633458811956,-0.0021797838895838972,-0.0001093401781893271,-0.0030490414217577574,-0.0038448977604082393,0.0034646857376243708,-0.005258105950089501,0.0007135209277554214,-0.0017954506867263265,-0.005895663302791548,-0.005547930502899461,0.0003843497118283703,-0.0019150588153719463,-0.005918381826027936,-0.0022686600605414213,-0.0018702124308341294,0.0023719895000248394,-0.003005438827340259,-0.001696502360291301,-0.004319805029658654,-0.0033883698356805157,-0.004476208780791189,-0.003611755743124881,-0.0010166726821686904,-0.002735675581080715,-0.0024426922960935626,-0.0010878306670863735,-0.0009002882741553551,-0.0019957169104806143,-0.005867034171656183,-0.00516376576091798,0.0015490758349580125,0.0017540831589891886,-0.0027764331128129695,-0.002001445252542946,-0.006813656860955831,-0.0008782169449893352,-0.004701013513742955,-0.0019429513392450453,-0.004146720892179937,-0.005305929049429498,-0.004091131013367238
+52.425052,4.890185,0.0007481664866622362,-0.0018768785056312237,-0.001870012778529941,0.0005208768166899998,-0.0006611345500992386,7.746496165479157e-05,-0.00342499671514876,0.00019444163963068176,-0.00013173181666109634,-0.0029283402120744697,-0.0018629614792395307,0.001034008879848297,-0.0016107380414714652,-0.0015361748864895595,-0.002376400395509035,0.0023822032437012764,-0.0007922388292433125,0.0008365850107360665,0.0011910633458811954,0.001020216110416103,0.0016906598218106729,-0.0029490414217577575,0.0026551022395917604,0.0013646857376243705,-0.0035581059500895008,0.0022135209277554216,-0.0004954506867263267,-0.0012956633027915478,-0.0026479305028994614,-0.0005156502881716299,-0.0008150588153719463,-0.0022183818260279363,-0.002868660060541421,-0.0025702124308341293,-0.0015280104999751605,-0.002705438827340259,-0.0017965023602913009,-0.004519805029658654,-0.0019883698356805155,-0.005276208780791189,-0.0012117557431248812,-0.0011166726821686904,-0.002635675581080715,-0.0032426922960935626,-0.0012878306670863736,-0.0015002882741553551,-0.0017957169104806142,-0.0023670341716561837,-0.00416376576091798,-0.0007509241650419875,-0.0003459168410108115,-0.0013764331128129693,-0.002001445252542946,-0.003813656860955831,-0.004678216944989336,-0.0028010135137429546,-0.0032429513392450452,-0.0025467208921799373,-0.0030059290494294988,-0.002691131013367238
+52.424409,4.895747,-0.00035183351333776375,-0.0033768785056312233,-0.001570012778529941,-0.0009791231833100001,-0.0026611345500992386,-0.0031225350383452086,-0.00212499671514876,-0.0013055583603693182,0.002768268183338904,-0.0012283402120744696,-0.0009629614792395309,0.004934008879848297,8.926195852853482e-05,0.0010638251135104406,-0.0008764003955090352,0.004682203243701276,0.0026077611707566875,0.005636585010736066,0.006791063345881195,0.004720216110416103,0.004390659821810673,-0.0010490414217577575,0.00405510223959176,0.0013646857376243705,-0.004158105950089501,0.00041352092775542144,-0.0016954506867263267,-0.003695663302791548,-0.001847930502899461,-0.0018156502881716298,-0.0012150588153719464,-0.004318381826027937,-0.0026686600605414215,-0.0035702124308341293,-0.0028280104999751604,-0.0029054388273402586,-0.003196502360291301,-0.0036198050296586542,-0.005888369835680515,-0.006276208780791189,-0.004011755743124882,-0.0023166726821686905,-0.0037356755810807147,-0.004842692296093563,0.004212169332913626,0.001999711725844645,0.00020428308951938567,-0.002967034171656184,-0.00436376576091798,-0.0007509241650419875,-0.0015459168410108116,-0.0010764331128129694,-0.0032014452525429456,-0.0065136568609558305,-0.003478216944989335,-0.004401013513742955,-0.004542951339245045,-0.004646720892179937,-0.0038059290494294987,-0.0033911310133672382
+52.424414,4.895706,0.0002481664866622363,-0.0031768785056312233,0.0008299872214700591,-0.0018791231833100003,-0.0019611345500992385,-0.0031225350383452086,-0.00062499671514876,0.0005944416396306818,0.0021682681833389036,-0.0015283402120744695,3.7038520760469205e-05,0.006634008879848297,0.0014892619585285347,0.0006638251135104405,0.0006235996044909648,0.002882203243701276,0.0039077611707566875,0.003336585010736066,0.007091063345881195,0.004820216110416103,0.003290659821810673,-0.0027490414217577574,0.0022551022395917606,0.0023646857376243705,-0.002158105950089501,0.0012135209277554216,-0.0007954506867263266,-0.0022956633027915478,-0.004247930502899461,-0.0011156502881716297,-0.0024150588153719465,-0.004518381826027936,-0.0016686600605414215,-0.0029702124308341295,-0.0034280104999751602,-0.0035054388273402584,-0.0017965023602913009,-0.005419805029658654,-0.005588369835680515,-0.007376208780791189,-0.002611755743124881,-0.0004166726821686905,-0.002835675581080715,-0.0040426922960935625,0.005412169332913626,0.002199711725844645,0.0010042830895193857,-0.001567034171656184,-0.0045637657609179805,0.0024490758349580127,-0.0009459168410108113,-0.0005764331128129694,-0.0021014452525429453,-0.005413656860955831,-0.004878216944989335,-0.0017010135137429546,-0.004842951339245045,-0.004846720892179937,-0.005405929049429498,-0.0044911310133672385
+52.424419,4.895668,0.0008481664866622363,-0.004176878505631224,-0.001170012778529941,-0.0009791231833100001,-0.002761134550099239,-0.0014225350383452085,-0.00232499671514876,-0.0012055583603693182,0.002068268183338904,-0.0021283402120744694,-0.0005629614792395308,0.003734008879848297,-0.00041073804147146516,-0.0004361748864895596,2.359960449096484e-05,0.0021822032437012764,0.0018077611707566874,0.003036585010736066,0.004091063345881195,0.002820216110416103,0.002690659821810673,-0.003449041421757757,0.0002551022395917606,0.00046468573762437055,-0.004058105950089501,0.00041352092775542144,-0.0011954506867263267,-0.004795663302791547,-0.004247930502899461,-0.0023156502881716296,-0.0016150588153719463,-0.004018381826027937,-0.0034686600605414214,-0.0025702124308341293,-0.0040280104999751605,-0.004005438827340259,-0.0025965023602913012,-0.0037198050296586545,-0.004588369835680515,-0.0074762087807911885,-0.004111755743124881,-0.0019166726821686904,-0.0043356755810807154,-0.004642692296093562,0.0023121693329136266,0.0015997117258446448,-0.0009957169104806143,-0.0023670341716561837,-0.0038637657609179804,-0.0020509241650419874,-0.0017459168410108113,-0.0021764331128129692,-0.004401445252542945,-0.006313656860955831,-0.005378216944989336,-0.005601013513742955,-0.006042951339245046,-0.004846720892179937,-0.006605929049429498,-0.0054911310133672385
+52.424747,4.892798,-0.0010518335133377639,-0.005376878505631224,-0.004270012778529941,-0.0011791231833100002,-0.002461134550099239,-0.005122535038345208,-0.00502499671514876,-0.003005558360369318,-0.002031731816661096,-0.006628340212074469,-0.00506296147923953,-0.004065991120151703,-0.005010738041471465,-0.00603617488648956,-0.006676400395509035,-0.002717796756298724,-0.006592238829243312,-0.0057634149892639335,-0.003908936654118805,-0.005479783889583897,-0.003009340178189327,-0.008549041421757757,-0.0036448977604082397,-0.0019353142623756295,-0.007958105950089502,0.0018135209277554214,-0.0040954506867263265,-0.007195663302791548,-0.005647930502899461,-0.00341565028817163,-0.0029150588153719465,-0.0025183818260279362,-0.0038686600605414216,-0.0039702124308341295,-0.0031280104999751603,-0.00790543882734026,-0.006996502360291301,-0.007919805029658654,-0.005888369835680515,-0.006076208780791188,-0.007011755743124882,-0.0054166726821686904,-0.007535675581080715,-0.005842692296093562,-0.004687830667086374,-0.0068002882741553545,-0.004895716910480614,-0.0052670341716561835,-0.00756376576091798,-0.004550924165041987,-0.005145916841010812,-0.0031764331128129697,-0.004601445252542946,-0.004813656860955831,-0.005778216944989335,-0.006301013513742955,-0.004942951339245045,-0.005046720892179937,-0.006305929049429498,-0.005291131013367238
+52.424759,4.892717,0.0010481664866622362,-0.0024768785056312236,-0.000970012778529941,-0.0005791231833100002,-0.0018611345500992385,-0.0028225350383452087,-0.00472499671514876,-0.0025055583603693183,-0.00023173181666109616,-0.005728340212074469,-0.0018629614792395307,-0.00026599112015170297,-0.002710738041471465,-0.00443617488648956,-0.0014764003955090351,0.0023822032437012764,-0.0032922388292433123,-0.0015634149892639335,-0.0006089366541188046,-0.001579783889583897,0.0006906598218106728,-0.003749041421757757,-0.00014489776040823958,0.00046468573762437055,-0.003958105950089501,0.0015135209277554215,-0.0003954506867263266,-0.0041956633027915476,-0.004247930502899461,-0.0006156502881716297,-0.00031505881537194634,-0.0014183818260279362,-0.0031686600605414215,-0.0027702124308341294,-0.00532801049997516,-0.004805438827340259,-0.0041965023602913015,-0.005419805029658654,-0.0049883698356805155,-0.006376208780791188,-0.005111755743124881,-0.0025166726821686906,-0.005535675581080715,-0.007142692296093562,-0.0030878306670863737,-0.004900288274155355,-0.0043957169104806145,-0.003467034171656184,-0.0061637657609179795,-0.002850924165041988,-0.0021459168410108117,-0.0018764331128129693,-0.0025014452525429455,-0.004413656860955831,-0.005678216944989336,-0.002701013513742955,-0.005842951339245045,-0.005246720892179937,-0.005605929049429498,-0.004291131013367238
+52.424763,4.892675,0.002148166486662236,-0.0008768785056312235,-0.000970012778529941,0.0003208768166899998,0.0007388654499007613,0.0010774649616547916,-0.00252499671514876,-0.0003055583603693182,0.0003682681833389037,-0.0021283402120744694,0.0011370385207604692,0.003834008879848297,-0.0008107380414714651,-0.0012361748864895595,-0.002076400395509035,0.0018822032437012764,-0.0018922388292433126,-0.0009634149892639335,-0.0003089366541188046,-0.0009797838895838971,0.0007906598218106729,-0.0008490414217577574,0.0002551022395917606,-0.0007353142623756295,-0.003458105950089501,0.0038135209277554215,0.0004045493132736734,-0.001995663302791548,-0.002247930502899461,0.0014843497118283702,8.494118462805365e-05,-0.001218381826027936,0.0008313399394585786,0.0002297875691658705,-0.0037280104999751606,-0.0025054388273402584,-0.001096502360291301,-0.0027198050296586545,-0.0016883698356805156,-0.0035762087807911886,-0.0019117557431248809,-0.0013166726821686905,-0.002835675581080715,-0.004942692296093562,-0.00038783066708637337,-0.003700288274155355,-0.004195716910480614,-0.002667034171656184,-0.00546376576091798,0.004249075834958012,-0.003945916841010812,-0.004476433112812969,-0.0039014452525429457,-0.003513656860955831,-0.003478216944989335,-0.0031010135137429545,-0.0032429513392450452,-0.0038467208921799372,-0.0036059290494294986,-0.00019113101336723807
+52.424932,4.891191,-0.0002518335133377637,0.006623121494368776,-0.0008700127785299409,-0.0006791231833100002,0.007738865449900761,-0.0021225350383452086,-0.00072499671514876,0.0018944416396306817,0.007168268183338903,-0.0021283402120744694,-0.0020629614792395307,-0.000365991120151703,-0.002210738041471465,-0.0021361748864895595,-0.0010764003955090352,0.0012822032437012766,-0.0017922388292433123,-0.0024634149892639335,0.00019106334588119548,-0.0009797838895838971,0.0021906598218106726,-0.0027490414217577574,0.0017551022395917606,0.0008646857376243706,-0.004358105950089501,0.0014135209277554215,0.0010045493132736735,-0.001195663302791548,-0.0006479305028994611,0.0013843497118283703,0.0028849411846280535,-0.001618381826027936,-0.002368660060541421,-0.0004702124308341295,0.0021719895000248397,0.0019945611726597413,-9.6502360291301e-05,-0.0024198050296586546,-0.0015883698356805155,-0.011476208780791189,-0.0009117557431248812,-0.0020166726821686906,-0.002635675581080715,-0.0012426922960935625,-0.0009878306670863734,-0.002900288274155355,-0.0015957169104806144,-0.000767034171656184,-0.0029637657609179802,-0.0008509241650419873,0.00015408315898918852,0.00512356688718703,-0.0017014452525429458,-0.001613656860955831,-0.0006782169449893352,0.0008989864862570453,0.0008570486607549547,-0.0018467208921799372,-0.0023059290494294987,0.001208868986632762
+52.424956,4.890987,0.0037481664866622364,0.0014231214943687762,0.001929987221470059,0.0029208768166899997,0.0033388654499007615,0.0032774649616547913,0.00987500328485124,0.002594441639630682,0.002968268183338904,0.00037165978792553047,0.0014370385207604693,0.002334008879848297,0.0017892619585285349,0.0015638251135104407,0.00042359960449096475,0.005482203243701277,0.002407761170756688,0.002036585010736066,0.0029910633458811956,0.0021202161104161028,0.0034906598218106726,-0.00014904142175775755,0.0023551022395917605,0.005164685737624371,-0.000658105950089501,0.005013520927755422,0.0025045493132736735,0.0008043366972084521,-0.0032479305028994612,0.00508434971182837,0.0014849411846280536,0.0001816181739720639,0.0002313399394585786,0.0018297875691658705,0.0006719895000248395,-0.0007054388273402587,0.002903497639708699,0.0007801949703413456,0.0018116301643194845,-0.0008762087807911887,0.002988244256875119,0.0018833273178313094,0.0021643244189192847,-0.00034269229609356256,0.0009121693329136266,0.00029971172584464484,0.0006042830895193856,0.002532965828343816,-0.0004637657609179802,0.0032490758349580126,0.004354083158989189,0.004723566887187031,0.0013985547474570544,-0.0003136568609558309,0.0005217830550106648,0.0019989864862570454,-0.0022429513392450452,0.0014532791078200628,-0.0008059290494294985,0.004608868986632762
+52.42435,4.896169,-0.0009518335133377636,-0.0050768785056312235,-0.006270012778529941,-0.0026791231833100003,-0.005361134550099239,-0.005522535038345208,-0.0052249967151487605,-0.0010055583603693183,0.0010682681833389038,-0.00462834021207447,-0.0030629614792395308,-0.002765991120151703,-0.0018107380414714653,-0.005536174886489559,-0.005576400395509036,-0.0033177967562987238,-0.008092238829243313,-0.002663414989263933,-0.0053089366541188045,-0.004279783889583897,-0.003009340178189327,-0.006349041421757758,-0.0038448977604082393,-0.0019353142623756295,-0.006658105950089501,-0.0034864790722445786,-0.004195450686726326,-0.007095663302791547,-0.00524793050289946,-0.00441565028817163,-0.004015058815371946,-0.0046183818260279366,-0.0026686600605414215,-0.0020702124308341293,-0.00532801049997516,-0.0039054388273402586,-0.004596502360291301,-0.0050198050296586545,-0.005788369835680516,-0.005476208780791188,-0.003111755743124881,-0.0064166726821686905,-0.004435675581080715,-0.006942692296093562,-0.007987830667086374,-0.007400288274155355,-0.0046957169104806145,-0.005067034171656184,-0.00736376576091798,-0.0012509241650419875,-0.0024459168410108116,-0.0024764331128129696,-0.004301445252542946,-0.004113656860955831,-0.006878216944989335,-0.005101013513742955,-0.005042951339245046,-0.005146720892179937,-0.008605929049429499,-0.005891131013367239
+52.424365,4.896051,0.001248166486662236,-0.0027768785056312235,-0.003470012778529941,0.00022087681668999976,-0.0026611345500992386,-0.0020225350383452083,-0.00072499671514876,0.0007944416396306818,-0.001031731816661096,-0.0034283402120744693,-0.0001629614792395308,0.000634008879848297,-1.0738041471465142e-05,-0.0038361748864895596,-0.002076400395509035,-0.0001177967562987235,-0.0005922388292433124,3.6585010736066444e-05,-8.936654118804556e-06,2.0216110416102786e-05,-9.340178189327052e-06,-0.0026490414217577576,-0.0023448977604082397,0.00046468573762437055,-0.004658105950089501,0.0009135209277554214,-0.0019954506867263266,-0.003795663302791548,-0.0036479305028994614,-0.0013156502881716298,-0.002115058815371946,-0.003818381826027936,-0.002068660060541421,-0.0010702124308341295,-0.0032280104999751606,-0.0052054388273402585,-0.002996502360291301,-0.004419805029658655,-0.0024883698356805155,-0.007676208780791189,-0.0009117557431248812,-0.0021166726821686905,-0.005235675581080715,-0.004242692296093562,-0.00038783066708637337,-0.003000288274155355,-0.0009957169104806143,-0.0020670341716561838,-0.006263765760917981,-0.0007509241650419875,-0.0012459168410108112,-0.0023764331128129693,-0.004101445252542945,-0.003213656860955831,-0.005678216944989336,-0.0035010135137429547,-0.008042951339245045,-0.005346720892179937,-0.006105929049429498,-0.004991131013367238
+52.424372,4.895971,0.00014816648666223626,-0.0033768785056312233,-0.0016700127785299408,-0.00127912318331,-0.002161134550099239,-0.0022225350383452084,-0.00212499671514876,-0.0014055583603693183,0.0003682681833389037,-0.00422834021207447,-0.0013629614792395306,-0.001965991120151703,-0.0016107380414714652,-0.005236174886489559,-0.003776400395509035,-0.0023177967562987237,-0.0027922388292433123,-0.0034634149892639335,-0.0034089366541188043,-0.003679783889583897,-0.0015093401781893273,-0.0038490414217577573,-0.0016448977604082396,-0.0009353142623756294,-0.005058105950089501,0.0003135209277554214,-0.0027954506867263265,-0.003695663302791548,-0.002747930502899461,-0.0019156502881716296,-0.0033150588153719462,-0.004418381826027936,-0.0034686600605414214,-0.0032702124308341294,-0.0040280104999751605,-0.004305438827340259,-0.003196502360291301,-0.004919805029658654,-0.005688369835680516,-0.00907620878079119,-0.003011755743124881,-0.00401667268216869,-0.006135675581080715,-0.005542692296093562,-0.003487830667086374,-0.006900288274155355,-0.004095716910480615,-0.005367034171656184,-0.0068637657609179805,-0.0006509241650419874,-0.0021459168410108117,-0.003276433112812969,-0.0035014452525429455,-0.005013656860955831,-0.005978216944989336,-0.0049010135137429545,-0.004842951339245045,-0.004246720892179937,-0.004605929049429498,-0.0037911310133672384
+52.424393,4.895848,-0.0016518335133377637,-0.0047768785056312235,-0.003970012778529941,-0.0026791231833100003,-0.0029611345500992385,-0.0035225350383452083,-0.00372499671514876,0.0006944416396306818,0.003468268183338904,0.00037165978792553047,-0.0001629614792395308,0.004834008879848297,0.001989261958528535,0.0014638251135104404,0.0012235996044909648,0.002882203243701276,0.0026077611707566875,0.0012365850107360664,0.0032910633458811955,0.003620216110416103,0.0014906598218106728,-0.0027490414217577574,0.0013551022395917604,-0.0002353142623756295,-0.004758105950089501,0.0011135209277554213,-0.0024954506867263266,-0.005195663302791548,-0.004147930502899461,-0.0039156502881716295,-0.003615058815371946,-0.005318381826027936,-0.004068660060541422,-0.0031702124308341296,-0.0037280104999751606,-0.0031054388273402587,-0.0032965023602913013,-0.003519805029658654,-0.005388369835680516,-0.006676208780791188,-0.002911755743124881,-0.0011166726821686904,-0.002135675581080715,-0.004542692296093563,0.0006121693329136267,-0.001400288274155355,-0.004095716910480615,-0.003167034171656184,-0.0068637657609179805,-0.0018509241650419873,-0.0020459168410108114,-0.0027764331128129695,-0.004401445252542945,-0.005713656860955831,-0.006278216944989336,-0.004301013513742955,-0.006742951339245046,-0.005646720892179937,-0.006605929049429498,-0.005591131013367238
+52.424791,4.892317,0.0017481664866622361,-0.0013768785056312237,0.0008299872214700591,0.0018208768166899998,0.0011388654499007614,-0.00032253503834520845,-0.00332499671514876,0.0005944416396306818,0.003968268183338904,-0.0029283402120744697,-0.0004629614792395308,-0.000765991120151703,-0.0009107380414714652,-0.0027361748864895598,-0.010476400395509036,0.005082203243701277,-0.0016922388292433125,-0.0008634149892639334,0.00039106334588119546,-0.0014797838895838971,0.0023906598218106727,-0.0032490414217577574,0.0002551022395917606,0.0006646857376243705,-0.004658105950089501,0.0024135209277554213,0.00020454931327367338,-9.566330279154789e-05,-0.001547930502899461,0.00288434971182837,-0.004115058815371946,-0.0006183818260279361,0.0005313399394585786,2.97875691658705e-05,-0.0035280104999751605,-0.0021054388273402586,-0.000296502360291301,-0.0036198050296586542,-0.0030883698356805153,-0.005676208780791189,-0.003111755743124881,-0.0009166726821686906,-0.0040356755810807155,-0.004242692296093562,-0.0006878306670863735,-0.004100288274155355,-0.0019957169104806143,-0.003767034171656184,-0.00256376576091798,0.0019490758349580127,-0.0020459168410108114,0.0007235668871870306,-0.0008014452525429458,-0.0031136568609558307,-0.0031782169449893352,-0.0015010135137429545,-0.0019429513392450453,-0.004746720892179937,-0.003905929049429499,-0.001591131013367238
+52.424979,4.890701,0.0027481664866622364,-0.0008768785056312235,-0.002170012778529941,0.0011208768166899997,-0.00036113455009923866,-0.0015225350383452085,-0.00212499671514876,-0.0008055583603693182,0.001368268183338904,-0.0013283402120744697,-0.0013629614792395306,0.000634008879848297,-0.0011107380414714652,-0.0005361748864895594,-0.002476400395509035,0.0012822032437012766,-0.0008922388292433124,-0.0019634149892639335,-0.00010893665411880449,-0.001279783889583897,0.0011906598218106728,-0.0018490414217577575,0.0014551022395917605,0.0006646857376243705,-0.004158105950089501,0.0031135209277554214,-0.0003954506867263266,-0.001395663302791548,-0.004747930502899461,0.00048434971182837036,0.0005849411846280537,-0.001918381826027936,-0.0021686600605414215,0.0001297875691658705,-0.0015280104999751605,-0.004505438827340258,-0.000996502360291301,-0.0031198050296586547,-0.0022883698356805154,-0.0035762087807911886,-0.001311755743124881,-0.0013166726821686905,-0.002035675581080715,-0.0019426922960935626,-0.0010878306670863735,-0.001000288274155355,-0.0017957169104806142,-0.002967034171656184,-0.0045637657609179805,0.0009490758349580126,0.0022540831589891886,0.0008235668871870306,-0.0009014452525429456,-0.001813656860955831,-0.0018782169449893353,-0.0011010135137429545,-0.0022429513392450452,-0.0017467208921799371,-0.00040592904942949844,-0.001391131013367238
+52.425,4.890521,0.0027481664866622364,0.0029231214943687767,-0.00017001277852994086,0.00242087681669,0.0009388654499007613,-0.0008225350383452084,-0.00022499671514876007,-0.0006055583603693181,0.0031682681833389036,-0.00012834021207446954,-0.0013629614792395306,0.000634008879848297,-0.002010738041471465,-0.0023361748864895596,-0.002976400395509035,0.0008822032437012764,-0.0022922388292433123,-0.0020634149892639333,9.106334588119544e-05,-0.0014797838895838971,0.0011906598218106728,-0.0009490414217577575,0.0019551022395917603,0.0003646857376243705,-0.002358105950089501,0.0022135209277554216,4.549313273673455e-06,-0.0008956633027915479,-0.0008479305028994612,0.0016843497118283703,0.0018849411846280535,-0.00041838182602793616,3.133993945857855e-05,0.0005297875691658706,-0.0017280104999751603,-0.0024054388273402586,-0.000796502360291301,-0.009119805029658656,-0.0034883698356805155,-0.0019762087807911888,-0.003011755743124881,-0.0017166726821686905,-0.002535675581080715,0.0005573077039064374,-0.0011878306670863733,-0.0028002882741553553,-0.0008957169104806144,-0.001567034171656184,-0.00436376576091798,-0.0002509241650419875,-0.0003459168410108115,0.0020235668871870305,0.002998554747457054,0.000986343139044169,0.0011217830550106648,0.0008989864862570453,0.0002570486607549547,-0.002946720892179937,-0.0013059290494294986,-0.0006911310133672381
+52.425025,4.890308,0.0010481664866622362,-0.0006768785056312236,-0.0012700127785299409,-0.00027912318331000025,-0.0009611345500992387,-0.0014225350383452085,-0.00212499671514876,-0.0003055583603693182,0.0005682681833389038,-0.0024283402120744693,-0.0012629614792395308,0.000534008879848297,-0.0006107380414714651,-0.0022361748864895593,-0.0025764003955090348,0.0020822032437012765,-0.00029223882924331237,-6.341498926393349e-05,0.0010910633458811954,0.0004202161104161028,0.001390659821810673,-0.0017490414217577574,0.0010551022395917605,0.0006646857376243705,-0.0035581059500895008,0.0025135209277554215,-0.0003954506867263266,-0.002795663302791548,-0.0034479305028994613,0.0006843497118283702,-0.0015150588153719463,-0.0018183818260279361,-0.0021686600605414215,-0.0013702124308341294,-0.00222801049997516,-0.0028054388273402583,-0.001096502360291301,-0.0031198050296586547,-0.0025883698356805153,-0.0041762087807911885,-0.0007117557431248811,-0.0026166726821686905,-0.003235675581080715,-0.0037426922960935626,-0.0015878306670863735,-0.001900288274155355,-0.002595716910480614,-0.002767034171656184,-0.00336376576091798,-0.0015509241650419874,0.00045408315898918855,-0.0007764331128129695,-0.0016014452525429455,-0.003313656860955831,-0.003378216944989335,-0.0023010135137429546,-0.002642951339245045,-0.002846720892179937,-0.0028059290494294987,-0.001391131013367238
+52.425076,4.88987,-0.0005518335133377638,-0.0026768785056312232,-0.003170012778529941,-0.0005791231833100002,-0.0009611345500992387,-0.0008225350383452084,-0.00372499671514876,-0.002005558360369318,-0.001631731816661096,-0.00452834021207447,-0.004862961479239531,-0.004265991120151703,-0.005510738041471465,-0.005136174886489559,-0.004476400395509035,-0.0010177967562987236,-0.0049922388292433124,-0.0034634149892639335,-0.0020089366541188045,-0.0038797838895838974,-0.001909340178189327,-0.0052490414217577575,-0.002144897760408239,-0.0024353142623756295,-0.007458105950089501,0.0010135209277554215,-0.0060954506867263265,-0.0054956633027915475,-0.006447930502899461,-0.00151565028817163,-0.0024150588153719465,-0.003618381826027936,-0.0035686600605414217,-0.0035702124308341293,-0.00582801049997516,-0.0052054388273402585,-0.003396502360291301,-0.006219805029658654,-0.005088369835680516,-0.007976208780791189,-0.006411755743124882,-0.005216672682168691,-0.006235675581080714,-0.008642692296093563,-0.005087830667086374,-0.005600288274155355,-0.005195716910480614,-0.004867034171656184,-0.010263765760917979,-0.004450924165041987,-0.005445916841010812,-0.0033764331128129693,-0.005001445252542945,-0.006813656860955831,-0.007078216944989336,-0.004601013513742955,-0.004942951339245045,-0.006146720892179937,-0.004605929049429498,-0.002991131013367238
+52.424164,4.897753,0.0022481664866622363,0.00012312149436877645,-0.003270012778529941,0.0005208768166899998,0.0001388654499007613,-0.0012225350383452086,0.00017500328485124,-0.00010555836036931822,0.002568268183338904,-0.005428340212074469,-0.0012629614792395308,-0.00016599112015170292,-0.00041073804147146516,-0.0005361748864895594,-0.0008764003955090352,-0.0016177967562987234,-0.0013922388292433123,0.00033658501073606647,0.0011910633458811954,0.00022021611041610282,0.0010906598218106728,0.0026509585782422424,0.00015510223959176034,0.0008646857376243706,-0.003458105950089501,0.0007135209277554214,-0.0012954506867263265,0.0015043366972084522,0.0009520694971005388,-1.5650288171629653e-05,-0.0016150588153719463,-0.001618381826027936,-0.0011686600605414215,-0.0017702124308341294,0.0006719895000248395,-0.002705438827340259,-0.0012965023602913009,-0.0022198050296586545,-0.004088369835680516,-0.006876208780791189,-0.002711755743124881,-0.0012166726821686905,-0.005235675581080715,-0.003942692296093562,-0.0002878306670863733,-0.0003002882741553551,-0.0032957169104806143,-0.001967034171656184,-0.00416376576091798,-0.0008509241650419873,-0.0016459168410108114,-0.002976433112812969,-0.0006014452525429457,-0.0036136568609558307,-0.004178216944989335,-0.0011010135137429545,-0.002142951339245045,-0.0017467208921799371,-0.0028059290494294987,-0.002691131013367238
+52.424315,4.896422,-0.004951833513337764,-0.0047768785056312235,-0.0053700127785299406,-0.00287912318331,-0.003761134550099239,-0.0062225350383452085,-0.00672499671514876,-0.004305558360369318,-0.0031317318166610964,-0.00832834021207447,-0.003762961479239531,-0.006165991120151703,-0.003410738041471465,-0.00673617488648956,-0.005876400395509036,-0.005117796756298723,-0.008192238829243312,-0.006363414989263933,-0.007808936654118805,-0.006979783889583897,-0.0051093401781893266,-0.0062490414217577575,-0.006044897760408239,-0.0042353142623756295,-0.008358105950089501,-0.002986479072244578,-0.005395450686726326,-0.008395663302791548,-0.008947930502899461,-0.00471565028817163,-0.008515058815371946,-0.007618381826027936,-0.005868660060541422,-0.00667021243083413,-0.00732801049997516,-0.008305438827340259,-0.0064965023602913015,-0.0070198050296586545,-0.008488369835680515,-0.010376208780791188,-0.0056117557431248815,-0.0074166726821686905,-0.007935675581080714,-0.008542692296093562,-0.006887830667086373,-0.010300288274155354,-0.009295716910480614,-0.005367034171656184,-0.01066376576091798,-0.006350924165041988,-0.006245916841010812,-0.0071764331128129685,-0.005901445252542946,-0.007013656860955831,-0.009278216944989334,-0.009601013513742955,-0.008742951339245044,-0.008846720892179936,-0.009705929049429499,-0.008191131013367239
+52.424319,4.896388,0.001248166486662236,-0.0018768785056312237,-0.001770012778529941,-0.00207912318331,-0.0013611345500992387,-0.004422535038345208,-0.0026249967151487598,-0.0017055583603693182,0.0007682681833389039,-0.0037283402120744692,0.00013703852076046917,-0.0016659911201517032,-0.0005107380414714651,-0.0026361748864895595,-0.0003764003955090352,0.0009822032437012765,-0.003892238829243312,-0.0013634149892639337,-0.0028089366541188044,-0.002879783889583897,-0.0001093401781893271,-0.0029490414217577575,0.0002551022395917606,0.0007646857376243705,-0.004958105950089501,0.0011135209277554213,-0.002095450686726327,-0.003295663302791548,-0.0029479305028994613,-0.0018156502881716298,-0.0033150588153719462,-0.003818381826027936,-0.003968660060541421,-0.0022702124308341294,-0.0031280104999751603,-0.0037054388273402585,-0.002896502360291301,-0.004319805029658654,-0.006088369835680516,-0.006176208780791189,-0.003011755743124881,-0.004516672682168691,-0.006635675581080715,-0.0025426922960935625,-0.0022878306670863734,-0.005600288274155355,-0.004595716910480614,-6.703417165618395e-05,-0.00516376576091798,-0.00015092416504198744,-0.0017459168410108113,-0.0021764331128129692,-0.0029014452525429456,-0.004313656860955831,-0.005978216944989336,-0.004501013513742954,-0.006742951339245046,-0.005046720892179937,-0.004205929049429498,-0.003691131013367238
+52.424324,4.896309,0.0008481664866622363,-0.0023768785056312233,-0.001470012778529941,-0.0021791231833100002,-0.0009611345500992387,-0.0023225350383452087,-0.0029249967151487597,-0.0006055583603693181,0.0003682681833389037,-0.0035283402120744696,0.00023703852076046921,-0.00046599112015170306,8.926195852853482e-05,-0.0025361748864895593,-0.0014764003955090351,0.0009822032437012765,-0.0023922388292433126,-0.0007634149892639335,-0.0023089366541188044,-0.001779783889583897,0.000490659821810673,-0.0026490414217577576,-0.0002448977604082394,0.00046468573762437055,-0.003958105950089501,0.0011135209277554213,-0.0016954506867263267,-0.003995663302791548,-0.004347930502899461,-0.0013156502881716298,-0.0023150588153719462,-0.003618381826027936,-0.0025686600605414212,-0.0022702124308341294,-0.0028280104999751604,-0.0036054388273402587,-0.002196502360291301,-0.003219805029658654,-0.004088369835680516,-0.006976208780791188,-0.0015117557431248811,-0.0024166726821686904,-0.004235675581080715,-0.0037426922960935626,-0.0018878306670863734,-0.005400288274155355,-0.004195716910480614,-0.003067034171656184,-0.0038637657609179804,0.0008490758349580126,-0.0009459168410108113,-0.0004764331128129693,-0.0028014452525429454,-0.0055136568609558305,-0.004178216944989335,-0.004101013513742955,-0.005442951339245046,-0.004246720892179937,-0.0037059290494294984,-0.0037911310133672384
+52.424336,4.896254,-0.0019518335133377636,-0.0033768785056312233,-0.002070012778529941,-0.0008791231833100003,-0.0013611345500992387,-0.0021225350383452086,-0.00182499671514876,0.0003944416396306818,0.0011682681833389038,-0.0030283402120744696,0.0008370385207604693,-0.00016599112015170292,0.0011892619585285348,-0.0020361748864895597,-0.0005764003955090352,0.00018220324370127647,-0.002892238829243312,0.00023658501073606654,-0.0035089366541188045,-0.0021797838895838972,0.0010906598218106728,-0.0017490414217577574,0.0018551022395917605,0.0020646857376243706,-0.002458105950089501,0.0018135209277554214,-0.0014954506867263266,-0.0044956633027915475,-0.002747930502899461,-0.0018156502881716298,-0.0030150588153719463,-0.004018381826027937,-0.002368660060541421,-0.0015702124308341295,-0.0030280104999751605,-0.0022054388273402585,-0.0022965023602913013,-0.004019805029658654,-0.0039883698356805155,-0.0071762087807911885,-0.0003117557431248811,-0.0015166726821686904,-0.004735675581080715,-0.0031426922960935627,-0.002487830667086373,-0.004900288274155355,-0.0034957169104806144,-0.004567034171656184,-0.00496376576091798,0.0012490758349580126,-4.591684101081135e-05,-0.0006764331128129694,-0.0016014452525429455,-0.004213656860955831,-0.003378216944989335,-0.002901013513742955,-0.004742951339245046,-0.004746720892179937,-0.004205929049429498,-0.002291131013367238
+52.424764,4.892535,0.0010481664866622362,-0.0016768785056312237,-0.002870012778529941,-0.00197912318331,-0.0023611345500992387,-0.0042225350383452084,-0.00482499671514876,-0.003705558360369318,-0.0019317318166610959,-0.0034283402120744693,-0.002362961479239531,-0.0018659911201517028,-0.003210738041471465,-0.00533617488648956,-0.005076400395509035,0.00018220324370127647,-0.002892238829243312,-0.0024634149892639335,-0.0020089366541188045,-0.003379783889583897,-0.001709340178189327,-0.004849041421757757,-0.0017448977604082399,-0.0014353142623756295,-0.0057581059500895005,0.0007135209277554214,-0.002095450686726327,-0.004695663302791547,-0.003947930502899461,0.00018434971182837022,-0.002615058815371946,-0.003118381826027936,-0.0032686600605414213,-0.0031702124308341296,-0.00582801049997516,-0.0038054388273402588,-0.002996502360291301,-0.004919805029658654,-0.006388369835680516,-0.007376208780791189,-0.004111755743124881,-0.0041166726821686905,-0.005135675581080715,-0.006442692296093563,-0.004787830667086374,-0.006400288274155355,-0.006895716910480614,-0.005567034171656183,-0.008763765760917981,-0.003950924165041987,-0.004545916841010812,-0.00407643311281297,-0.004601445252542946,-0.006913656860955831,-0.006378216944989336,-0.005301013513742955,-0.004842951339245045,-0.004746720892179937,-0.005105929049429498,-0.004791131013367238
+52.424771,4.892447,0.0010481664866622362,-0.0014768785056312236,-0.0016700127785299408,-0.00047912318331000013,-0.0006611345500992386,-0.0019225350383452085,-0.0026249967151487598,-0.0009055583603693183,0.0006682681833389038,-0.00432834021207447,-0.001962961479239531,-0.001465991120151703,-0.001910738041471465,-0.0034361748864895594,-0.0041764003955090355,0.0011822032437012763,-0.004292238829243312,-0.0034634149892639335,-0.0022089366541188046,-0.003479783889583897,-0.0011093401781893271,-0.004349041421757758,-0.0017448977604082399,-0.0006353142623756295,-0.004758105950089501,0.0013135209277554214,-0.0014954506867263266,-0.002595663302791548,-0.005347930502899461,-1.5650288171629653e-05,-0.0016150588153719463,-0.0020183818260279362,-0.0021686600605414215,-0.0027702124308341294,-0.0025280104999751605,-0.0028054388273402583,-0.002996502360291301,-0.003919805029658654,-0.004688369835680516,-0.006676208780791188,-0.0035117557431248807,-0.0033166726821686906,-0.003135675581080715,-0.004942692296093562,-0.0035878306670863733,-0.004700288274155355,-0.004295716910480614,-0.005367034171656184,-0.006563765760917981,-0.0015509241650419874,-0.0019459168410108113,-0.0020764331128129694,-0.0028014452525429454,-0.004913656860955831,-0.005678216944989336,-0.003401013513742955,-0.003442951339245045,-0.003446720892179937,-0.0036059290494294986,-0.003691131013367238
+52.424785,4.892339,-0.0013518335133377638,-0.004376878505631224,-0.0024700127785299408,0.00012087681668999993,0.00023886544990076134,-0.0026225350383452086,-0.0035249967151487604,-0.0017055583603693182,-0.00023173181666109616,-0.00262834021207447,-0.0010629614792395307,-0.00016599112015170292,-0.0013107380414714652,-0.0010361748864895597,-0.005376400395509035,-0.0009177967562987235,-0.0024922388292433124,-0.0016634149892639336,-0.00020893665411880454,-0.002779783889583897,0.002490659821810673,-0.0005490414217577574,0.00035510223959176043,-0.0006353142623756295,-0.0037581059500895013,0.0033135209277554215,0.0029045493132736733,-0.002095663302791548,-0.00034793050289946115,0.0022843497118283703,-0.0012150588153719464,-0.003118381826027936,-0.0003686600605414214,-0.0030702124308341293,-0.0032280104999751606,-0.0011054388273402586,-0.002696502360291301,-0.0018198050296586543,-0.0025883698356805153,-0.0051762087807911885,-0.001011755743124881,-0.0016166726821686904,-0.001535675581080715,-0.007442692296093563,-0.003487830667086374,-0.001300288274155355,-0.0022957169104806142,-0.002167034171656184,-0.00446376576091798,-5.092416504198739e-05,-4.591684101081135e-05,-0.0017764331128129695,-0.0011014452525429457,-0.002713656860955831,-0.004378216944989336,-0.0017010135137429546,-0.0043429513392450455,-0.003446720892179937,-0.0036059290494294986,-0.002291131013367238
+52.424972,4.890661,0.0038481664866622358,-0.0013768785056312237,-7.001277852994092e-05,0.0019208768166899997,-0.0008611345500992387,0.00037746496165479154,-0.00062499671514876,0.0009944416396306817,0.0038682681833389037,-0.0008283402120744696,-0.0004629614792395308,0.000534008879848297,-0.0005107380414714651,0.0009638251135104404,-0.0012764003955090353,0.0037822032437012766,-9.223882924331238e-05,-0.0007634149892639335,-0.0006089366541188046,-0.0001797838895838972,0.001890659821810673,0.0004509585782422425,0.003955102239591761,0.0023646857376243705,-0.002258105950089501,0.0037135209277554216,0.0020045493132736735,0.0005043366972084522,-4.7930502899461126e-05,0.0025843497118283702,0.0014849411846280536,0.0017816181739720638,0.0010313399394585787,0.0035297875691658706,0.0017719895000248395,9.456117265974127e-05,-9.6502360291301e-05,-0.0005198050296586544,-0.0025883698356805153,-0.0008762087807911887,-0.00011175574312488113,-0.00011667268216869052,-0.0014356755810807152,0.003057307703906438,-0.0015878306670863735,-0.0016002882741553552,-0.0010957169104806143,0.00023296582834381597,-0.00336376576091798,0.0016490758349580125,0.0016540831589891886,0.0009235668871870307,0.0012985547474570543,-0.0010136568609558309,0.0008217830550106648,0.0025989864862570452,0.0023570486607549547,0.0015532791078200628,0.004494070950570502,0.003008868986632762
+52.425054,4.889976,4.816648666223621e-05,-0.0022768785056312235,-0.003570012778529941,-0.0011791231833100002,-0.0011611345500992386,-0.0016225350383452086,-0.00432499671514876,-0.002305558360369318,-0.001031731816661096,-0.00422834021207447,-0.004162961479239531,-0.0018659911201517028,-0.004010738041471465,-0.0033361748864895596,-0.003576400395509035,0.00028220324370127647,-0.0029922388292433124,-0.0020634149892639333,-0.0014089366541188047,-0.0021797838895838972,-0.0006093401781893271,-0.0036490414217577576,0.0015551022395917605,-0.0007353142623756295,-0.005858105950089501,0.0005135209277554215,-0.0013954506867263267,-0.003495663302791548,-0.004347930502899461,-0.0003156502881716298,-0.0023150588153719462,-0.0029183818260279364,-0.004068660060541422,-0.0038702124308341293,-0.0037280104999751606,-0.004605438827340259,-0.0025965023602913012,-0.005619805029658654,-0.0038883698356805157,-0.006176208780791189,-0.0035117557431248807,-0.00441667268216869,-0.004835675581080715,-0.0060426922960935625,-0.002787830667086374,-0.0036002882741553548,-0.003595716910480614,-0.004367034171656184,-0.00496376576091798,-0.003250924165041987,-0.002545916841010812,-0.0034764331128129696,-0.004301445252542946,-0.004913656860955831,-0.005178216944989335,-0.003401013513742955,-0.003542951339245045,-0.003246720892179937,-0.004205929049429498,-0.0028911310133672386
+52.424305,4.896469,-0.00035183351333776375,-0.0031768785056312233,-0.003970012778529941,-0.0023791231833100003,-0.0018611345500992385,-0.0030225350383452083,-0.0036249967151487598,-0.001805558360369318,0.00016826818333890402,-0.00462834021207447,-0.0013629614792395306,-0.002465991120151703,-0.002510738041471465,-0.0059361748864895595,-0.004776400395509035,-0.0025177967562987234,-0.006492238829243313,-0.0038634149892639337,-0.005508936654118805,-0.005479783889583897,-0.002609340178189327,-0.004149041421757757,-0.00274489776040824,-0.0020353142623756293,-0.0060581059500895,-0.00028647907224457845,-0.0024954506867263266,-0.005995663302791548,-0.004347930502899461,-0.0018156502881716298,-0.007215058815371946,-0.005118381826027936,-0.0038686600605414216,-0.00407021243083413,-0.005628010499975161,-0.006005438827340259,-0.0032965023602913013,-0.003919805029658654,-0.0052883698356805155,-0.007676208780791189,-0.002511755743124881,-0.0038166726821686906,-0.005335675581080715,-0.005542692296093562,-0.006187830667086374,-0.008900288274155356,-0.007995716910480614,-0.006167034171656184,-0.00716376576091798,-0.0018509241650419873,-0.0019459168410108113,-0.003976433112812969,-0.004201445252542946,-0.004613656860955831,-0.006378216944989336,-0.004301013513742955,-0.006442951339245046,-0.005646720892179937,-0.005705929049429498,-0.0057911310133672384
+52.424744,4.892575,0.0009481664866622362,0.00012312149436877645,-0.0029700127785299408,-0.00197912318331,3.88654499007613e-05,-0.0008225350383452084,-0.00172499671514876,-0.00010555836036931822,0.0017682681833389039,-0.0029283402120744697,-0.0018629614792395307,-0.0009659911201517031,-0.003710738041471465,-0.0036361748864895595,-0.0030764003955090348,0.002882203243701276,-0.0049922388292433124,-0.0030634149892639333,-0.0025089366541188045,-0.0021797838895838972,-0.0011093401781893271,-0.0029490414217577575,-0.0013448977604082397,-0.0002353142623756295,-0.005158105950089501,0.0010135209277554215,-0.003095450686726327,-0.002695663302791548,-0.003847930502899461,-0.0003156502881716298,-0.002115058815371946,-0.0015183818260279362,-0.0027686600605414213,-0.0017702124308341294,0.0006719895000248395,-0.0021054388273402586,-0.000796502360291301,-0.005519805029658654,-0.0034883698356805155,-0.005776208780791188,-0.002311755743124881,-0.0024166726821686904,-0.003935675581080715,-0.005742692296093563,-0.002787830667086374,-0.004900288274155355,-0.003895716910480614,-0.006067034171656184,-0.00556376576091798,-0.0022509241650419875,-0.0018459168410108115,-0.0020764331128129694,-0.0039014452525429457,-0.0026136568609558307,-0.005778216944989335,-0.004001013513742955,-0.002542951339245045,-0.003446720892179937,-0.0034059290494294985,-0.0030911310133672383
+52.424772,4.892393,0.0027481664866622364,-0.0027768785056312235,-0.0007700127785299409,0.0009208768166899999,0.0016388654499007614,-0.0017225350383452084,-0.00022499671514876007,-0.0013055583603693182,0.0011682681833389038,-0.0025283402120744695,-0.0013629614792395306,-0.003265991120151703,-0.004310738041471466,-0.00433617488648956,-0.003576400395509035,0.0015822032437012765,-0.0032922388292433123,-0.0031634149892639336,-0.0021089366541188043,-0.003079783889583897,-0.0008093401781893272,-0.0038490414217577573,5.510223959176051e-05,0.0006646857376243705,-0.003458105950089501,0.0031135209277554214,-0.0013954506867263267,-0.001695663302791548,-0.0037479305028994612,0.0015843497118283702,-0.0013150588153719464,0.0015816181739720637,-0.004568660060541422,-0.0003702124308341295,-0.0019280104999751604,-0.0017054388273402587,-0.003196502360291301,-0.0034198050296586546,-0.0031883698356805156,-0.0037762087807911887,-0.002511755743124881,-0.00461667268216869,-0.004835675581080715,-0.005642692296093562,-0.0016878306670863733,-0.004500288274155355,-0.004095716910480615,-0.003767034171656184,-0.00746376576091798,-0.004550924165041987,0.0011540831589891885,-0.0006764331128129694,0.0016985547474570543,-0.003813656860955831,-0.002778216944989335,-0.0025010135137429547,-0.004842951339245045,0.0009532791078200628,-0.0025059290494294987,-0.0021911310133672377
+52.424952,4.890803,0.0013481664866622362,0.0028231214943687764,-0.001770012778529941,-0.00047912318331000013,-6.113455009923864e-05,-2.253503834520848e-05,-0.0009249967151487601,-0.0014055583603693183,0.002468268183338904,-0.00042834021207446957,-0.002462961479239531,0.000434008879848297,0.0005892619585285349,-0.0029361748864895594,-0.0025764003955090348,0.0016822032437012763,-0.0016922388292433125,-0.0007634149892639335,9.106334588119544e-05,0.001520216110416103,-0.0001093401781893271,-0.0016490414217577574,0.0017551022395917606,0.0011646857376243706,-0.002758105950089501,0.0016135209277554213,-0.0003954506867263266,-0.0010956633027915477,-0.002347930502899461,8.434971182837018e-05,-0.00031505881537194634,-0.0006183818260279361,-0.0007686600605414214,-0.0003702124308341295,0.0004719895000248396,-0.0010054388273402588,-0.002196502360291301,-0.0031198050296586547,-0.0018883698356805154,-0.0034762087807911884,-0.0017117557431248808,-0.0010166726821686904,-0.000935675581080715,0.00035730770390643733,-0.0015878306670863735,-0.002000288274155355,-0.0017957169104806142,-0.001567034171656184,-0.0034637657609179803,-0.0005509241650419874,0.0013540831589891886,0.0012235668871870306,-0.0017014452525429458,-0.002713656860955831,-0.005078216944989336,-0.0023010135137429546,0.00035704866075495477,-0.0012467208921799371,0.00019407095057050148,0.00010886898663276185
+52.424966,4.890691,0.002848166486662236,-0.0016768785056312237,-0.003270012778529941,0.0007208768166899999,-0.002061134550099239,-0.0027225350383452084,-0.00412499671514876,-0.002005558360369318,-0.0009317318166610963,-0.005128340212074469,-0.003462961479239531,-0.0009659911201517031,-0.0026107380414714648,-0.0016361748864895595,-0.002176400395509035,0.002882203243701276,-0.0024922388292433124,-0.002663414989263933,-0.0017089366541188046,-0.0026797838895838972,0.001390659821810673,-0.0018490414217577575,0.00035510223959176043,-0.0010353142623756293,-0.005558105950089501,0.003213520927755421,-0.0017954506867263265,-0.0044956633027915475,-0.00624793050289946,-0.0003156502881716298,-0.0019150588153719463,-0.003618381826027936,-0.0017686600605414213,-0.0021702124308341296,-0.0028280104999751604,-0.01080543882734026,-0.002396502360291301,-0.003919805029658654,-0.0039883698356805155,-0.0037762087807911887,-0.002211755743124881,-0.0030166726821686906,-0.0014356755810807152,-0.0040426922960935625,-0.0017878306670863736,-0.0035002882741553554,-0.0031957169104806144,-0.003767034171656184,-0.0061637657609179795,-0.00015092416504198744,-0.0001459168410108114,-0.0017764331128129695,-1.4452525429457406e-06,-0.004613656860955831,-0.003978216944989336,-0.0035010135137429547,-0.005542951339245045,-0.004646720892179937,-0.0029059290494294985,-0.0016911310133672379
+52.425026,4.890141,0.0006481664866622362,-0.0020768785056312234,-0.0012700127785299409,-0.00127912318331,0.0001388654499007613,-0.0032225350383452084,-0.0038249967151487603,-0.0025055583603693183,-0.004031731816661097,-0.00432834021207447,-0.0016629614792395308,0.001034008879848297,-0.0005107380414714651,-0.0018361748864895596,-0.0011764003955090352,0.0012822032437012766,-0.0017922388292433123,-0.0013634149892639337,-0.00010893665411880449,0.002020216110416103,0.0003906598218106729,-0.0021490414217577576,0.0006551022395917606,0.0003646857376243705,-0.004358105950089501,0.0005135209277554215,0.0009045493132736734,-0.004895663302791548,-0.003547930502899461,0.00018434971182837022,-0.0015150588153719463,-0.0006183818260279361,-0.0034686600605414214,-0.0023702124308341292,-0.0037280104999751606,-0.004605438827340259,-0.001996502360291301,-0.0023198050296586543,-0.0002883698356805155,-0.0025762087807911886,-0.002411755743124881,-0.0019166726821686904,-0.0029356755810807152,-0.004242692296093562,-0.004887830667086373,-0.0039002882741553547,-0.0034957169104806144,-6.703417165618395e-05,-0.0018637657609179802,-0.0021509241650419873,-0.0017459168410108113,0.00042356688718703055,-0.00010144525254294568,-0.002413656860955831,-0.007178216944989335,-0.0003010135137429545,0.0018570486607549547,-0.002946720892179937,-0.004005929049429498,-0.000591131013367238
+52.425056,4.889905,0.0018481664866622362,-0.0013768785056312237,-0.0019700127785299408,0.0007208768166899999,0.00023886544990076134,-0.0002225350383452084,-0.00252499671514876,-0.0011055583603693181,-0.000831731816661096,-0.00422834021207447,-0.002462961479239531,-0.000765991120151703,-0.003210738041471465,-0.0022361748864895593,-0.002876400395509035,-1.7796756298723562e-05,-0.0020922388292433126,-0.0011634149892639336,0.00019106334588119548,-0.001779783889583897,-0.001209340178189327,-0.004449041421757757,-0.0009448977604082395,-0.0011353142623756296,-0.005558105950089501,0.0007135209277554214,-0.0024954506867263266,-0.005395663302791547,-0.007647930502899461,-0.0007156502881716295,-0.0033150588153719462,-0.002618381826027936,-0.0037686600605414213,-0.0042702124308341294,-0.0036280104999751603,-0.005605438827340259,-0.002396502360291301,-0.0057198050296586546,-0.0027883698356805154,-0.005576208780791189,-0.003011755743124881,-0.0034166726821686904,-0.005935675581080714,-0.0053426922960935624,-0.0032878306670863734,-0.004000288274155355,-0.003395716910480614,-0.0039670341716561835,-0.00576376576091798,-0.003850924165041988,-0.0019459168410108113,-0.004176433112812969,-0.004101445252542945,-0.005413656860955831,-0.006378216944989336,-0.004201013513742954,-0.004242951339245045,-0.003746720892179937,-0.004405929049429498,-0.004791131013367238
+52.425062,4.889816,0.001248166486662236,0.0008231214943687765,-0.003570012778529941,-0.0006791231833100002,-0.0009611345500992387,-0.0016225350383452086,-0.0016249967151487602,-0.003005558360369318,0.00026826818333890385,-0.00552834021207447,-0.004162961479239531,-0.001765991120151703,-0.004510738041471465,-0.004536174886489559,-0.004876400395509036,-0.0018177967562987235,-0.0037922388292433128,-0.0024634149892639335,-0.0026089366541188043,-0.002779783889583897,-0.002709340178189327,-0.005449041421757758,0.0038551022395917605,-0.0020353142623756293,-0.006858105950089501,-0.0015864790722445784,-0.0031954506867263267,-0.004795663302791547,-0.005547930502899461,-0.0025156502881716293,-0.004215058815371946,-0.004318381826027937,-0.003968660060541421,-0.00667021243083413,-0.0015280104999751605,-0.0026054388273402587,-0.003696502360291301,-0.006719805029658655,-0.005688369835680516,-0.008276208780791189,-0.0053117557431248815,-0.0051166726821686905,-0.007335675581080715,-0.0033426922960935624,-0.005287830667086373,-0.005100288274155355,-0.005395716910480615,-0.009367034171656184,-0.00716376576091798,-0.004650924165041988,-0.004545916841010812,-0.0006764331128129694,-0.004601445252542946,-0.0045136568609558305,-0.006878216944989335,-0.0035010135137429547,-0.003942951339245045,-0.002746720892179937,-0.0031059290494294986,-0.001391131013367238
+52.424721,4.892749,0.001248166486662236,0.00022312149436877645,-0.002070012778529941,0.0003208768166899998,-0.0009611345500992387,-0.0022225350383452084,-0.0016249967151487602,-0.002305558360369318,0.0017682681833389039,-0.0035283402120744696,-0.0015629614792395307,-0.002465991120151703,-0.0017107380414714652,-0.006436174886489559,-0.004676400395509035,0.00048220324370127645,-0.0027922388292433123,-0.002663414989263933,-0.0021089366541188043,-0.0018797838895838969,-0.0011093401781893271,-0.0010490414217577575,0.00035510223959176043,-0.0010353142623756293,-0.0063581059500895,0.0006135209277554215,-0.0023954506867263268,-0.003895663302791548,-0.0012479305028994612,-0.0003156502881716298,-0.0008150588153719463,-0.002718381826027936,-0.0011686600605414215,-0.0006702124308341295,-0.0033280104999751604,-0.01180543882734026,-0.005396502360291301,-0.006719805029658655,-0.005688369835680516,-0.009576208780791188,-0.005511755743124881,-0.00631667268216869,-0.008835675581080714,-0.009142692296093562,-0.004487830667086374,-0.0039002882741553547,-0.005495716910480614,-0.008567034171656183,-0.00676376576091798,-0.005650924165041987,-0.004145916841010812,-0.004476433112812969,-0.004601445252542946,-0.006413656860955831,-0.0075782169449893355,-0.0059010135137429545,-0.002142951339245045,-0.005646720892179937,-0.00020592904942949854,-0.0006911310133672381
+52.424792,4.892102,0.001248166486662236,-0.0013768785056312237,-0.001070012778529941,-0.00027912318331000025,-0.0008611345500992387,-0.0019225350383452085,-0.0036249967151487598,-0.0011055583603693181,-0.0007317318166610962,-0.004028340212074469,-0.0017629614792395308,-0.0030659911201517034,-0.003010738041471465,-0.00473617488648956,-0.004776400395509035,0.00018220324370127647,-0.005192238829243313,-0.0047634149892639335,-0.003908936654118805,-0.004879783889583897,-0.0013093401781893272,-0.004449041421757757,-0.0011448977604082396,-0.0013353142623756292,-0.005158105950089501,0.0011135209277554213,-0.0015954506867263268,-0.002795663302791548,-0.005347930502899461,0.00018434971182837022,-0.0024150588153719465,-0.001618381826027936,-0.002068660060541421,-0.0019702124308341295,-0.0030280104999751605,-0.0032054388273402585,-0.002696502360291301,-0.004419805029658655,-0.0038883698356805157,-0.005976208780791189,-0.003011755743124881,-0.00401667268216869,-0.004435675581080715,-0.004442692296093563,-0.004087830667086374,-0.0055002882741553545,-0.004995716910480614,-0.005367034171656184,-0.00696376576091798,-0.002850924165041988,-0.0026459168410108112,-0.0022764331128129695,-0.0014014452525429458,-0.0045136568609558305,-0.005178216944989335,-0.0026010135137429545,-0.002842951339245045,-0.003146720892179937,-0.0015059290494294985,-0.0024911310133672385
+52.424795,4.892051,0.0010481664866622362,-0.0017768785056312235,-0.000670012778529941,-0.00047912318331000013,-0.00016113455009923868,-0.0007225350383452086,-0.00232499671514876,-0.0008055583603693182,-0.00043173181666109626,-0.0032283402120744696,-0.002162961479239531,-0.0037659911201517026,-0.003710738041471465,-0.004836174886489559,-0.004976400395509035,-0.00021779675629872354,-0.005192238829243313,-0.005363414989263933,-0.003708936654118804,-0.005179783889583897,-0.003609340178189327,-0.005049041421757758,-0.0013448977604082397,6.468573762437053e-05,-0.004958105950089501,0.0010135209277554215,-0.0014954506867263266,-0.003095663302791548,-0.003047930502899461,-1.5650288171629653e-05,-0.0038150588153719463,-0.0029183818260279364,-0.0025686600605414212,-0.0026702124308341296,-0.0026280104999751603,-0.0014054388273402585,-0.0017965023602913009,-0.0036198050296586542,-0.0035883698356805153,-0.005576208780791189,-0.002611755743124881,-0.0033166726821686906,-0.004235675581080715,-0.005742692296093563,-0.004687830667086374,-0.006500288274155355,-0.0056957169104806145,-0.004867034171656184,-0.00746376576091798,-0.0015509241650419874,-0.0026459168410108112,-0.0027764331128129695,-0.0032014452525429456,-0.005113656860955831,-0.0045782169449893355,-0.0010010135137429545,-0.0011429513392450454,-0.002746720892179937,-0.0028059290494294987,-0.0034911310133672385
+52.425068,4.88972,0.0010481664866622362,0.0006231214943687764,-0.002570012778529941,0.00042087681668999985,0.0001388654499007613,0.0005774649616547916,-0.0009249967151487601,-0.0003055583603693182,-0.00013173181666109634,-0.00262834021207447,-0.002662961479239531,-0.002665991120151703,-0.004610738041471466,-0.00443617488648956,-0.004476400395509035,-0.0023177967562987237,-0.003892238829243312,-0.002663414989263933,-0.0020089366541188045,-0.003679783889583897,-0.0013093401781893272,-0.0038490414217577573,-0.0008448977604082397,-0.0027353142623756294,-0.006458105950089501,-0.0007864790722445785,-0.003395450686726327,-0.002795663302791548,-0.005747930502899461,-0.0004156502881716296,-0.0027150588153719464,-0.002618381826027936,-0.0032686600605414213,-0.0021702124308341296,-0.0012280104999751605,-0.003005438827340259,-0.002996502360291301,-0.004319805029658654,-0.0038883698356805157,-0.006176208780791189,-0.0035117557431248807,-0.00501667268216869,-0.005235675581080715,-0.006442692296093563,-0.004787830667086374,-0.006100288274155355,-0.005595716910480614,-0.005067034171656184,-0.008563765760917979,-0.0037509241650419876,-0.0038459168410108118,-0.0030764331128129694,-0.0018014452525429456,-0.003213656860955831,-0.003578216944989335,-0.0023010135137429546,-0.0016429513392450454,-0.0009467208921799372,-0.0018059290494294986,-0.0030911310133672383
+52.425072,4.889647,0.0024481664866622364,0.0013231214943687764,-0.0007700127785299409,0.0016208768166899997,0.0009388654499007613,0.0008774649616547915,-0.00152499671514876,-0.0007055583603693182,0.0003682681833389037,-0.0022283402120744696,-0.002662961479239531,-0.0009659911201517031,-0.002310738041471465,-0.004036174886489559,-0.002076400395509035,0.0008822032437012764,-0.0005922388292433124,-0.0009634149892639335,-0.0008089366541188045,-0.0014797838895838971,0.0012906598218106729,-0.0025490414217577573,0.0024551022395917603,0.0009646857376243705,-0.004958105950089501,0.0019135209277554215,-0.0010954506867263264,-0.0008956633027915479,-0.0037479305028994612,0.00048434971182837036,-0.00021505881537194633,0.0009816181739720638,-0.0018686600605414211,-0.0009702124308341295,-0.0017280104999751603,-0.0014054388273402585,-0.000296502360291301,-0.0027198050296586545,-0.0019883698356805155,-0.004076208780791188,-0.003111755743124881,-0.0029166726821686904,-0.0043356755810807154,-0.006142692296093562,-0.0025878306670863733,-0.002600288274155355,-0.0010957169104806143,-0.004667034171656184,-0.00416376576091798,-0.0027509241650419875,-0.0023459168410108113,0.0008235668871870306,-0.00030144525254294577,-0.0006136568609558309,-0.003578216944989335,-0.002901013513742955,-0.0012429513392450452,-0.009646720892179937,-0.005305929049429498,-0.000591131013367238
+52.425097,4.889361,0.0008481664866622363,-0.0011768785056312236,-0.004070012778529941,-0.00027912318331000025,-0.0017611345500992387,-0.0013225350383452084,-0.0028249967151487603,-0.0010055583603693183,-0.000831731816661096,-0.0031283402120744694,-0.0017629614792395308,-0.000765991120151703,-0.002410738041471465,-0.0033361748864895596,-0.004276400395509036,-0.0001177967562987235,-0.0033922388292433126,-0.0033634149892639333,-0.0024089366541188042,-0.002779783889583897,-0.0001093401781893271,-0.0038490414217577573,-0.0015448977604082394,-0.0007353142623756295,-0.005058105950089501,0.00011352092775542152,-0.0015954506867263268,-0.003295663302791548,-0.005647930502899461,-0.0004156502881716296,-0.003615058815371946,-0.0025183818260279362,-0.004368660060541422,-0.004870212430834129,-0.0060280104999751605,-0.0042054388273402585,-0.002196502360291301,-0.005619805029658654,-0.0035883698356805153,-0.0071762087807911885,-0.0034117557431248813,-0.00471667268216869,-0.004635675581080715,-0.005742692296093563,-0.004787830667086374,-0.0036002882741553548,-0.004895716910480614,-0.003867034171656184,-0.00586376576091798,-0.003850924165041988,-0.0018459168410108115,-0.0022764331128129695,-0.0028014452525429454,-0.0045136568609558305,-0.005178216944989335,-0.003801013513742955,-0.002942951339245045,-0.003146720892179937,-0.003905929049429499,-0.0033911310133672382
+52.425107,4.889252,0.0064481664866622365,0.0010231214943687765,-0.001570012778529941,-0.0011791231833100002,0.0004388654499007613,-0.0030225350383452083,0.00107500328485124,-0.0016055583603693184,0.0026682681833389036,0.0007716597879255304,-0.0017629614792395308,-0.0013659911201517028,-0.002210738041471465,-0.0026361748864895595,-0.002276400395509035,0.0006822032437012764,-0.0018922388292433126,-0.0011634149892639336,-0.0003089366541188046,-0.0014797838895838971,-9.340178189327052e-06,-0.0014490414217577575,0.005255102239591761,-0.0006353142623756295,-0.005858105950089501,0.0013135209277554214,-0.0007954506867263266,-0.0009956633027915478,-0.0036479305028994614,-0.0007156502881716295,-0.0014150588153719462,-0.0006183818260279361,-0.0025686600605414212,-0.0030702124308341293,-0.0008280104999751603,-0.004105438827340258,-0.003996502360291301,-0.0021198050296586547,-0.0035883698356805153,-0.0058762087807911895,-0.002311755743124881,-0.0030166726821686906,-0.004635675581080715,-0.004442692296093563,-0.003487830667086374,-0.0039002882741553547,-0.0043957169104806145,-0.002567034171656184,-0.00476376576091798,-0.002850924165041988,-0.004445916841010812,-0.0006764331128129694,0.0021985547474570543,-0.001713656860955831,0.005021783055010665,-0.0001010135137429546,-4.295133924504526e-05,-0.0003467208921799372,0.00019407095057050148,0.0011088689866327619
+52.424747,4.892324,0.0027481664866622364,0.0006231214943687764,-0.00017001277852994086,0.0019208768166899997,0.0011388654499007614,-0.0010225350383452085,-0.00152499671514876,0.0005944416396306818,0.00046826818333890394,-0.0023283402120744695,-0.0016629614792395308,-0.00046599112015170306,-0.006110738041471465,-0.00823617488648956,-0.003276400395509035,0.00018220324370127647,-0.0033922388292433126,-0.0005634149892639335,-0.0015089366541188045,-0.003479783889583897,0.0011906598218106728,-0.004849041421757757,-0.0007448977604082394,-3.531426237562952e-05,-0.003958105950089501,0.0025135209277554215,-0.0010954506867263264,-0.0003956633027915479,-0.003347930502899461,0.0013843497118283703,-0.0005150588153719463,-0.0007183818260279362,-0.0029686600605414214,-0.0020702124308341293,-0.0007280104999751604,-0.0001054388273402586,-9.6502360291301e-05,-0.0026198050296586542,-0.0013883698356805156,-0.002176208780791189,0.0015882442568751188,-0.0024166726821686904,0.0006643244189192851,-0.003942692296093562,-0.0033878306670863736,0.006999711725844645,-0.0002957169104806143,-0.002167034171656184,-0.00466376576091798,-0.004850924165041988,0.0014540831589891885,0.0007235668871870306,-0.00020144525254294572,-0.0026136568609558307,-0.003578216944989335,-0.0020010135137429547,-0.0005429513392450453,-0.0009467208921799372,-0.004005929049429498,-0.0014911310133672382
+52.424789,4.89201,0.0002481664866622363,-0.0006768785056312236,-0.003570012778529941,-0.0008791231833100003,-0.0010611345500992388,-0.0023225350383452087,-0.00402499671514876,-0.002305558360369318,-0.0015317318166610965,-0.00462834021207447,-0.002462961479239531,-0.004065991120151703,-0.003510738041471465,-0.008136174886489558,-0.005276400395509036,-0.0011177967562987236,-0.005892238829243312,-0.005263414989263934,-0.004908936654118805,-0.0065797838895838975,-0.0034093401781893273,-0.004349041421757758,-0.00274489776040824,-0.0018353142623756293,-0.005258105950089501,0.0014135209277554215,-0.0016954506867263267,-0.002995663302791548,-0.004047930502899461,-1.5650288171629653e-05,-0.0019150588153719463,-0.002318381826027936,-0.0029686600605414214,-0.0026702124308341296,-0.0040280104999751605,-0.004105438827340258,-0.003896502360291301,-0.005319805029658654,-0.0049883698356805155,-0.005476208780791188,-0.0034117557431248813,-0.00401667268216869,-0.005535675581080715,-0.004842692296093563,-0.006187830667086374,-0.0058002882741553545,-0.005195716910480614,-0.0062670341716561835,-0.00756376576091798,-0.0027509241650419875,-0.0037459168410108115,-0.003976433112812969,-0.002001445252542946,-0.004313656860955831,-0.005078216944989336,-0.0026010135137429545,-0.004142951339245046,-0.004446720892179937,-0.0033059290494294987,-0.003691131013367238
+52.424803,4.891783,0.0004481664866622362,2.312149436877641e-05,-0.002770012778529941,0.0016208768166899997,0.00033886544990076133,0.00037746496165479154,-0.00252499671514876,-0.00040555836036931824,0.00016826818333890402,-0.00422834021207447,-0.0008629614792395309,-0.002865991120151703,-0.002110738041471465,-0.005236174886489559,-0.003476400395509035,0.00038220324370127646,-0.004092238829243313,-0.0038634149892639337,-0.0025089366541188045,-0.003779783889583897,-0.0013093401781893272,-0.0035490414217577574,-0.0014448977604082395,-0.0007353142623756295,-0.005158105950089501,0.0027135209277554216,-0.0004954506867263267,-0.0015956633027915477,-0.0029479305028994613,0.0016843497118283703,-0.0011150588153719463,-0.0006183818260279361,-0.0009686600605414215,-0.0007702124308341296,-0.0023280104999751604,-0.0032054388273402585,-0.000996502360291301,-0.0034198050296586546,-0.0030883698356805153,-0.005076208780791189,-0.0015117557431248811,-0.0032166726821686903,-0.0036356755810807153,-0.0036426922960935623,-0.004387830667086374,-0.006600288274155355,-0.006595716910480614,-0.007367034171656184,-0.00776376576091798,-0.0023509241650419874,-0.0030459168410108114,-0.0034764331128129696,-0.0019014452525429458,-0.0036136568609558307,-0.004978216944989336,-0.0012010135137429546,-0.0032429513392450452,-0.003346720892179937,-0.0020059290494294987,-0.001091131013367238
+52.425064,4.889535,-0.0014518335133377636,-0.0038768785056312234,-0.005470012778529941,-0.0006791231833100002,-0.0008611345500992387,-0.0008225350383452084,-0.00402499671514876,-0.0022055583603693184,-0.0035317318166610966,-0.005628340212074469,-0.00406296147923953,-0.003965991120151703,-0.004110738041471465,-0.006536174886489559,-0.005876400395509036,-0.0025177967562987234,-0.004292238829243312,-0.002963414989263933,-0.0038089366541188044,-0.0038797838895838974,-0.002009340178189327,-0.007349041421757758,-0.0023448977604082397,-0.0020353142623756293,-0.0070581059500895,-0.0012864790722445785,-0.0028954506867263268,-0.0044956633027915475,-0.004847930502899461,8.434971182837018e-05,-0.003915058815371946,-0.003118381826027936,-0.005568660060541422,-0.00637021243083413,-0.004228010499975161,-0.005305438827340259,-0.003496502360291301,-0.004919805029658654,-0.0037883698356805154,-0.008676208780791188,-0.004011755743124882,-0.00471667268216869,-0.0056356755810807145,-0.006242692296093562,-0.005387830667086374,-0.0058002882741553545,-0.005295716910480614,-0.0062670341716561835,-0.00726376576091798,-0.004250924165041987,-0.0031459168410108117,-0.0052764331128129695,-0.005001445252542945,-0.004913656860955831,-0.005178216944989335,-0.005101013513742955,-0.003142951339245045,-0.0035467208921799373,-0.0032059290494294984,-0.003691131013367238
+52.425068,4.889458,0.0004481664866622362,-0.0010768785056312236,-0.003970012778529941,-0.00047912318331000013,-0.0014611345500992387,-0.0014225350383452085,-0.0032249967151487596,-0.0014055583603693183,-0.001631731816661096,-0.0034283402120744693,-0.0018629614792395307,-0.0009659911201517031,-0.002210738041471465,-0.0034361748864895594,-0.003976400395509035,-0.0013177967562987235,-0.0036922388292433125,-0.0028634149892639337,-0.0021089366541188043,-0.002879783889583897,-0.000409340178189327,-0.005049041421757758,-0.002444897760408239,-0.0023353142623756293,-0.0060581059500895,-0.0003864790722445787,-0.0018954506867263268,-0.002895663302791548,-0.005047930502899461,-0.0003156502881716298,-0.004015058815371946,-0.003318381826027936,-0.003968660060541421,-0.005170212430834129,-0.00522801049997516,-0.0039054388273402586,-0.0027965023602913013,-0.0036198050296586542,-0.0027883698356805154,-0.006076208780791188,-0.004111755743124881,-0.00441667268216869,-0.005335675581080715,-0.0060426922960935625,-0.0022878306670863734,-0.006000288274155355,-0.005595716910480614,-0.0032670341716561843,-0.00356376576091798,-0.0012509241650419875,-0.002945916841010812,-0.0018764331128129693,-0.0034014452525429452,-0.005213656860955831,-0.0018782169449893353,-0.0039010135137429545,-0.0013429513392450452,-0.0009467208921799372,-0.0028059290494294987,-0.0030911310133672383
+52.425107,4.889095,0.0016481664866622363,0.0006231214943687764,-0.0024700127785299408,-7.912318331000016e-05,3.88654499007613e-05,-0.0010225350383452085,-0.0035249967151487604,-0.0003055583603693182,0.00016826818333890402,-0.0022283402120744696,-0.0011629614792395308,-0.000365991120151703,-0.00041073804147146516,-0.0033361748864895596,-0.0017764003955090353,0.00038220324370127646,-0.0005922388292433124,-6.341498926393349e-05,0.00039106334588119546,-0.00027978388958389724,0.0006906598218106728,-0.0028490414217577573,0.0026551022395917604,0.0017646857376243706,-0.004358105950089501,0.0019135209277554215,4.549313273673455e-06,-0.002195663302791548,-0.002247930502899461,0.0010843497118283702,-0.0015150588153719463,-0.002818381826027936,-0.0037686600605414213,-0.0042702124308341294,-0.0040280104999751605,-0.0036054388273402587,-0.000896502360291301,-0.0028198050296586548,-0.0023883698356805157,-0.004476208780791189,-0.001011755743124881,-0.0006166726821686906,-0.002635675581080715,-0.004842692296093563,-0.0015878306670863735,-0.002300288274155355,-0.002395716910480614,-0.002467034171656184,-0.00406376576091798,-0.0016509241650419872,-0.0012459168410108112,0.0005235668871870306,0.00019855474745705435,-0.002013656860955831,-0.003478216944989335,-0.0008010135137429546,5.7048660754954745e-05,-0.0012467208921799371,-0.0025059290494294987,0.0002088689866327619
+52.424805,4.891703,-5.1833513337763834e-05,-0.0008768785056312235,-0.003170012778529941,-0.0016791231833100002,-0.0010611345500992388,-0.0021225350383452086,-0.00442499671514876,-0.002305558360369318,-0.0005317318166610961,-0.00432834021207447,-0.002662961479239531,-0.004365991120151703,-0.004110738041471465,-0.006136174886489559,-0.006576400395509036,-0.0017177967562987237,-0.005492238829243313,-0.004863414989263934,-0.004808936654118805,-0.005779783889583897,-0.003609340178189327,-0.0052490414217577575,-0.00274489776040824,-0.0029353142623756295,-0.0063581059500895,-0.0008864790722445787,-0.003395450686726327,-0.003995663302791548,-0.006047930502899461,-0.0004156502881716296,-0.003115058815371946,-0.001918381826027936,-0.004068660060541422,-0.004870212430834129,-0.005428010499975161,-0.005105438827340259,-0.004296502360291301,-0.005119805029658654,-0.005388369835680516,-0.008276208780791189,-0.004811755743124881,-0.0061166726821686905,-0.006235675581080714,-0.007842692296093563,-0.007087830667086374,-0.0078002882741553545,-0.008195716910480615,-0.007767034171656184,-0.009363765760917981,-0.004850924165041988,-0.0037459168410108115,-0.003976433112812969,-0.0032014452525429456,-0.004613656860955831,-0.006178216944989335,-0.0039010135137429545,-0.0056429513392450455,-0.004046720892179937,-0.004605929049429498,-0.004391131013367238
+52.424808,4.891645,0.0037481664866622364,0.0020231214943687765,-0.0016700127785299408,-7.912318331000016e-05,0.0010388654499007613,0.00027746496165479155,-0.00172499671514876,0.0009944416396306817,0.0015682681833389038,-0.0017283402120744696,-0.0015629614792395307,-0.002665991120151703,-0.002810738041471465,-0.0059361748864895595,-0.0041764003955090355,-1.7796756298723562e-05,-0.005392238829243313,-0.004063414989263933,-0.0040089366541188045,-0.005279783889583897,-0.002709340178189327,-0.0035490414217577574,-0.0035448977604082394,-0.0019353142623756295,-0.0044581059500895005,-0.0007864790722445785,-0.0023954506867263268,-0.0041956633027915476,-0.004847930502899461,0.0008843497118283702,-0.003115058815371946,-0.0049183818260279365,-0.003968660060541421,-0.0033702124308341293,-0.00462801049997516,-0.004705438827340258,-0.003696502360291301,-0.004119805029658655,-0.0020883698356805157,-0.006976208780791188,-0.002111755743124881,-0.0037166726821686903,-0.005035675581080715,-0.006142692296093562,-0.004687830667086374,-0.007600288274155355,-0.004995716910480614,-0.005767034171656184,-0.00546376576091798,-0.0006509241650419874,-4.591684101081135e-05,-0.0024764331128129696,-0.004001445252542945,-0.001813656860955831,-0.002278216944989335,-0.0012010135137429546,-0.003442951339245045,-0.002346720892179937,-0.0015059290494294985,-0.001091131013367238
+52.424818,4.891606,0.0030481664866622363,0.00042312149436877643,-0.001370012778529941,0.00102087681669,0.0009388654499007613,7.746496165479157e-05,-0.00232499671514876,-0.0005055583603693183,0.0026682681833389036,-0.0028283402120744695,-0.002762961479239531,-0.003265991120151703,-0.0026107380414714648,-0.00703617488648956,-0.0061764003955090355,-0.0010177967562987236,-0.006192238829243313,-0.005863414989263934,-0.004508936654118805,-0.005479783889583897,-0.003609340178189327,-0.004649041421757758,-0.0025448977604082394,-0.0020353142623756293,-0.006558105950089501,0.0009135209277554214,-0.002595450686726327,-0.002595663302791548,-0.006347930502899461,-1.5650288171629653e-05,-0.0023150588153719462,-0.002618381826027936,-0.002868660060541421,-0.0035702124308341293,-0.0028280104999751604,-0.0052054388273402585,-0.001696502360291301,-0.004119805029658655,-0.0034883698356805155,-0.006276208780791189,-0.002511755743124881,-0.005216672682168691,-0.006135675581080715,-0.005842692296093562,-0.006987830667086374,-0.009500288274155355,-0.006995716910480614,-0.007167034171656184,-0.00836376576091798,-0.003850924165041988,-0.0027459168410108115,-0.003276433112812969,-0.0035014452525429455,-0.005413656860955831,-0.004378216944989336,-0.002901013513742955,-0.003442951339245045,-0.0069467208921799375,-0.0014059290494294987,-0.0037911310133672384
+52.424815,4.891578,0.0013481664866622362,-0.0027768785056312235,-0.003970012778529941,-0.0014791231833100001,-0.0009611345500992387,-0.0018225350383452086,-0.00442499671514876,-0.0017055583603693182,-0.00043173181666109626,-0.0048283402120744695,-0.003762961479239531,-0.006465991120151703,-0.0039107380414714656,-0.00933617488648956,-0.007876400395509036,-0.004417796756298723,-0.008092238829243313,-0.007663414989263934,-0.007208936654118805,-0.008279783889583898,-0.005809340178189327,-0.0062490414217577575,-0.00644489776040824,-0.0035353142623756294,-0.0087581059500895,-0.0013864790722445787,-0.0038954506867263264,-0.003795663302791548,-0.005147930502899461,-0.00151565028817163,-0.0035150588153719463,-0.0042183818260279355,-0.0031686600605414215,-0.005170212430834129,-0.00552801049997516,-0.007105438827340258,-0.004096502360291301,-0.006119805029658654,-0.005788369835680516,-0.009176208780791189,-0.0053117557431248815,-0.006916672682168691,-0.007835675581080715,-0.008042692296093563,-0.007787830667086373,-0.009000288274155355,-0.009395716910480615,-0.007767034171656184,-0.00976376576091798,-0.005450924165041988,-0.004345916841010811,-0.00637643311281297,-0.005401445252542945,-0.008413656860955831,-0.0052782169449893356,-0.003801013513742955,-0.005242951339245045,-0.006146720892179937,-0.005105929049429498,-0.004291131013367238
+52.424771,4.891928,0.00014816648666223626,-0.00047687850563122355,-0.002570012778529941,-0.00157912318331,-0.0016611345500992388,-0.0035225350383452083,-0.00402499671514876,-0.002005558360369318,-0.000831731816661096,-0.005328340212074469,-0.0035629614792395308,-0.0033659911201517033,-0.003710738041471465,-0.00533617488648956,-0.006976400395509035,-0.0017177967562987237,-0.003492238829243312,-0.005163414989263934,-0.0030089366541188045,-0.004279783889583897,-0.0024093401781893273,-0.005649041421757758,-0.0002448977604082394,-0.0014353142623756295,-0.005958105950089501,0.00041352092775542144,-0.004195450686726326,-0.004895663302791548,-0.00854793050289946,-0.0010156502881716299,-0.0025150588153719463,-0.0032183818260279363,-0.003368660060541421,-0.0013702124308341294,-0.0040280104999751605,-0.006305438827340259,-0.0044965023602913014,-0.004419805029658655,-0.0062883698356805155,-0.0058762087807911895,-0.005211755743124881,-0.00461667268216869,-0.005435675581080715,-0.006142692296093562,-0.005487830667086374,-0.006200288274155355,-0.007195716910480614,-0.007967034171656184,-0.00826376576091798,-0.005250924165041988,-0.0031459168410108117,-0.003576433112812969,-0.003701445252542945,-0.006213656860955831,-0.005178216944989335,-0.004701013513742955,-0.005542951339245045,-0.005246720892179937,-0.004705929049429498,-0.004591131013367238
+52.425064,4.88932,0.0007481664866622362,-0.0011768785056312236,-0.003070012778529941,-0.00077912318331,-0.0011611345500992386,0.0008774649616547915,-0.00442499671514876,-0.0014055583603693183,-0.001631731816661096,-0.00452834021207447,-0.0020629614792395307,-0.002965991120151703,-0.002410738041471465,-0.005236174886489559,-0.003976400395509035,-0.002017796756298724,-0.004392238829243313,-0.004163414989263934,-0.0031089366541188043,-0.002879783889583897,-0.00020934017818932714,-0.004449041421757757,5.510223959176051e-05,0.00046468573762437055,-0.004758105950089501,0.0015135209277554215,-0.0005954506867263265,-0.003295663302791548,-0.005347930502899461,0.0009843497118283704,-0.0034150588153719465,-0.001918381826027936,-0.004068660060541422,-0.004170212430834129,-0.005128010499975161,-0.004305438827340259,-0.0017965023602913009,-0.0036198050296586542,-0.0029883698356805155,-0.0074762087807911885,-0.002211755743124881,-0.00441667268216869,-0.0036356755810807153,-0.004942692296093562,-0.004487830667086374,-0.005200288274155355,-0.004195716910480614,-0.004267034171656184,-0.00696376576091798,-0.0021509241650419873,-0.0012459168410108112,-0.0028764331128129698,-0.0022014452525429455,-0.004013656860955831,-0.004378216944989336,-0.0026010135137429545,-0.003142951339245045,-0.003246720892179937,-0.0022059290494294984,-0.0033911310133672382
+52.425123,4.888829,-0.0005518335133377638,0.0020231214943687765,-0.002070012778529941,-0.0001791231833100002,-0.0033611345500992387,-0.0028225350383452087,-0.0029249967151487597,-0.003405558360369318,-0.0018317318166610965,-0.0038283402120744695,-0.0020629614792395307,-0.002365991120151703,-0.0036107380414714648,-0.0046361748864895596,-0.003376400395509035,-0.0006177967562987236,-0.003492238829243312,-0.0035634149892639338,-0.0027089366541188046,-0.002779783889583897,-0.0015093401781893273,-0.004349041421757758,-0.0018448977604082393,-0.0007353142623756295,-0.005858105950089501,0.0040135209277554216,-0.0031954506867263267,-0.003095663302791548,-0.004347930502899461,-0.0007156502881716295,-0.002115058815371946,-0.003418381826027936,-0.0035686600605414217,-0.0031702124308341296,-0.00462801049997516,-0.004005438827340259,-0.000996502360291301,-0.0037198050296586545,-0.004488369835680515,-0.005476208780791188,-0.0035117557431248807,-0.00441667268216869,-0.005035675581080715,-0.005742692296093563,-0.004287830667086373,-0.004800288274155355,-0.004595716910480614,-0.003767034171656184,-0.006263765760917981,-0.003850924165041988,-0.0027459168410108115,-0.0020764331128129694,-0.002401445252542946,-0.005013656860955831,-0.0042782169449893355,-0.0049010135137429545,-0.003342951339245045,-0.004546720892179937,-0.0034059290494294985,-0.0027911310133672384
+52.424806,4.891542,0.0016481664866622363,-0.00027687850563122356,-0.003070012778529941,-0.0013791231833100003,-0.0010611345500992388,-0.0016225350383452086,-0.00432499671514876,-0.002105558360369318,-0.0015317318166610965,-0.005628340212074469,-0.003862961479239531,-0.004765991120151703,-0.003510738041471465,-0.008036174886489559,-0.006076400395509035,-0.002417796756298723,-0.0069922388292433125,-0.005263414989263934,-0.005208936654118805,-0.006679783889583897,-0.003909340178189327,-0.0052490414217577575,-0.00434489776040824,-0.0025353142623756294,-0.007258105950089501,-0.0003864790722445787,-0.0026954506867263267,-0.003195663302791548,-0.005447930502899461,-0.00021565028817162974,-0.0030150588153719463,-0.0032183818260279363,-0.003368660060541421,-0.0038702124308341293,-0.0036280104999751603,-0.004305438827340259,-0.002696502360291301,-0.005319805029658654,-0.0037883698356805154,-0.00787620878079119,-0.0035117557431248807,-0.004516672682168691,-0.006235675581080714,-0.006742692296093563,-0.0062878306670863734,-0.006500288274155355,-0.007395716910480615,-0.007767034171656184,-0.009363765760917981,-0.004950924165041988,-0.004245916841010812,-0.0028764331128129698,0.00019855474745705435,-0.004413656860955831,-0.006378216944989336,-0.0031010135137429545,-0.003942951339245045,-0.005246720892179937,-0.004705929049429498,-0.004791131013367238
+52.425037,4.889496,4.816648666223621e-05,-0.0036768785056312233,-0.002370012778529941,-0.00047912318331000013,-0.0006611345500992386,-0.0007225350383452086,-0.0038249967151487603,-0.0011055583603693181,-0.0009317318166610963,-0.00522834021207447,-0.0014629614792395307,-0.0013659911201517028,-0.002510738041471465,-0.0032361748864895594,-0.002076400395509035,0.00028220324370127647,-0.0003922388292433124,0.00023658501073606654,-0.00020893665411880454,0.0005202161104161028,0.0003906598218106729,-0.004549041421757757,0.0022551022395917606,-0.0002353142623756295,-0.0038581059500895007,0.0006135209277554215,-0.0010954506867263264,-0.003095663302791548,-0.006047930502899461,0.00048434971182837036,-0.0035150588153719463,-0.002618381826027936,-0.0030686600605414212,-0.0025702124308341293,-0.004528010499975161,-0.004505438827340258,0.000403497639708699,-0.004519805029658654,-0.0020883698356805157,-0.005476208780791188,-0.002411755743124881,-0.0022166726821686903,-0.003035675581080715,-0.006142692296093562,-0.0025878306670863733,-0.003300288274155355,-0.002395716910480614,-0.002867034171656184,-0.00446376576091798,-0.0016509241650419872,-0.002245916841010811,-0.0015764331128129694,-0.004001445252542945,-0.003813656860955831,-0.004778216944989335,-0.002901013513742955,-0.0037429513392450453,-0.0038467208921799372,-0.004205929049429498,-0.0033911310133672382
+52.425066,4.889245,0.002348166486662236,0.0003231214943687764,-0.002170012778529941,0.0003208768166899998,0.0008388654499007612,-0.00012253503834520847,-0.00212499671514876,-0.0009055583603693183,-0.001331731816661096,-0.0022283402120744696,-0.0025629614792395308,-0.002965991120151703,-0.003810738041471465,-0.005836174886489559,-0.003776400395509035,-0.0011177967562987236,-0.004792238829243313,-0.0035634149892639338,-0.0040089366541188045,-0.0035797838895838974,-0.0015093401781893273,-0.0052490414217577575,-0.0006448977604082396,-0.0015353142623756293,-0.005858105950089501,0.0007135209277554214,-0.0017954506867263265,-0.001995663302791548,-0.004147930502899461,-0.0004156502881716296,-0.0022150588153719464,-0.001218381826027936,-0.0030686600605414212,-0.0026702124308341296,-0.00392801049997516,-0.0039054388273402586,-0.002496502360291301,-0.004219805029658654,-0.0039883698356805155,-0.005376208780791189,-0.003011755743124881,-0.0051166726821686905,-0.005735675581080716,-0.004242692296093562,-0.004587830667086373,-0.0055002882741553545,-0.005295716910480614,-0.004567034171656184,-0.00756376576091798,-0.0036509241650419873,-0.0023459168410108113,-0.0030764331128129694,-0.0013014452525429456,-0.003913656860955831,-0.0026782169449893352,-0.003801013513742955,-0.002142951339245045,-0.0012467208921799371,-0.0021059290494294986,-0.0024911310133672385
+52.425078,4.889159,-0.00035183351333776375,-0.0018768785056312237,-0.003470012778529941,-0.00127912318331,0.0009388654499007613,-0.0006225350383452085,-0.00442499671514876,-0.0038055583603693183,-3.173181666109607e-05,-0.00432834021207447,-0.002962961479239531,-0.004865991120151703,-0.005510738041471465,-0.0069361748864895595,-0.005576400395509036,-0.0031177967562987232,-0.005892238829243312,-0.005363414989263933,-0.004408936654118805,0.0024202161104161027,-0.002709340178189327,-0.006749041421757758,-0.0029448977604082396,-0.0038353142623756293,-0.007958105950089502,-0.0017864790722445785,-0.0022954506867263265,-0.003695663302791548,-0.00624793050289946,-0.0030156502881716297,-0.006115058815371946,-0.0014183818260279362,-0.0076686600605414225,-0.004570212430834129,-0.005628010499975161,-0.005805438827340258,-0.0044965023602913014,-0.006119805029658654,-0.004688369835680516,-0.006376208780791188,-0.004711755743124882,-0.0074166726821686905,-0.009335675581080715,-0.007542692296093562,-0.007587830667086374,-0.0078002882741553545,-0.007295716910480614,-0.006867034171656183,-0.00886376576091798,-0.005750924165041988,-0.0026459168410108112,-0.0025764331128129694,-0.0017014452525429458,-0.006013656860955831,-0.004678216944989336,-0.004201013513742954,-0.003842951339245045,-0.004446720892179937,-0.006505929049429498,-0.0057911310133672384
+52.425093,4.889058,0.0017481664866622361,0.0022231214943687766,-0.001170012778529941,0.0016208768166899997,0.00023886544990076134,-2.253503834520848e-05,-0.00212499671514876,-0.0012055583603693182,-0.0009317318166610963,-0.0032283402120744696,0.00013703852076046917,-0.0031659911201517028,-0.0009107380414714652,-0.0035361748864895593,-0.0041764003955090355,-0.0007177967562987234,-0.004892238829243312,-0.0021634149892639336,-0.0027089366541188046,-0.003079783889583897,0.00019065982181067282,-0.0019490414217577575,0.0004551022395917605,-0.0012353142623756294,-0.0063581059500895,0.0020135209277554215,-0.0013954506867263267,-0.002695663302791548,-0.0036479305028994614,0.00018434971182837022,-0.0033150588153719462,-0.002818381826027936,-0.0029686600605414214,-0.0038702124308341293,-0.0020280104999751605,-0.004605438827340259,-0.001396502360291301,-0.0038198050296586548,-0.0013883698356805156,-0.006376208780791188,-0.0015117557431248811,-0.00011667268216869052,-0.0017356755810807151,-0.0040426922960935625,0.00011216933291362653,-0.0058002882741553545,-0.004095716910480615,-0.0020670341716561838,-0.0048637657609179805,-0.0016509241650419872,0.0005540831589891886,-0.0019764331128129696,-0.002701445252542946,-0.002513656860955831,-0.003778216944989335,-0.002701013513742955,-0.002642951339245045,-0.002346720892179937,-0.0021059290494294986,0.000608868986632762
+52.425135,4.888637,0.0038481664866622358,0.004323121494368776,0.002229987221470059,0.00152087681669,0.002538865449900761,0.0013774649616547915,-0.00012499671514876003,0.002194441639630682,0.004568268183338903,-0.0007283402120744696,-0.0001629614792395308,-0.001065991120151703,0.0007892619585285348,-0.0023361748864895596,-0.002276400395509035,0.0014822032437012765,0.00010776117075668749,0.0019365850107360665,0.0013910633458811953,0.0006202161104161028,-0.0006093401781893271,-0.004049041421757758,0.00405510223959176,0.0008646857376243706,-0.003158105950089501,0.0022135209277554216,0.0007045493132736734,0.0009043366972084522,-0.002147930502899461,0.0024843497118283704,-0.0009150588153719463,0.0005816181739720639,-0.0002686600605414215,-0.0018702124308341294,-0.00222801049997516,9.456117265974127e-05,0.001203497639708699,0.0006801949703413455,-0.0019883698356805155,-0.005676208780791189,-0.0017117557431248808,-0.0006166726821686906,-0.002235675581080715,-4.2692296093562636e-05,-0.002487830667086373,-0.002200288274155355,-0.002595716910480614,-0.0020670341716561838,-0.00336376576091798,-0.0023509241650419874,-0.0013459168410108115,0.0008235668871870306,0.0007985547474570543,-0.00041365686095583097,0.0002217830550106648,-0.0005010135137429547,-0.0022429513392450452,0.0005532791078200628,0.0011940709505705014,0.000608868986632762
+52.425096,4.888969,-5.1833513337763834e-05,0.0006231214943687764,-0.002370012778529941,0.0005208768166899998,0.00033886544990076133,0.00027746496165479155,-0.0028249967151487603,-0.0006055583603693181,-0.0011317318166610964,-0.00462834021207447,-0.0025629614792395308,-0.002665991120151703,-0.0031107380414714648,-0.00563617488648956,-0.003876400395509035,-0.0010177967562987236,-0.004092238829243313,-0.004963414989263934,-0.0043089366541188045,-0.0035797838895838974,-0.0010093401781893273,-0.0039490414217577575,-0.0017448977604082399,-0.0020353142623756293,-0.0060581059500895,0.0003135209277554214,-0.0024954506867263266,-0.002595663302791548,-0.0037479305028994612,0.0007843497118283703,-0.0035150588153719463,-0.0007183818260279362,-0.0022686600605414213,-0.0033702124308341293,-0.0033280104999751604,-0.0037054388273402585,-0.001496502360291301,-0.004319805029658654,-0.0025883698356805153,-0.006476208780791189,-0.002211755743124881,-0.00571667268216869,-0.004635675581080715,-0.0024426922960935626,-0.005487830667086374,-0.008400288274155355,-0.0012957169104806142,-0.001967034171656184,-0.00546376576091798,-0.008050924165041986,-0.0027459168410108115,-0.0024764331128129696,0.0009985547474570544,-0.000813656860955831,-0.003578216944989335,0.0056989864862570455,-0.0022429513392450452,-4.67208921799372e-05,-0.0012059290494294986,0.001308868986632762
+52.425058,4.889169,0.0013481664866622362,0.0003231214943687764,-0.0024700127785299408,0.00012087681668999993,-6.113455009923864e-05,-0.0015225350383452085,-0.0028249967151487603,-0.001805558360369318,-0.00043173181666109626,-0.005728340212074469,-0.003162961479239531,-0.002465991120151703,-0.003210738041471465,-0.00413617488648956,-0.0041764003955090355,-0.0018177967562987235,-0.004392238829243313,-0.0027634149892639334,-0.0035089366541188045,-0.003979783889583897,-0.001909340178189327,-0.0042490414217577575,-0.0004448977604082395,-0.0016353142623756292,-0.0063581059500895,0.0005135209277554215,-0.0009954506867263266,-0.002395663302791548,-0.0049479305028994605,0.00028434971182837027,-0.0035150588153719463,-0.001718381826027936,-0.004068660060541422,-0.0039702124308341295,-0.0040280104999751605,-0.0042054388273402585,-0.0025965023602913012,-0.004419805029658655,-0.004388369835680516,-0.006276208780791189,-0.003011755743124881,-0.00401667268216869,-0.005235675581080715,-0.004742692296093563,-0.005187830667086374,-0.005900288274155355,-0.004995716910480614,-0.004367034171656184,-0.00726376576091798,-0.0030509241650419875,-0.0015459168410108116,-0.0016764331128129692,-0.0017014452525429458,-0.002513656860955831,-0.0026782169449893352,-0.0023010135137429546,-0.002442951339245045,-0.0025467208921799373,-0.0022059290494294984,-0.0020911310133672383
+52.42481,4.891244,0.005048166486662236,0.0071231214943687764,0.005529987221470059,0.00602087681669,0.005838865449900761,0.0029774649616547914,0.003975003284851239,0.004494441639630682,0.007068268183338904,0.00267165978792553,0.003537038520760469,0.005334008879848297,0.002389261958528535,0.0027638251135104408,0.0011235996044909647,0.007282203243701276,0.004007761170756688,0.0048365850107360666,0.0055910633458811955,0.004220216110416103,0.006890659821810673,0.005050958578242243,0.00565510223959176,0.0043646857376243705,0.002041894049910499,0.0073135209277554215,0.004304549313273674,0.004304336697208452,0.007052069497100539,0.005384349711828371,0.004984941184628054,0.0039816181739720635,0.006331339939458578,0.004029787569165871,0.00397198950002484,0.003194561172659741,0.0041034976397086986,0.002780194970341345,0.0015116301643194846,0.0012237912192088114,0.0015882442568751188,0.0022833273178313094,0.0021643244189192847,0.0006573077039064375,0.002412169332913627,0.001199711725844645,0.0008042830895193856,0.0026329658283438164,-0.00116376576091798,0.0023490758349580124,0.003754083158989188,0.00542356688718703,0.004498554747457055,0.002186343139044169,0.0014217830550106647,0.003698986486257045,0.003157048660754955,0.004853279107820063,0.0038940709505705016,0.004808868986632762
diff --git a/examples/tutorial.py b/examples/tutorial.py
new file mode 100644
index 0000000..983da48
--- /dev/null
+++ b/examples/tutorial.py
@@ -0,0 +1,30 @@
+from saferoad import SafeRoad, PsData, Road
+
+# define the SafeRoad object
+
+SR = SafeRoad(
+ road=Road(filepath="./fixtures/A10_ams.geojson", crs_code="EPSG:4326", name="road"),
+ ps_data=PsData(
+ filepath="./fixtures/psdata_synthetisch.csv",
+ latitude="pnt_lat",
+ longitude="pnt_lon",
+ unit="m",
+ crs_code="EPSG:4326",
+ ),
+ computational_crs="EPSG:28992",
+)
+
+# laoding the data into database
+SR.load_files()
+
+# applying preprocess steps
+SR.preprocess()
+
+# generating patches
+SR.generate_rectangles(road_width=8, segment_length=500)
+
+# run the analysis
+SR.run_analysis()
+
+# generate the report
+SR.generate_report(output_name="./SafeRoadDB/SafeRoadReport.pdf")
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..e53c73b
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,16 @@
+# pyproject.toml
+[build-system]
+requires = ["setuptools>=61.0"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "saferoad"
+version = "0.1.0"
+description = "Road network safety analysis using Multi Temporal InSAR and road network data"
+authors = [{ name = "Murat Sahin", email = "m.sahin@tudelft.nl" }]
+readme = "README.md"
+requires-python = ">=3.10"
+dependencies = ["matplotlib", "duckdb", "shapely", "contextily", "tqdm"]
+
+[tool.setuptools.packages.find]
+where = ["src"]
diff --git a/src/saferoad/__init__.py b/src/saferoad/__init__.py
new file mode 100644
index 0000000..7661727
--- /dev/null
+++ b/src/saferoad/__init__.py
@@ -0,0 +1,7 @@
+from .saferoad import SafeRoad, PsData, Road
+from .database import DataBase
+from .pipeline import Pipeline
+
+__version__ = "0.1.0"
+
+__all__ = ["SafeRoad", "PsData", "Road", "DataBase", "Pipeline", "__version__"]
diff --git a/src/saferoad/database.py b/src/saferoad/database.py
new file mode 100644
index 0000000..a066c06
--- /dev/null
+++ b/src/saferoad/database.py
@@ -0,0 +1,65 @@
+import os
+import duckdb
+from pathlib import Path
+from datetime import datetime
+
+
+class DataBase:
+ """Class for managing a DuckDB database connection.
+
+ This class provides methods to set up a DuckDB database connection, and run SQL queries.
+ """
+
+ def __init__(self):
+ self.connection = None
+ self.db_path = None
+
+ def setup(self):
+ """Setup the DuckDB database connection.
+ This method initializes the database path and establishes a connection
+ to the DuckDB database. It also loads the spatial extension if available.
+
+ :raises AssertionError: If the database connection or path is already established.
+ """
+ assert self.connection is None, "Database connection already established."
+ assert self.db_path is None, "Database path already initialized."
+
+ self.db_path = self.init_database_path()
+ self.connection = duckdb.connect(self.db_path)
+ # Load the spatial extension if available
+ self.connection.install_extension("spatial")
+ self.connection.load_extension("spatial")
+
+ def init_database_path(self):
+ """Initialize the database path.
+
+ This method creates a directory for the database if it does not exist
+ and generates a filename based on the current date and time.
+
+ :return: The path to the DuckDB database file.
+ :rtype: str
+ """
+ assert self.connection is None, "Database connection already established."
+ assert self.db_path is None, "Database path already initialized."
+
+ # Create a folder for the database if it does not exist
+ dbFolder = "SafeRoadDB"
+ os.makedirs(dbFolder, exist_ok=True)
+ filename = os.path.join(
+ dbFolder, f"{datetime.now().strftime('%Y%m%d%H%M')}.duckdb"
+ )
+ return filename
+
+ def run(self, query: str):
+ """Run a SQL query on the database.
+
+ This method executes the provided SQL query on the connected database.
+
+ :param query: The SQL query to execute.
+ :type query: str
+ :raises AssertionError: If the database connection is not established.
+ """
+ if self.connection is None:
+ raise AssertionError("Database connection is not established.")
+
+ self.connection.execute(query)
diff --git a/src/saferoad/pipeline.py b/src/saferoad/pipeline.py
new file mode 100644
index 0000000..034797d
--- /dev/null
+++ b/src/saferoad/pipeline.py
@@ -0,0 +1,1513 @@
+from pathlib import Path
+from numpy import where as npwhere
+
+
+class Pipeline:
+ class Processing:
+ """Processing class for processing road data.
+
+ This class provides methods to load files into a database, dissolve features,
+ split lines into segments, generate patches, and save tables as GeoJSON files.
+ It assumes that the database connection is already established and that the
+ necessary SQL functions for spatial operations are available.
+ The methods in this class generate SQL queries that can be executed against
+ a spatial database, such as DuckDB.
+
+ The class does not handle database connections or query execution directly;
+ it only generates the SQL queries as strings.
+ The methods are static and can be called without instantiating the class.
+ The class is designed to be used in a pipeline for processing road data,
+ where each method can be chained together to perform a series of operations
+ on the road data.
+
+ The methods assume that the input data is already in a suitable format for
+ processing, such as a GIS vector file for loading into a database or a table
+ containing road geometries for dissolving and segmenting.
+ The class is intended to be used in conjunction with a spatial database
+ that supports SQL queries for spatial operations, such as DuckDB with
+ the Spatial extension or PostGIS.
+ The methods are designed to be flexible and can be adapted to different
+ use cases by modifying the parameters passed to them.
+ """
+
+ @staticmethod
+ def load_file(file_path: str, table_name: str) -> str:
+ """Load a file into a database table.
+
+ Method validates the provided file path and determines if existing
+ and determines the appropriate loading method based on the file type.
+ It generates an SQL query to create or replace a table in the database
+ with the contents of the file. The method supports CSV files and other
+ GIS vector files, using different loading methods for each type.
+
+ :param file_path: The path to the file to be loaded.
+ :type file_path: str
+ :param table_name: The name of the table to create or replace in the database.
+ :type table_name: str
+ :raises AssertionError: If the file does not exist.
+ :return: SQL query string to create or replace the table with the file data.
+ :rtype: str
+ """
+
+ assert Path(file_path).exists(), f"File {file_path} does not exist."
+
+ loader_method = (
+ "read_csv_auto" if Path(file_path).suffix == ".csv" else "ST_Read"
+ )
+ query = f"""
+ CREATE OR REPLACE TABLE '{table_name}' AS SELECT * FROM {loader_method}('{file_path}');
+ CREATE OR REPLACE SEQUENCE {table_name}_id;
+ ALTER TABLE '{table_name}' ADD COLUMN uid INTEGER DEFAULT nextval('{table_name}_id');
+ """
+ return query
+
+ @staticmethod
+ def dissolve_features(attribute: str, table_name: str) -> str:
+ """Dissolve features in a table based on a specified attribute.
+
+ This method generates an SQL query to dissolve features in a table
+ based on the provided attribute. It assumes the table is already loaded
+ into the database.
+
+ :param attribute: The attribute to dissolve features by.
+ :type attribute: str
+ :param table_name: The name of the table containing the features, default is "road".
+ :type table_name: str
+
+ :return: SQL query string to dissolve features.
+ :rtype: str
+ """
+
+ group_expression = f"GROUP BY {attribute}, " if attribute else ""
+
+ return f"""
+ CREATE OR REPLACE TABLE dissolved AS
+ SELECT UNNEST(ST_Dump(ST_LineMerge(ST_Union_Agg(geom))), recursive := true) as geom
+ FROM {table_name} {group_expression}
+ """
+
+ @staticmethod
+ def split_to_segments(
+ segment_length: float, table_name: str = "dissolved"
+ ) -> str:
+ """Split lines into segments of a specified length.
+
+ This method generates an SQL query to split lines in a table into segments
+ of a specified length. It transforms the geometries to a computational
+ coordinate reference system (CRS) and calculates the lengths in meters.
+ The segments are created by generating windows of fixed length along the lines.
+ The resulting segments are stored in a new table named "segments".
+ The method assumes that the input table is already dissolved and contains
+ geometries in a suitable format.
+
+ The segments are created by cutting the lines into fixed-length segments
+ and filtering out any empty geometries.
+ This method is useful for preparing road segments for further analysis or processing.
+ It is particularly useful in road network analysis, where roads need to be
+ divided into manageable segments for tasks such as traffic analysis, road condition
+ assessment, or infrastructure planning.
+
+ :param segment_length: The length of each segment in meters.
+ :type segment_length: float
+ :param table_name: The name of the table containing the lines, default is "dissolved".
+ :type table_name: str
+ :return: SQL query string to create or replace the segments table.
+ :rtype: str
+ """
+ computational_crs = None
+ query = f"""
+ CREATE OR REPLACE TABLE segments AS
+ -- transform to local projection system
+ -- and calculate length in meters
+ WITH measured AS (
+ SELECT
+ -- ST_Transform(geom, 'EPSG:4326', '{computational_crs}', always_xy := true) AS geom_m,
+ -- ST_Length(ST_Transform(geom, 'EPSG:4326', '{computational_crs}', always_xy := true)) AS len_m
+ geom,
+ ST_Length(geom) AS len_m
+ FROM {table_name}
+ ),
+ -- generate windows of fixed length
+ windows AS (
+ SELECT
+
+ m.geom,
+ m.len_m,
+ -- start distance (meters)
+ (i * CAST({segment_length} AS DOUBLE)) AS s,
+ -- end distance (meters), capped at total length
+ LEAST((i + 1) * CAST({segment_length} AS DOUBLE), m.len_m) AS e
+ FROM measured AS m
+ JOIN LATERAL generate_series(
+ 0,
+ CAST(CEIL(m.len_m / CAST({segment_length} AS DOUBLE)) AS BIGINT) - 1
+ ) AS g(i) ON TRUE
+ WHERE m.len_m > 0
+ ),
+ -- cut the lines into segments
+ cut AS (
+ SELECT
+ ST_LineSubstring(
+ geom,
+ s / NULLIF(len_m, 0),
+ e / NULLIF(len_m, 0)
+ ) AS geom
+ FROM windows
+ WHERE len_m > 0
+ )
+ -- filter out empty geometries
+ SELECT geom
+ FROM cut
+ WHERE NOT ST_IsEmpty(geom);
+ """
+ return query
+
+ @staticmethod
+ def generate_patches(
+ width: float, length: float, table_name: str = "segments"
+ ) -> str:
+ """Generate patches from segments.
+
+ This method generates patches from segments by creating a rectangular
+ envelope around each segment, rotated to align with the segment's direction.
+ The patches are created by translating and rotating the envelope to the
+ start point of the segment, ensuring that each patch is oriented correctly
+ along the segment's direction.
+
+ :param width: The width of the patches in meters.
+ :type width: float
+ :param length: The length of the patches in meters.
+ :type length: float
+ :param table_name: The name of the table containing the segments, default is "segments".
+ :type table_name: str
+ :return: SQL query string to create or replace the patches table.
+ :rtype: str
+ """
+ assert width > 0, "Width must be greater than 0."
+ assert length > 0, "Length must be greater than 0."
+ query = f"""
+ CREATE OR REPLACE TABLE patches AS
+ SELECT
+ ST_Translate(
+ ST_RotateZ(
+ ST_MakeEnvelope(-{width} / 2, 0, {width} / 2, {length}),
+ -ST_Azimuth(ST_StartPoint(geom), ST_EndPoint(geom))
+ ),
+ ST_X(ST_StartPoint(geom)), ST_Y(ST_StartPoint(geom))
+ ) AS geom
+ FROM {table_name};
+ CREATE OR REPLACE SEQUENCE patches_id;
+ ALTER TABLE patches ADD COLUMN uid INTEGER DEFAULT nextval('patches_id');
+ """
+ return query
+
+ # @staticmethod
+ # def save_table_as_geojson(table_name: str, output_path: str) -> str:
+ # """Save a table as a GeoJSON file.
+ # This method generates an SQL query to save the contents of a table
+ # as a GeoJSON file. It assumes that the table contains geometries in a
+ # format compatible with GeoJSON and that the output path is a valid file path.
+
+ # :param table_name: The name of the table to save as GeoJSON.
+ # :type table_name: str
+ # :param output_path: The path where the GeoJSON file will be saved.
+ # :type output_path: str
+ # :raises AssertionError: If the output path does not exist.
+ # :return: SQL query string to save the table as a GeoJSON file.
+ # :rtype: str
+ # """
+ # assert Path(
+ # output_path
+ # ).parent.exists(), f"Directory {Path(output_path).parent} does not exist."
+
+ # return f"""
+ # COPY (SELECT * FROM {table_name}) TO '{output_path}' (FORMAT GDAL, DRIVER 'GeoJSON', OVERWRITE TRUE);
+ # """
+
+ @staticmethod
+ def spatial_tranformation(
+ source_epsg: str, target_epsg: str, table_name: str
+ ) -> str:
+ """Transform geometries from one EPSG code to another.
+
+ This method generates an SQL query to transform geometries in a table
+ from one EPSG code to another. It assumes that the input table contains
+ geometries in the source EPSG code and that the target EPSG code is valid.
+
+ :param source_epsg: The source EPSG code of the geometries.
+ :type source_epsg: str
+ :param target_epsg: The target EPSG code to transform the geometries to.
+ :type target_epsg: str
+ :param table_name: The name of the table containing the geometries, default is "patches".
+ :type table_name: str
+
+ :return: SQL query string to transform the geometries.
+ :rtype: str
+ """
+
+ return f"""
+ UPDATE '{table_name}' SET geom = ST_Transform(geom, '{source_epsg}', '{target_epsg}', always_xy := true);
+ """
+
+ @staticmethod
+ def build_geometry(latitude: str, longitude: str, table_name: str) -> str:
+ """Build a geometry from latitude and longitude coordinates.
+
+ This method generates an SQL query to build a geometry column in a table
+ from latitude and longitude coordinates. It assumes that the input table
+ contains columns for latitude and longitude.
+
+ :param latitude: The name of the column containing latitude values.
+ :type latitude: str
+ :param longitude: The name of the column containing longitude values.
+ :type longitude: str
+ :param table_name: The name of the table to add the geometry column to.
+ :type table_name: str
+ :return: SQL query string to build the geometry column.
+ :rtype: str
+ """
+ return f"""
+ ALTER TABLE {table_name} ADD COLUMN geom GEOMETRY;
+ UPDATE {table_name} SET geom = ST_Point({longitude}, {latitude});
+ """
+
+ @staticmethod
+ def relate_point_patches(point_name: str, patch_name: str = "patches") -> str:
+ """Relate points to patches by assigning patch IDs to points.
+
+ This method generates an SQL query to relate points in one table to patches
+ in another table by assigning patch IDs to points based on their spatial
+ relationship. It assumes that the point table contains a geometry column
+ and that the patch table contains a geometry column and a unique identifier
+ for each patch.
+
+ :param point_name: The name of the table containing the points.
+ :type point_name: str
+ :param patch_name: The name of the table containing the patches, default is "patches".
+ :type patch_name: str
+ :return: SQL query string to relate points to patches.
+ :rtype: str
+ """
+ return f"""
+ ALTER TABLE {point_name} ADD COLUMN patch_id INTEGER;
+ UPDATE {point_name}
+ SET patch_id = subquery.uid
+ FROM (
+ SELECT first.uid AS point_uid, second.uid AS uid
+ FROM {point_name} AS first
+ JOIN {patch_name} AS second
+ ON ST_Within(first.geom, second.geom)
+ ) AS subquery
+ WHERE {point_name}.uid = subquery.point_uid;
+ """
+
+ @staticmethod
+ def calc_point_density(point_name: str, patch_name: str = "patches") -> str:
+ """Calculate point density per patch.
+
+ This method generates an SQL query to calculate the point density per patch
+ by counting the number of points within each patch and dividing by the area
+ of the patch in square kilometers. It assumes that the point table contains
+ a geometry column and that the patch table contains a geometry column and
+ a unique identifier for each patch.
+
+ :param point_name: The name of the table containing the points.
+ :type point_name: str
+ :param patch_name: The name of the table containing the patches, default is "patches".
+ :type patch_name: str
+ :return: SQL query string to calculate point density per patch.
+ :rtype: str
+ """
+ return f"""
+ -- calculate the point count and density per patch
+ ALTER TABLE {patch_name} ADD COLUMN point_count INTEGER;
+ ALTER TABLE {patch_name} ADD COLUMN ps_density FLOAT DEFAULT 0.0;
+
+ UPDATE {patch_name}
+ SET point_count = subquery.point_count,
+ ps_density = subquery.point_count / (ST_Area(subquery.geom) / 1_000_000.0)
+ FROM (
+ SELECT second.uid AS patch_id, COUNT(first.uid) AS point_count, second.geom
+ FROM {point_name} AS first
+ JOIN {patch_name} AS second
+ ON ST_Within(first.geom, second.geom)
+ GROUP BY second.uid, second.geom
+ ) AS subquery
+ WHERE {patch_name}.uid = subquery.patch_id;
+ """
+
+ @staticmethod
+ def get_column_names(table_name: str) -> str:
+ """Get column names from a table.
+
+ This method generates an SQL query to retrieve the column names from a specified table.
+
+ :param table_name: The name of the table to retrieve column names from.
+ :type table_name: str
+ :return: SQL query string to get the column names.
+ :rtype: str
+ """
+ return f"""
+ SELECT column_name FROM (DESCRIBE {table_name});
+ """
+
+ @staticmethod
+ def calc_cum_disp(dates: list[str], table_name: str = "pspoint") -> str:
+ """Calculate cumulative displacement.
+
+ This method generates an SQL query to calculate the cumulative displacement
+ for each point in a table based on the provided date fields. It assumes that
+ the input table contains columns for displacement values at different dates.
+
+ :param dates: List of column names representing dates.
+ :type dates: list[str]
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to calculate cumulative displacement.
+ :rtype: str
+ """
+ return f"""
+ ALTER TABLE {table_name} ADD COLUMN displacement FLOAT;
+ UPDATE {table_name}
+ SET displacement = first.disp
+ FROM (
+ SELECT uid, {dates[-1]} - {dates[0]} as disp
+ FROM {table_name}
+ ) as first
+ JOIN {table_name} as second
+ ON first.uid = second.uid
+ WHERE {table_name}.uid = first.uid;
+ """
+
+ @staticmethod
+ def calc_avg_cum_disp() -> str:
+ """Calculate average cumulative displacement per patch.
+
+ This method generates an SQL query to calculate the average cumulative
+ displacement for each patch by averaging the displacement values of points
+ within each patch. It assumes that the point table contains a geometry column,
+ a displacement column, and that the patch table contains a geometry column
+ and a unique identifier for each patch.
+
+ :return: SQL query string to calculate average cumulative displacement per patch.
+ :rtype: str
+ """
+ return f"""
+ ALTER TABLE patches ADD COLUMN avg_cum_disp DOUBLE DEFAULT 0.0;
+ UPDATE patches
+ SET avg_cum_disp = (
+ SELECT AVG(displacement)
+ FROM pspoint
+ WHERE patch_id = patches.uid
+ );
+ """
+
+ @staticmethod
+ def calc_avg_velocity(
+ time_vector: list[float],
+ field_names: list[str],
+ table_name: str = "pspoint",
+ ) -> str:
+ """Calculate average velocity using linear regression.
+
+ This method generates an SQL query to calculate the average velocity for
+ each point in a table using linear regression on displacement values over time.
+ It assumes that the input table contains columns for displacement values at different dates and that the time vector is provided in days.
+
+ :param time_vector: List of time differences in days from the first date.
+ :type time_vector: list[float]
+ :param field_names: List of column names representing displacement values at different dates.
+ :type field_names: list[str]
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to calculate average velocity.
+ :rtype: str
+ """
+ x_vals_sql = "[" + ", ".join(map(str, time_vector)) + "]::DOUBLE[]"
+
+ y_fields_sql = (
+ "[" + ", ".join(f"CAST({c} AS DOUBLE)" for c in field_names) + "]"
+ )
+
+ return f"""
+ ALTER TABLE {table_name} ADD COLUMN avg_velocity_gcp DOUBLE;
+ WITH pairs AS (
+ SELECT
+ uid,
+ list_element({y_fields_sql}, idx) as y,
+ list_element({x_vals_sql}, idx) as x,
+ patch_id
+ FROM {table_name}
+ CROSS JOIN UNNEST(range(1, {len(field_names)} + 1)) AS u(idx)
+ WHERE patch_id IS NOT NULL
+ ),
+ slopes AS (
+ SELECT
+ uid,
+ regr_slope(y, x) AS slope
+ FROM pairs
+ WHERE y IS NOT NULL AND x IS NOT NULL
+ GROUP BY uid
+ )
+ UPDATE {table_name} AS t
+ SET avg_velocity_gcp = s.slope * 365.25 -- convert from per day to per year
+ FROM slopes AS s
+ WHERE t.uid = s.uid;
+ """
+
+ @staticmethod
+ def calc_avg_disp_ts_gcp(date_fields: list[str]):
+ """Calculate average displacement time series for patches (Average Local Displacement (ALD)).
+
+ This method generates an SQL query to calculate the average displacement
+ time series for each patch by averaging the displacement values of points within each patch
+ for the specified date fields. It assumes that the point table contains a geometry column,
+ displacement columns for each date field, and that the patch table contains a geometry column
+ and a unique identifier for each patch.
+
+ :param date_fields: List of column names representing displacement values at different dates.
+ :type date_fields: list[str]
+ :return: SQL query string to calculate average displacement time series per patch.
+ :rtype: str
+ """
+ expression = ", ".join([f"AVG({i})" for i in (date_fields)])
+
+ return f"""
+ ALTER TABLE patches ADD COLUMN avg_disp_ts_gcp DOUBLE[];
+ UPDATE patches
+ SET avg_disp_ts_gcp = subquery.disp_ts
+ FROM (
+ SELECT
+ patch_id,
+ ARRAY[{expression}] AS disp_ts
+ FROM pspoint
+ WHERE patch_id IS NOT NULL
+ GROUP BY patch_id
+ ) AS subquery
+ WHERE patches.uid = subquery.patch_id;
+ """
+
+ @staticmethod
+ def calc_std_disp_ts_gcp(date_fields: list[str]):
+ """Calculate standard deviation of displacement time series for patches based on global control point (GCP).
+
+ This method generates an SQL query to calculate the standard deviation
+ of displacement time series for each patch by computing the standard deviation of displacement values of points within each patch for the specified date fields.
+
+ :param date_fields: List of column names representing displacement values at different dates.
+ :type date_fields: list[str]
+ :return: SQL query string to calculate standard deviation of displacement time series per patch.
+ :rtype: str
+ """
+
+ expression = ", ".join([f"stddev_pop({i})" for i in (date_fields)])
+
+ return f"""
+ ALTER TABLE patches ADD COLUMN std_disp_ts_gcp DOUBLE[];
+ UPDATE patches
+ SET std_disp_ts_gcp = subquery.disp_ts
+ FROM (
+ SELECT
+ patch_id,
+ ARRAY[{expression}] AS disp_ts
+ FROM pspoint
+ WHERE patch_id IS NOT NULL
+ GROUP BY patch_id
+ ) AS subquery
+ WHERE patches.uid = subquery.patch_id;
+ """
+
+ @staticmethod
+ def select_lcps(table_name: str = "pspoint") -> str:
+ """Select linear control points (LCPs) for patches.
+
+ This method generates an SQL query to select local control points (LCPs) for each patch by identifying the point with the minimum absolute average velocity within each patch.
+
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to select LCPs for patches.
+ :rtype: str
+ """
+
+ return f"""
+ ALTER TABLE patches ADD COLUMN lcp_uid INTEGER;
+ WITH min_velocities AS (
+ SELECT
+ patch_id,
+ MIN(ABS(avg_velocity_gcp)) AS min_velocity
+ FROM {table_name}
+ WHERE patch_id IS NOT NULL
+ GROUP BY patch_id
+ )
+ UPDATE patches
+ SET lcp_uid = subquery.uid
+ FROM (
+ SELECT
+ p.patch_id,
+ p.uid
+ FROM {table_name} AS p
+ JOIN min_velocities AS mv
+ ON p.patch_id = mv.patch_id
+ AND ABS(p.avg_velocity_gcp) = mv.min_velocity
+ ) AS subquery
+ WHERE patches.uid = subquery.patch_id;
+ """
+
+ @staticmethod
+ def calc_lcp_velocity() -> str:
+ """Calculate LCP velocity for patches.
+
+ This method generates an SQL query to calculate the velocity of the linear control point (LCP)
+ for each patch by retrieving the average velocity of the point identified as the LCP.
+
+ :return: SQL query string to calculate LCP velocity for patches.
+ :rtype: str
+ """
+ return f"""
+ ALTER TABLE patches ADD COLUMN lcp_velocity FLOAT;
+ WITH subquery AS (
+ SELECT patch_id, avg_velocity_gcp
+ FROM pspoint
+ WHERE uid IN (
+ SELECT lcp_uid
+ FROM patches
+ WHERE lcp_uid IS NOT NULL
+ )
+ )
+ UPDATE patches
+ SET lcp_velocity = subquery.avg_velocity_gcp
+ FROM subquery
+ WHERE patches.uid = subquery.patch_id;
+ """
+
+ @staticmethod
+ def calc_avg_velocity_gcp(table_name: str = "pspoint") -> str:
+ """Calculate average velocity based on ground control points (GCPs) for patches.
+
+ This method generates an SQL query to calculate the average velocity for each patch based on the average velocities of points within each patch.
+
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to calculate average velocity based on GCPs for patches.
+ :rtype: str
+ """
+
+ return f"""
+ ALTER TABLE patches ADD COLUMN avg_gcp_velocity FLOAT;
+ UPDATE patches
+ SET avg_gcp_velocity = subquery.avg_vel
+ FROM (
+ SELECT
+ patch_id,
+ AVG(avg_velocity_gcp) AS avg_vel
+ FROM {table_name}
+ WHERE patch_id IS NOT NULL
+ GROUP BY patch_id
+ ) AS subquery
+ WHERE patches.uid = subquery.patch_id
+ """
+
+ @staticmethod
+ def calc_avg_std_disp_ts_lcp(
+ date_fields: list[str], table_name: str = "pspoint"
+ ) -> str:
+ """Calculate average and standard deviation of displacement time series based on LCPs.
+
+ This method generates an SQL query to calculate the average and standard
+ deviation of displacement time series for each patch based on the displacement
+ values of points within each patch relative to the local control point (LCP).
+ It assumes that the point table contains columns for displacement values at
+ different dates and that the patch table contains a geometry column and a unique
+ identifier for each patch.
+
+ :param date_fields: List of column names representing displacement values at different dates.
+ :type date_fields: list[str]
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to calculate average and standard deviation of displacement time series based on LCPs.
+ :rtype: str
+ """
+ expression_to_select_date_fields = (
+ "[" + ", ".join([i for i in date_fields]) + "]"
+ )
+ indices = range(1, len(date_fields) + 1)
+ expression_to_explode = ",".join(
+ f"list_extract(displacement, {i}) as {date_fields[i-1]}"
+ for i in indices
+ )
+ expresion_for_avg_per_date = ", ".join([f"AVG({i})" for i in date_fields])
+ expresion_for_std_per_date = ", ".join(
+ [f"stddev_pop({i})" for i in date_fields]
+ )
+ return f"""
+ ALTER TABLE patches ADD COLUMN avg_disp_ts_lcp DOUBLE[];
+ ALTER TABLE patches ADD COLUMN std_disp_ts_lcp DOUBLE[];
+ WITH y as (
+ SELECT patch_id, {expression_to_select_date_fields} as y
+ FROM {table_name}
+ WHERE patch_id IS NOT NULL
+ ),
+ x as (
+ SELECT patch_id, {expression_to_select_date_fields} as x
+ FROM {table_name}
+ WHERE uid IN (SELECT lcp_uid FROM patches WHERE lcp_uid IS NOT NULL)
+ ),
+ process as (
+ SELECT
+ x.patch_id,
+ list_transform(list_zip(y.y, x.x), arr -> arr[1] - arr[2]) as displacement
+ FROM x
+ JOIN y
+ ON x.patch_id = y.patch_id
+ ),
+ exploded AS (
+ SELECT
+ patch_id,
+ {expression_to_explode}
+ FROM process
+ ),
+ final AS (
+ SELECT
+ patch_id,
+ ARRAY[{expresion_for_avg_per_date}] AS avg_disp_ts_lcp,
+ ARRAY[{expresion_for_std_per_date}] AS std_disp_ts_lcp
+ FROM exploded
+ GROUP BY patch_id
+ )
+ UPDATE patches
+ SET avg_disp_ts_lcp = final.avg_disp_ts_lcp,
+ std_disp_ts_lcp = final.std_disp_ts_lcp
+ FROM final
+ WHERE patches.uid = final.patch_id;
+ """
+
+ @staticmethod
+ def calc_med_std_disp_ts_lcp(
+ date_fields: list[str], table_name: str = "pspoint"
+ ) -> str:
+ """Calculate average and standard deviation of displacement time series based on LCPs.
+
+ This method generates an SQL query to calculate the average and standard
+ deviation of displacement time series for each patch based on the displacement
+ values of points within each patch relative to the local control point (LCP).
+ It assumes that the point table contains columns for displacement values at
+ different dates and that the patch table contains a geometry column and a unique
+ identifier for each patch.
+
+ :param date_fields: List of column names representing displacement values at different dates.
+ :type date_fields: list[str]
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to calculate average and standard deviation of displacement time series based on LCPs.
+ :rtype: str
+ """
+ expression_to_select_date_fields = (
+ "[" + ", ".join([i for i in date_fields]) + "]"
+ )
+ indices = range(1, len(date_fields) + 1)
+ expression_to_explode = ",".join(
+ f"list_extract(displacement, {i}) as {date_fields[i-1]}"
+ for i in indices
+ )
+ expresion_for_avg_per_date = ", ".join([f"AVG({i})" for i in date_fields])
+ expresion_for_std_per_date = ", ".join(
+ [f"stddev_pop({i})" for i in date_fields]
+ )
+ return f"""
+ ALTER TABLE patches ADD COLUMN med_disp_ts_lcp DOUBLE[];
+ ALTER TABLE patches ADD COLUMN med_std_disp_ts_lcp DOUBLE[];
+ WITH y as (
+ SELECT patch_id, {expression_to_select_date_fields} as y
+ FROM {table_name}
+ WHERE patch_id IS NOT NULL
+ ),
+ x as (
+ SELECT patch_id, {expression_to_select_date_fields} as x
+ FROM {table_name}
+ WHERE uid IN (SELECT lcp_uid FROM patches WHERE lcp_uid IS NOT NULL)
+ ),
+ process as (
+ SELECT
+ x.patch_id,
+ list_transform(list_zip(y.y, x.x), arr -> arr[1] - arr[2]) as displacement
+ FROM x
+ JOIN y
+ ON x.patch_id = y.patch_id
+ ),
+ exploded AS (
+ SELECT
+ patch_id,
+ {expression_to_explode}
+ FROM process
+ ),
+ final AS (
+ SELECT
+ patch_id,
+ ARRAY[{expresion_for_avg_per_date}] AS med_disp_ts_lcp,
+ ARRAY[{expresion_for_std_per_date}] AS med_std_disp_ts_lcp
+ FROM exploded
+ GROUP BY patch_id
+ )
+ UPDATE patches
+ SET med_disp_ts_lcp = final.med_disp_ts_lcp,
+ med_std_disp_ts_lcp = final.med_std_disp_ts_lcp
+ FROM final
+ WHERE patches.uid = final.patch_id;
+ """
+
+ @staticmethod
+ def calc_avg_velocity_lcp(table_name: str = "pspoint") -> str:
+ """Calculate average velocity based on local control points (LCPs) for points.
+
+ This method generates an SQL query to calculate the average velocity for each point
+ based on the average velocity of the local control point (LCP) associated with the patch
+ to which the point belongs. It assumes that the point table contains a geometry column,
+ an average velocity column based on ground control points (GCPs), and that the patch table
+ contains a geometry column, a unique identifier for each patch, and the average velocity
+ of the LCP.
+
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to calculate average velocity based on LCPs for points.
+ :rtype: str
+ """
+ return f"""
+ ALTER TABLE {table_name} ADD COLUMN avg_velocity_lcp DOUBLE;
+ WITH y AS (
+ SELECT uid, patch_id, avg_velocity_gcp
+ FROM {table_name}
+ WHERE patch_id IS NOT NULL
+ ),
+ x AS (
+ SELECT uid, lcp_velocity, lcp_uid
+ FROM patches
+ WHERE lcp_uid IS NOT NULL
+ )
+ UPDATE {table_name}
+ SET avg_velocity_lcp = subquery.avg_velocity_lcp
+ FROM (
+ SELECT
+ y.avg_velocity_gcp - x.lcp_velocity AS avg_velocity_lcp,
+ y.uid as uid
+ FROM x
+ JOIN y ON x.uid = y.patch_id
+ ) AS subquery
+ WHERE {table_name}.uid = subquery.uid;
+ """
+
+ @staticmethod
+ def calc_avg_lcp_velocity(table_name: str = "pspoint") -> str:
+ """Calculate average LCP velocity per patch.
+
+ This method generates an SQL query to calculate the average velocity of
+ local control points (LCPs) for each patch by averaging the average velocities
+ of points within each patch based on their LCP velocities.
+
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to calculate average LCP velocity per patch.
+ :rtype: str
+ """
+ return f"""
+ ALTER TABLE patches ADD COLUMN avg_lcp_velocity FLOAT;
+ UPDATE patches
+ SET avg_lcp_velocity = subquery.avg_vel
+ FROM (
+ SELECT
+ patch_id,
+ AVG(avg_velocity_lcp) as avg_vel
+ FROM {table_name}
+ WHERE patch_id IS NOT NULL
+ GROUP BY patch_id
+ ) AS subquery
+ WHERE patches.uid = subquery.patch_id
+ """
+
+ @staticmethod
+ def calc_outliers(scaling_factor: float, table_name: str = "pspoint") -> str:
+ """Identify outlier points based on absolute average velocity.
+
+ This method generates an SQL query to identify outlier points based on their
+ average velocity relative to local control points (LCPs). Points with an absolute
+ average LCP velocity exceeding a specified threshold (5 mm/year) are
+ marked as outliers by assigning their unique identifier to a new column in the
+ patches table. The unit parameter allows for specifying the measurement unit
+ (meters, centimeters, or millimeters) to appropriately scale the threshold.
+
+ :param scaling_factor: The factor to scale the velocity threshold based on the unit.
+ :type scaling_factor: float
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to identify outlier points.
+ :rtype: str
+ """
+
+ return f"""
+ CREATE OR REPLACE TABLE outliers AS
+ SELECT patch_id, uid
+ FROM {table_name}
+ WHERE ABS(avg_velocity_lcp) > 5 / {scaling_factor}
+ AND patch_id IS NOT NULL;
+ ALTER TABLE outliers ADD COLUMN criteria VARCHAR;
+ UPDATE outliers SET criteria = 'threshold';
+ """
+
+ @staticmethod
+ def calc_outliers_avg_lcd(
+ table_name: str = "pspoint", date_vector=list[int], date_names=list[str]
+ ) -> str:
+ """Calculate outliers based on average local control displacement (LCD).
+
+ This method generates an SQL query to identify outlier points based on their
+ displacement time series relative to the average local control displacement (LCD)
+ of their associated patches. Points with displacement values exceeding the average
+ LCD by more than standard deviations at any time point are marked as outliers
+ by inserting their unique identifier and patch ID into a new outliers table.
+
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :param date_vector: List of time differences in days from the first date.
+ :type date_vector: list[int]
+ :param date_names: List of column names representing displacement values at different dates.
+ :type date_names: list[str]
+ :return: SQL query string to identify outlier points based on average LCD.
+ :rtype: str
+ """
+
+ if date_vector.max() < 730:
+ return ""
+
+ first_index = npwhere(date_vector >= date_vector - 730)[0][0]
+ column_select = ", ".join(date_names[first_index:])
+
+ return f"""
+ with underthreshold as (
+ SELECT
+ uid,
+ patch_id,
+ ARRAY[{column_select}] as disp_ts
+ FROM {table_name}
+ WHERE uid NOT IN (SELECT uid FROM outliers)
+ AND patch_id IS NOT NULL
+ ),
+ sel_ts as (
+ SELECT
+ uid,
+ avg_disp_ts_lcp[{first_index}:] as avg,
+ std_disp_ts_lcp[{first_index}:] as std,
+ FROM patches
+ WHERE patches.uid IN (SELECT patch_id FROM underthreshold)
+ ),
+ joined as (
+ SELECT * from underthreshold
+ JOIN sel_ts on sel_ts.uid = underthreshold.patch_id
+ ),
+ ald_points as (
+ SELECT
+ uid,
+ patch_id,
+ list_min(
+ list_apply(
+ array_zip(disp_ts, avg, std),
+ x -> abs(x[1]-x[2]) > x[3]
+ )
+ ) as all_greater
+ FROM joined
+ WHERE all_greater = true
+ )
+ INSERT INTO outliers (uid, patch_id, criteria)
+ SELECT uid, patch_id, 'ald' FROM ald_points
+ """
+
+ @staticmethod
+ def calc_outliers_med_lcd(
+ table_name: str = "pspoint", date_vector=list[int], date_names=list[str]
+ ) -> str:
+ """Calculate outliers based on median local control displacement (LCD).
+
+ This method generates an SQL query to identify outlier points based on their
+ displacement time series relative to the median local control displacement (LCD)
+ of their associated patches. Points with displacement values exceeding the median
+ LCD by more than standard deviations at any time point are marked as outliers
+ by inserting their unique identifier and patch ID into a new outliers table.
+
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :param date_vector: List of time differences in days from the first date.
+ :type date_vector: list[int]
+ :param date_names: List of column names representing displacement values at different dates.
+ :type date_names: list[str]
+ :return: SQL query string to identify outlier points based on median LCD.
+ :rtype: str
+ """
+
+ if date_vector.max() < 730:
+ return ""
+
+ first_index = npwhere(date_vector >= date_vector - 730)[0][0]
+ column_select = ", ".join(date_names[first_index:])
+
+ return f"""
+ with underthreshold as (
+ SELECT
+ uid,
+ patch_id,
+ ARRAY[{column_select}] as disp_ts
+ FROM {table_name}
+ WHERE uid NOT IN (SELECT uid FROM outliers)
+ AND patch_id IS NOT NULL
+ ),
+ sel_ts as (
+ SELECT
+ uid,
+ med_disp_ts_lcp[{first_index}:] as med,
+ med_std_disp_ts_lcp[{first_index}:] as std,
+ FROM patches
+ WHERE patches.uid IN (SELECT uid FROM underthreshold)
+ ),
+ joined as (
+ SELECT * from underthreshold
+ JOIN sel_ts on sel_ts.uid = underthreshold.patch_id
+ ),
+ med_points as (
+ SELECT
+ uid,
+ patch_id,
+ list_min(
+ list_apply(
+ array_zip(disp_ts, med, std),
+ x -> abs(x[1]-x[2]) > x[3]
+ )
+ ) as all_greater
+ FROM joined
+ WHERE all_greater = true
+ )
+ INSERT INTO outliers (uid, patch_id, criteria)
+ SELECT uid, patch_id, 'med' FROM med_points
+ """
+
+ @staticmethod
+ def lcp_ts_patch(date_fields: list[str], table_name: str = "pspoint"):
+ """Get Local Control Point's displacement time series for patches.
+
+ This method generates an SQL query to retrieve the displacement time series
+ of the local control point (LCP) for each patch based on specified date fields.
+
+ :param date_fields: List of column names representing displacement values at different dates.
+ :type date_fields: list[str]
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to get LCP displacement time series for patches.
+ :rtype: str
+
+ """
+ date_fields_str = "[" + ", ".join(date_fields) + "]"
+ return f"""
+ ALTER TABLE patches ADD COLUMN lcp_disp_ts DOUBLE[];
+ UPDATE patches
+ SET lcp_disp_ts = subquery.disp_ts
+ FROM (
+ SELECT
+ p.patch_id,
+ {date_fields_str} AS disp_ts
+ FROM {table_name} AS p
+ JOIN patches AS pa
+ ON p.uid = pa.lcp_uid
+ WHERE p.patch_id IS NOT NULL
+ -- GROUP BY p.patch_id
+ ) AS subquery
+ WHERE patches.uid = subquery.patch_id;
+ """
+
+ def outlier_ts_patch(date_fields: list[str], table_name: str = "pspoint"):
+ """Get outlier displacement time series for patches.
+
+ This method generates an SQL query to retrieve the displacement time series
+ of outlier points based on specified date fields.
+
+ :param date_fields: List of column names representing displacement values at different dates.
+ :type date_fields: list[str]
+ :param table_name: The name of the table containing the points, default is "pspoint".
+ :type table_name: str
+ :return: SQL query string to get outlier displacement time series for patches.
+ :rtype: str
+ """
+
+ date_fields_str = "[" + ", ".join(date_fields) + "]"
+ return f"""
+ ALTER TABLE outliers ADD COLUMN disp_ts DOUBLE[];
+ UPDATE outliers
+ SET disp_ts = subquery.disp_ts
+ FROM (
+ SELECT
+ p.uid,
+ {date_fields_str} AS disp_ts
+ FROM {table_name} AS p
+ WHERE p.uid IN (SELECT uid FROM outliers)
+ ) AS subquery
+ WHERE outliers.uid = subquery.uid;
+ """
+
+ @staticmethod
+ def outlier_rel_ts_patch():
+ """Calculate outlier displacement time series relative to LCP for patches.
+
+ This method generates an SQL query to calculate the displacement time series
+ of outlier points relative to the displacement time series of their associated
+ local control points (LCPs). It assumes that the outliers table contains a
+ geometry column, a displacement time series column, and a patch ID column,
+ and that the patches table contains a geometry column, a unique identifier
+ for each patch, and a displacement time series column for the LCP.
+
+ :return: SQL query string to calculate outlier displacement time series relative to LCP for patches.
+ :rtype: str
+ """
+ return f"""
+ ALTER TABLE outliers ADD COLUMN rel_ts DOUBLE[];
+ with p_lcp as (
+ SELECT uid, lcp_disp_ts
+ FROM patches
+ WHERE lcp_uid IS NOT NULL
+ ),
+ p_out as (
+ SELECT o.uid, o.patch_id, o.disp_ts, p_lcp.lcp_disp_ts
+ FROM outliers AS o
+ JOIN p_lcp
+ ON o.patch_id = p_lcp.uid
+ )
+ UPDATE outliers
+ SET rel_ts = list_transform(
+ p_out.disp_ts,
+ (value, idx) -> value - list_element(p_out.lcp_disp_ts, idx)
+ )
+ FROM p_out
+ WHERE outliers.uid = p_out.uid
+ """
+
+ class Visualisation:
+ """SQL queries for visualisation of results.
+
+ 2D visualisation is done in Web Mercator (EPSG:3857).
+ """
+
+ projection = "EPSG:3857"
+
+ @staticmethod
+ def get_table_bbox(table_name: str, source_crs: str) -> str:
+ """Get the bounding box of a table in a specified projection.
+
+ This method generates an SQL query to retrieve the bounding box of geometries
+ from a specified table, transforming the geometries from a source CRS to
+ a target projection defined in the Visualisation class.
+
+ :param table_name: The name of the table to get the bounding box from.
+ :type table_name: str
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :return: SQL query string to get the bounding box of the table.
+ :rtype: str"""
+ return f"""
+ with transformed as (
+ SELECT
+ ST_TRANSFORM(geom, '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true) as geom
+ FROM {table_name}
+ )
+ SELECT
+ MIN(ST_XMIN(geom)) AS min_x,
+ MIN(ST_YMIN(geom)) AS min_y,
+ MAX(ST_XMAX(geom)) AS max_x,
+ MAX(ST_YMAX(geom)) AS max_y
+ FROM transformed;
+ """
+
+ @staticmethod
+ def get_ps_density(source_crs: str) -> str:
+ """Get point density per patch.
+
+ This method generates an SQL query to retrieve the point density for each patch,
+ transforming the geometries from a source CRS to a target projection defined
+ in the Visualisation class.
+
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :return: SQL query string to get the point density per patch.
+ :rtype: str
+ """
+ return f"""
+ SELECT
+ ST_AsWKB(ST_TRANSFORM(geom, '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true)) AS geom,
+ ps_density
+ FROM patches
+ """
+
+ @staticmethod
+ def get_outliers_map(source_crs: str, scaling_factor: float) -> str:
+ """Get outlier points based on absolute average LCP velocity.
+
+ This method generates an SQL query to retrieve outlier points based on their
+ average velocity relative to local control points (LCPs). Points with an absolute
+ average LCP velocity exceeding a specified threshold (5 mm/year) are
+ marked as outliers by assigning their unique identifier to a new column in the
+ patches table. The unit parameter allows for specifying the measurement unit
+ (meters, centimeters, or millimeters) to appropriately scale the threshold.
+
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :param scaling_factor: The factor to scale the velocity threshold based on the unit.
+ :type scaling_factor: float
+ :return: SQL query string to identify outlier points.
+ :rtype: str
+ """
+ return f"""
+ SELECT
+ ST_AsWKB(ST_TRANSFORM(geom, '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true)) AS geom,
+ ABS(avg_velocity_lcp) * {scaling_factor} AS velocity,
+ FROM pspoint
+ WHERE uid IN (SELECT uid FROM outliers)
+ ORDER BY velocity ASC;
+ """
+
+ @staticmethod
+ def get_cum_disp_map(source_crs: str, scaling_factor: float) -> str:
+ """Get cumulative displacement per patch.
+
+ This method generates an SQL query to retrieve the cumulative displacement
+ for each patch, transforming the geometries from a source CRS to a target
+ projection defined in the Visualisation class.
+
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :param unit: The measurement unit for displacement ("m", "cm", or "mm").
+ :type unit: str
+ :return: SQL query string to get the cumulative displacement per patch.
+ :rtype: str
+ """
+ # scaling_factor = [1, 100, 1000][["m", "cm", "mm"].index(unit)]
+ return f"""
+ SELECT
+ ST_AsWKB(ST_TRANSFORM(geom, '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true)) AS geom,
+ avg_cum_disp * {scaling_factor} AS cum_disp
+ FROM patches
+ WHERE avg_cum_disp IS NOT NULL
+ ORDER BY cum_disp ASC;
+ """
+
+ @staticmethod
+ def get_ps_vel_gcp(source_crs: str, scaling_factor: float) -> str:
+ """Get average velocity based on ground control points (GCPs).
+ This method generates an SQL query to retrieve the average velocity for
+ each point based on ground control points (GCPs), transforming the geometries
+ from a source CRS to a target projection defined in the Visualisation class.
+
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :param unit: The measurement unit for velocity ("m", "cm", or "mm").
+ :type unit: str
+ :return: SQL query string to get the average velocity based on GCPs.
+ :rtype: str
+ """
+ return f"""
+ SELECT
+ ST_AsWKB(ST_TRANSFORM(geom, '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true)) AS geom,
+ avg_velocity_gcp * {scaling_factor} AS velocity
+ FROM pspoint
+ WHERE patch_id IS NOT NULL
+ ORDER BY velocity ASC;
+ """
+
+ @staticmethod
+ def get_ps_vel_lcp(source_crs: str, scaling_factor: float) -> str:
+ """Get average velocity based on local control points (LCPs).
+
+ This method generates an SQL query to retrieve the average velocity for
+ each point based on local control points (LCPs), transforming the geometries
+ from a source CRS to a target projection defined in the Visualisation class.
+
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :param unit: The measurement unit for velocity ("m", "cm", or "mm").
+ :type unit: str
+ :return: SQL query string to get the average velocity based on LCPs.
+ :rtype: str
+ """
+ return f"""
+ SELECT
+ ST_AsWKB(ST_TRANSFORM(geom, '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true)) AS geom,
+ ABS(avg_velocity_lcp) * {scaling_factor} AS velocity
+ FROM pspoint
+ WHERE patch_id IS NOT NULL
+ ORDER BY velocity ASC;
+ """
+
+ @staticmethod
+ def get_center(point_uid: float, source_crs: str) -> str:
+ """Get the center point of the outlier within a specific patch.
+
+ This method generates an SQL query to retrieve the center point of the outlier
+ within a specific patch, transforming the geometry from a source CRS to a target
+ projection defined in the Visualisation class.
+
+ :param point_uid: The unique identifier of the outlier point.
+ :type point_uid: float
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :return: SQL query string to get the center point of the outlier within the specified patch.
+ """
+ return f"""
+ SELECT
+ ST_AsWKB(ST_TRANSFORM(ST_Centroid(geom), '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true)) AS geom
+ FROM pspoint
+ WHERE uid = {point_uid}
+ """
+
+ @staticmethod
+ def get_patch_center(patch_id: float, source_crs: str) -> str:
+ """Get the center point of a specific patch.
+
+ This method generates an SQL query to retrieve the center point of a specific
+ patch, transforming the geometry from a source CRS to a target projection defined in the Visualisation class.
+
+ :param patch_id: The unique identifier of the patch.
+ :type patch_id: float
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :return: SQL query string to get the center point of the specified patch.
+ """
+ return f"""
+ SELECT
+ ST_AsWKB(ST_TRANSFORM(ST_Centroid(geom), '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true)) AS geom
+ FROM patches
+ WHERE uid = {patch_id}
+ """
+
+ @staticmethod
+ def get_ps_points(patch_id: float, source_crs: str, table_name: str) -> str:
+ """Get points within a specific patch.
+
+ This method generates an SQL query to retrieve points within a specific patch,
+ transforming the geometries from a source CRS to a target projection defined
+ in the Visualisation class.
+
+ :param patch_id: The unique identifier of the patch.
+ :type patch_id: float
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :param table_name: The name of the table containing the points.
+ :type table_name: str
+ :return: SQL query string to get the points within the specified patch.
+ :rtype: str
+ """
+ return f"""
+ SELECT
+ ST_AsWKB(ST_TRANSFORM(geom, '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true)) AS geom,
+ FROM {table_name}
+ WHERE patch_id = {patch_id}
+ """
+
+ @staticmethod
+ def get_lcp_point(patch_id: float, source_crs: str) -> str:
+ """Get the local control point (LCP) within a specific patch.
+
+ This method generates an SQL query to retrieve the local control point (LCP)
+ within a specific patch, transforming the geometry from a source CRS to a target
+ projection defined in the Visualisation class.
+
+ :param patch_id: The unique identifier of the patch.
+ :type patch_id: float
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :return: SQL query string to get the LCP within the specified patch.
+ """
+ return f"""
+ SELECT
+ ST_AsWKB(ST_TRANSFORM(geom, '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true)) AS geom
+ FROM pspoint
+ WHERE uid = (
+ SELECT lcp_uid
+ FROM patches
+ WHERE uid = {patch_id}
+ )
+ """
+
+ @staticmethod
+ def get_outlier_points(patch_id: float, source_crs: str) -> str:
+ """Get the outlier points within a specific patch.
+
+ This method generates an SQL query to retrieve the outlier point within a specific patch,
+ transforming the geometry from a source CRS to a target projection defined in the Visualisation class.
+
+ :param patch_id: The unique identifier of the patch.
+ :type patch_id: float
+ :param source_crs: The source coordinate reference system of the geometries.
+ :type source_crs: str
+ :return: SQL query string to get the outlier point within the specified patch.
+ """
+ return f"""
+ SELECT
+ uid,
+ ST_AsWKB(ST_TRANSFORM(geom, '{source_crs}', '{Pipeline.Visualisation.projection}', always_xy := true)) AS geom
+ FROM pspoint
+ WHERE uid IN (
+ SELECT uid
+ FROM outliers
+ WHERE patch_id = {patch_id}
+ )
+ """
+
+ @staticmethod
+ def get_cum_disp_graph(outlier_id: float, scaling_factor: float) -> str:
+ """Get outlier displacement time series.
+
+ This method generates an SQL query to retrieve the outlier displacement time series
+ for a specific patch, scaling the displacement values by a specified factor.
+
+ :param outlier_id: The unique identifier of the patch.
+ :type outlier_id: float
+ :param scaling_factor: The factor to scale the displacement values.
+ :type scaling_factor: float
+ :return: SQL query string to get the outlier displacement time series for the specified patch.
+ """
+ return f"""
+ SELECT
+ list_transform(disp_ts, x -> x * {scaling_factor})
+ FROM outliers
+ WHERE uid = {outlier_id}
+ """
+
+ @staticmethod
+ def get_avg_cum_disp_graph(patch_id: float, scaling_factor: float) -> str:
+ """Get average cumulative displacement time series.
+
+ This method generates an SQL query to retrieve the average cumulative displacement
+ time series for a specific patch, scaling the displacement values by a specified factor.
+
+ :param patch_id: The unique identifier of the patch.
+ :type patch_id: float
+ :param scaling_factor: The factor to scale the displacement values.
+ :type scaling_factor: float
+ :return: SQL query string to get the average cumulative displacement time series for the specified patch.
+ """
+ return f"""
+ SELECT
+ list_transform(avg_disp_ts_gcp, x -> x * {scaling_factor})
+ FROM patches
+ WHERE uid = {patch_id}
+ """
+
+ @staticmethod
+ def get_std_cum_disp_graph(patch_id: float, scaling_factor: float) -> str:
+ """Get standard deviation of cumulative displacement time series.
+
+ This method generates an SQL query to retrieve the standard deviation of cumulative
+ displacement time series for a specific patch, scaling the displacement values by a specified factor.
+
+ :param patch_id: The unique identifier of the patch.
+ :type patch_id: float
+ :param scaling_factor: The factor to scale the displacement values.
+ :type scaling_factor: float
+ :return: SQL query string to get the standard deviation of cumulative displacement time series for the specified patch.
+ """
+ return f"""
+ SELECT
+ list_transform(std_disp_ts_gcp, x -> x * {scaling_factor})
+ FROM patches
+ WHERE uid = {patch_id}
+ """
+
+ def get_outlier_rel_ts_graph(outlier_id: float, scaling_factor: float) -> str:
+ # TODO: check the logic here
+ """Get outlier relative displacement time series.
+
+ This method generates an SQL query to retrieve the outlier relative displacement
+ time series for a specific patch, scaling the displacement values by a specified factor.
+
+ :param outlier_id: The unique identifier of the patch.
+ :type outlier_id: float
+ :param scaling_factor: The factor to scale the displacement values.
+ :type scaling_factor: float
+ :return: SQL query string to get the outlier relative displacement time series for the specified patch.
+ """
+ return f"""
+ SELECT
+ list_transform(rel_ts, x -> x * {scaling_factor})
+ FROM outliers
+ WHERE uid = {outlier_id}
+ """
+
+ @staticmethod
+ def get_lcp_disp_graph(patch_id: float, scaling_factor: float) -> str:
+ """Get local control point (LCP) displacement time series.
+
+ This method generates an SQL query to retrieve the local control point (LCP)
+ displacement time series for a specific patch, scaling the displacement values by a specified factor.
+
+ :param patch_id: The unique identifier of the patch.
+ :type patch_id: float
+ :param scaling_factor: The factor to scale the displacement values.
+ :type scaling_factor: float
+ :return: SQL query string to get the LCP displacement time series for the specified patch.
+ """
+ return f"""
+ SELECT
+ list_transform(lcp_disp_ts, x -> x * {scaling_factor})
+ FROM patches
+ WHERE uid = {patch_id}
+ """
+
+ @staticmethod
+ def get_avg_disp_lcp_graph(patch_id: float, scaling_factor: float) -> str:
+ """Get average displacement time series based on local control points (LCPs).
+
+ This method generates an SQL query to retrieve the average displacement time series
+ based on local control points (LCPs) for a specific patch, scaling the displacement
+ values by a specified factor.
+
+ :param patch_id: The unique identifier of the patch.
+ :type patch_id: float
+ :param scaling_factor: The factor to scale the displacement values.
+ :type scaling_factor: float
+ :return: SQL query string to get the average displacement time series based on LCPs for the specified patch.
+ """
+ return f"""
+ SELECT
+ list_transform(avg_disp_ts_lcp, x -> x * {scaling_factor})
+ FROM patches
+ WHERE uid = {patch_id}
+ """
+
+ @staticmethod
+ def get_std_disp_lcp_graph(patch_id: float, scaling_factor: float) -> str:
+ """Get standard deviation of displacement time series based on local control points (LCPs).
+
+ This method generates an SQL query to retrieve the standard deviation of displacement
+ time series based on local control points (LCPs) for a specific patch, scaling the
+ displacement values by a specified factor.
+
+ :param patch_id: The unique identifier of the patch.
+ :type patch_id: float
+ :param scaling_factor: The factor to scale the displacement values.
+ :type scaling_factor: float
+ :return: SQL query string to get the standard deviation of displacement time series based on LCPs for the specified patch.
+ """
+ return f"""
+ SELECT
+ list_transform(std_disp_ts_lcp, x -> x * {scaling_factor})
+ FROM patches
+ WHERE uid = {patch_id}
+ """
+
+ @staticmethod
+ def patch_uids() -> str:
+ """Get all patch UIDs that have outliers.
+
+ This method generates an SQL query to retrieve all unique identifiers (UIDs)
+ of patches that have been identified as containing outliers.
+
+ :return: SQL query string to get all patch UIDs with outliers.
+ :rtype: str
+ """
+ return """
+ SELECT patch_id
+ FROM outliers
+ GROUP BY patch_id;
+ """
diff --git a/src/saferoad/plotter.py b/src/saferoad/plotter.py
new file mode 100644
index 0000000..a874fd7
--- /dev/null
+++ b/src/saferoad/plotter.py
@@ -0,0 +1,888 @@
+from matplotlib import pyplot as plt
+import contextily as ctx
+from shapely.wkb import loads as load_wkb
+from matplotlib.lines import Line2D
+from datetime import datetime
+import matplotlib.dates as mdates
+
+
+class Plotter:
+ """Class to create and manage plots for geospatial data analysis."""
+
+ class MapPane:
+ """
+ Class to create and manage a multi-panel map figure.
+
+ Panels include:
+ - PS Density
+ - Outliers
+ - Cumulative Displacement
+ - PS Velocity based on GCP
+ - PS Velocity based on LCP
+ """
+
+ def __init__(self):
+ self.generate_figure()
+
+ def generate_figure(self):
+ """
+ Generates a multi-panel figure with specified layout and titles.
+ """
+ fig = plt.figure(figsize=(18, 12))
+ layout = [
+ ["A", "A", "B", "B", "C", "C"], # top row: 3 panels, equal widths
+ [".", "D", "D", "E", "E", "."], # bottom row: 2 panels centered
+ ]
+ axs = fig.subplot_mosaic(layout, empty_sentinel=".")
+
+ # Optional spacing (no constrained_layout -> safer with contextily)
+ fig.subplots_adjust(wspace=0.25, hspace=0.35)
+ axs["A"].set_title("PS Density", fontsize=10)
+ axs["B"].set_title("Outliers", fontsize=10)
+ axs["C"].set_title("Cumulative Displacement", fontsize=10)
+ axs["D"].set_title("PS Velocity based on GCP", fontsize=10)
+ axs["E"].set_title("PS Velocity based on LCP", fontsize=10)
+ self.fig = fig
+ self.axs = [axs["A"], axs["B"], axs["C"], axs["D"], axs["E"]]
+
+ def plot_basemap(self, bbox: tuple[float, float, float, float]):
+ """
+ Plots a basemap on all axes using the provided bounding box.
+
+ :param bbox: A tuple representing the bounding box (minx, miny, maxx, maxy).
+ """
+ bbox = [i for i in bbox[0]]
+
+ for ax in self.axs:
+ ax.set_xlim(bbox[0] - 2000, bbox[2] + 2000)
+ ax.set_ylim(bbox[1] - 2000, bbox[3] + 4000)
+ ctx.add_basemap(
+ ax,
+ source=ctx.providers.CartoDB.Positron,
+ crs="EPSG:3857",
+ )
+
+ def plot_ps_density(self, plot_data: list[tuple]) -> None:
+ """
+ Plots PS Density data on the first axis.
+
+ :param plot_data: List of tuples containing geometry and PS density value.
+ """
+ label_store = []
+ for geom, psdensity in plot_data:
+ geom = load_wkb(geom)
+ color, label = self.ps_density_color_label(psdensity)
+ if label not in label_store:
+ label_store.append(label)
+ else:
+ label = None
+
+ self.axs[0].fill(
+ *geom.exterior.xy,
+ fc=color,
+ ec=color,
+ label=label,
+ )
+ self.axs[0].legend(
+ title="PS Density",
+ loc="upper right",
+ fontsize=6,
+ title_fontsize=6,
+ frameon=True,
+ facecolor="white",
+ edgecolor="black",
+ )
+
+ def plot_outliers(self, plot_data: list[tuple]) -> None:
+ """
+ Plots outlier data on the second axis.
+
+ :param plot_data: List of tuples containing geometry and outlier velocity value.
+ """
+ label_store = []
+ for geom, vel in plot_data:
+ geom = load_wkb(geom)
+ color, label = self.outlier_color_label(vel)
+ if label not in label_store:
+ label_store.append(label)
+ else:
+ label = None
+
+ self.axs[1].scatter(
+ *geom.xy,
+ s=10,
+ c=color,
+ label=label,
+ )
+ self.axs[1].legend(
+ title="Outlier",
+ loc="upper right",
+ fontsize=6,
+ title_fontsize=6,
+ frameon=True,
+ facecolor="white",
+ edgecolor="black",
+ )
+
+ def plot_cum_disp(self, plot_data: list[tuple]) -> None:
+ """
+ Plots cumulative displacement data on the third axis.
+
+ :param plot_data: List of tuples containing geometry and cumulative displacement value.
+ """
+ label_store = []
+ for geom, disp in plot_data:
+ geom = load_wkb(geom)
+ color, label = self.cum_disp_color_label(disp)
+ if label not in label_store:
+ label_store.append(label)
+ else:
+ label = None
+
+ self.axs[2].fill(
+ *geom.exterior.xy,
+ fc=color,
+ ec=color,
+ label=label,
+ )
+ self.axs[2].legend(
+ title="Cumulative\nDisplacement",
+ loc="upper right",
+ fontsize=6,
+ title_fontsize=6,
+ frameon=True,
+ facecolor="white",
+ edgecolor="black",
+ )
+
+ def plot_gcp_velocity(self, plot_data: list[tuple]) -> None:
+ """Plots GCP velocity data on the fourth axis.
+
+ :param plot_data: List of tuples containing geometry and GCP velocity value.
+ """
+ points, colors = [], []
+ for geom, vel in plot_data:
+ geom = load_wkb(geom)
+ points.append(geom.xy)
+ colors.append(self.gcp_vel_color(vel))
+
+ x_coords = [p[0][0] for p in points]
+ y_coords = [p[1][0] for p in points]
+
+ self.axs[3].scatter(
+ x_coords,
+ y_coords,
+ s=4,
+ c=colors,
+ alpha=0.7,
+ )
+ legend_elements = [
+ Line2D(
+ [0],
+ [0],
+ marker="o",
+ color="w",
+ markerfacecolor="red",
+ markersize=6,
+ label="(-15,-6) mm",
+ ),
+ Line2D(
+ [0],
+ [0],
+ marker="o",
+ color="w",
+ markerfacecolor="orange",
+ markersize=6,
+ label="(-6,-4) mm",
+ ),
+ Line2D(
+ [0],
+ [0],
+ marker="o",
+ color="w",
+ markerfacecolor="yellow",
+ markersize=6,
+ label="(-4,-2) mm",
+ ),
+ Line2D(
+ [0],
+ [0],
+ marker="o",
+ color="w",
+ markerfacecolor="lightgreen",
+ markersize=6,
+ label="(-2,2) mm",
+ ),
+ Line2D(
+ [0],
+ [0],
+ marker="o",
+ color="w",
+ markerfacecolor="cyan",
+ markersize=6,
+ label="(2,5) mm",
+ ),
+ Line2D(
+ [0],
+ [0],
+ marker="o",
+ color="w",
+ markerfacecolor="blue",
+ markersize=6,
+ label="(5,15) mm",
+ ),
+ ]
+
+ self.axs[3].legend(
+ handles=legend_elements,
+ title="PS Velocity GCP",
+ loc="upper right",
+ fontsize=6,
+ title_fontsize=6,
+ frameon=True,
+ facecolor="white",
+ edgecolor="black",
+ )
+
+ def plot_lcp_velocity(self, plot_data: list[tuple]) -> None:
+ """Plots LCP velocity data on the fifth axis.
+
+ :param plot_data: List of tuples containing geometry and LCP velocity value.
+ """
+ points, colors = [], []
+ for geom, vel in plot_data:
+ geom = load_wkb(geom)
+ points.append(geom.xy)
+ colors.append(self.lcp_vel_color(vel))
+ x_coords = [p[0][0] for p in points]
+ y_coords = [p[1][0] for p in points]
+
+ self.axs[4].scatter(
+ x_coords,
+ y_coords,
+ s=2,
+ c=colors,
+ alpha=0.6,
+ )
+
+ legend_elements = [
+ Line2D(
+ [0],
+ [0],
+ marker="o",
+ color="w",
+ markerfacecolor="green",
+ markersize=6,
+ label="(0,2) mm",
+ ),
+ Line2D(
+ [0],
+ [0],
+ marker="o",
+ color="w",
+ markerfacecolor="red",
+ markersize=6,
+ label="(2,12) mm",
+ ),
+ ]
+ self.axs[4].legend(
+ handles=legend_elements,
+ title="PS Velocity LCP",
+ loc="upper right",
+ fontsize=6,
+ title_fontsize=6,
+ frameon=True,
+ facecolor="white",
+ edgecolor="black",
+ )
+
+ def post_process(self):
+ """
+ Post-processes the figure for better aesthetics.
+
+ """
+ for i in [1, 2, 4]:
+ self.axs[i].get_yaxis().set_visible(False)
+ xticks = self.axs[i].get_xticks()
+ self.axs[i].set_xticks(xticks[::2]) # Keep every other tick
+ self.axs[i].set_xticklabels(self.axs[i].get_xticks())
+ for i in [0, 3]:
+ yticks = self.axs[i].get_yticks()
+ self.axs[i].set_yticks(yticks[::3]) # Keep every other tick
+ self.axs[i].set_yticklabels(
+ self.axs[i].get_yticks(),
+ horizontalalignment="center",
+ verticalalignment="center",
+ )
+ xticks = self.axs[i].get_xticks()
+ self.axs[i].set_xticks(xticks[::2]) # Keep every other tick
+ self.axs[i].set_xticklabels(self.axs[i].get_xticks())
+
+ # self.fig.tight_layout()
+
+ def get_figure(self) -> tuple[plt.Figure, list[plt.Axes]]:
+ """
+ Returns the figure and axes.
+
+ :return: Tuple containing the figure and axes.
+ :rtype: tuple[plt.Figure, list[plt.Axes]]
+ """
+ return self.fig, self.axs
+
+ def outlier_color_label(self, value: float) -> tuple[str, str]:
+ """Returns color and label based on outlier velocity value.
+
+ :param value: Outlier velocity value.
+ :type value: float
+ :return: Tuple containing color and label.
+ :rtype: tuple[str, str]
+ """
+ if 5 <= value <= 7:
+ return "yellow", "5<|v|<7 mm/yr"
+ elif 7 < value <= 9:
+ return "orange", "7<|v|<9 mm/yr"
+ else:
+ return "red", "9<|v|<12 mm/yr"
+
+ def ps_density_color_label(self, value: float) -> tuple[str, str]:
+ """Returns color and label based on PS density value.
+
+ :param value: PS density value.
+ :type value: float
+ :return: Tuple containing color and label.
+ :rtype: tuple[str, str]
+ """
+ if value < 100:
+ return "red", "Low"
+ if 100 <= value < 500:
+ return "yellow", "Medium"
+ else:
+ return "green", "High"
+
+ def cum_disp_color_label(self, value: float) -> str:
+ """Returns color and label based on cumulative displacement value.
+
+ :param value: Cumulative displacement value.
+ :type value: float
+ :return: Tuple containing color and label.
+ :rtype: tuple[str, str]
+ """
+ if value < -20:
+ return "red", "(-60,-20) mm"
+ elif value < -15:
+ return "orange", "(-20,-15) mm"
+ elif value < -5:
+ return "yellow", "(-15,-5) mm"
+ elif value < 5:
+ return "lightgreen", "(-5,5) mm"
+ elif value < 15:
+ return "cyan", "(5,15) mm"
+ else:
+ return "blue", "(15,60) mm"
+
+ def gcp_vel_color(self, value: float) -> str:
+ """Returns color based on GCP velocity value.
+
+ :param value: GCP velocity value.
+ :type value: float
+ :return: Color string.
+ :rtype: str
+ """
+ if value <= -6:
+ return "red"
+ elif value <= -4:
+ return "orange"
+ elif value <= -2:
+ return "yellow"
+ elif value <= 2:
+ return "lightgreen"
+ elif value <= 5:
+ return "cyan"
+ else:
+ return "blue"
+
+ def lcp_vel_color(self, value: float) -> str:
+ """Returns color based on LCP velocity value.
+
+ :param value: LCP velocity value.
+ :type value: float
+ :return: Color string.
+ :rtype: str
+ """
+ if value <= 2:
+ return "green"
+ else:
+ return "red"
+
+ class TimeSeriesPane:
+ """Class to create and manage a multi-panel time series figure.
+ Panels include:
+ - Basemap with Outliers
+ - Basemap with PS Points
+ - Cumulative Displacement
+ - Relative Displacement
+ - Local Control Point Displacement
+ """
+
+ def __init__(self):
+ self.generate_figure()
+
+ def generate_figure(self):
+ """Generates a multi-panel figure with specified layout and titles."""
+ fig = plt.figure(figsize=(12, 12), dpi=150)
+ layout = [
+ 3 * ["A"] + 3 * ["C"], # ["A", "A", "A", "C", "C", "C"],
+ 3 * ["A"] + 3 * ["C"], # ["A", "A", "A", "C", "C", "C"],
+ 3 * ["A"] + 3 * ["D"], # ["A", "A", "A", "D", "D", "D"],
+ 3 * ["B"] + 3 * ["D"], # ["B", "B", "B", "D", "D", "D"],
+ 3 * ["B"] + 3 * ["E"], # ["B", "B", "B", "E", "E", "E"],
+ 3 * ["B"] + 3 * ["E"], # ["B", "B", "B", "E", "E", "E"],
+ ]
+ axs = fig.subplot_mosaic(layout, empty_sentinel=".")
+ fig.subplots_adjust(wspace=1, hspace=1)
+ axs["C"].set_title("Cumulative Displacement", fontsize=10)
+ axs["C"].set_ylabel("[mm]", fontsize=8, labelpad=2)
+ axs["D"].set_title("Relative Displacement", fontsize=10)
+ axs["D"].set_ylabel("[mm]", fontsize=8, labelpad=2)
+ axs["E"].set_title("Local Control Point Displacement", fontsize=10)
+ axs["E"].set_ylabel("[mm]", fontsize=8, labelpad=2)
+ self.fig = fig
+ self.axs = [axs["A"], axs["B"], axs["C"], axs["D"], axs["E"]]
+ plt.close()
+
+ def plot_basemap_outlier(self, center: tuple[float, float]):
+ """
+ Plots a basemap on the first axis using the provided center point.
+
+ :param center: A tuple representing the center point (x, y).
+ :type center: tuple[float, float]
+ """
+ self.axs[0].set_xlim(center[0][0] - 2000, center[0][0] + 2000)
+ self.axs[0].set_ylim(center[1][0] - 2000, center[1][0] + 4000)
+ ctx.add_basemap(
+ self.axs[0],
+ source=ctx.providers.CartoDB.Positron,
+ crs="EPSG:3857",
+ )
+
+ def plot_basemap_pspoint(self, center: tuple[float, float]):
+ """
+ Plots a basemap on the second axis using the provided center point.
+
+ :param center: A tuple representing the center point (x, y).
+ :type center: tuple[float, float]
+ """
+ self.axs[1].set_xlim(center[0][0] - 1000, center[0][0] + 1000)
+ self.axs[1].set_ylim(center[1][0] - 1000, center[1][0] + 1000)
+ ctx.add_basemap(
+ self.axs[1],
+ source=ctx.providers.CartoDB.Positron,
+ crs="EPSG:3857",
+ )
+
+ def plot_all_outliers(self, plot_data: list[tuple]) -> None:
+ """Plots all outlier data on the first axis.
+
+ :param plot_data: List of tuples containing geometry and outlier velocity value.
+ :type plot_data: list[tuple]
+ """
+ label_store = []
+ for geom, vel in plot_data:
+ geom = load_wkb(geom)
+ color, label = self.outlier_color_label(vel)
+ if label not in label_store:
+ label_store.append(label)
+ else:
+ label = None
+
+ self.axs[0].scatter(
+ *geom.xy,
+ s=10,
+ c=color,
+ label=label,
+ )
+ self.axs[0].legend(
+ title="Outlier",
+ loc="upper right",
+ fontsize=6,
+ title_fontsize=6,
+ frameon=True,
+ facecolor="white",
+ edgecolor="black",
+ )
+
+ def plot_square(self, plot_data: list[tuple]) -> None:
+ """Plots a square on the first axis to indicate zoom area.
+
+ :param plot_data: List of tuples containing geometry and outlier velocity value.
+ :type plot_data: list[tuple]
+ """
+ label_store = []
+ x, y = plot_data[0][0], plot_data[1][0]
+ square = [
+ (x - 75, y - 75),
+ (x + 75, y - 75),
+ (x + 75, y + 75),
+ (x - 75, y + 75),
+ (x - 75, y - 75), # Close the square
+ ]
+ square_x, square_y = zip(*square)
+ self.axs[0].fill(
+ square_x,
+ square_y,
+ fc="none",
+ ec="black",
+ label="Zoom Area",
+ )
+ self.axs[0].legend(
+ title="Outliers",
+ loc="upper right",
+ fontsize=6,
+ title_fontsize=6,
+ frameon=True,
+ facecolor="white",
+ edgecolor="black",
+ )
+
+ def plot_pspoint_dist(self, plot_data: list[tuple]) -> None:
+ """Plots PS Points on the second axis.
+
+ :param plot_data: List of tuples containing geometry.
+ :type plot_data: list[tuple]
+ """
+ points = []
+ for geom in plot_data:
+ if isinstance(geom, tuple) and len(geom) > 0:
+ geom = load_wkb(geom[0])
+ points.append(geom.xy)
+ x_coords = [p[0][0] for p in points]
+ y_coords = [p[1][0] for p in points]
+
+ self.axs[1].scatter(
+ x_coords,
+ y_coords,
+ s=6,
+ c="black",
+ label="PS Points",
+ )
+ self.axs[1].legend(
+ title="Legend",
+ loc="upper right",
+ fontsize=6,
+ title_fontsize=6,
+ frameon=True,
+ facecolor="white",
+ edgecolor="black",
+ )
+
+ def plot_outlier(self, plot_data: list[tuple]) -> None:
+ """Plots outlier data on the second axis.
+
+ :param plot_data: List of tuples containing geometry and outlier velocity value.
+ :type plot_data: list[tuple]
+ """
+ label_store = []
+ for geom, vel in plot_data:
+ geom = load_wkb(geom)
+ color, label = self.outlier_color_label(vel)
+ if label not in label_store:
+ label_store.append(label)
+ else:
+ label = None
+
+ self.axs[1].scatter(
+ *geom.xy,
+ s=16,
+ c=color,
+ label=label,
+ )
+ self.axs[1].legend(
+ title="Legend",
+ loc="upper right",
+ fontsize=6,
+ title_fontsize=6,
+ frameon=True,
+ facecolor="white",
+ edgecolor="black",
+ )
+
+ def plot_lcp(self, plot_data: list[tuple]) -> None:
+ """Plots LCP data on the second axis.
+
+ :param plot_data: List of tuples containing geometry.
+ :type plot_data: list[tuple]
+ """
+ geom = load_wkb(plot_data[0])
+ self.axs[1].scatter(
+ *geom.xy,
+ s=20,
+ marker="^",
+ c="lightblue",
+ label="LCP",
+ )
+ self.axs[1].legend(
+ title="Legend",
+ loc="upper right",
+ fontsize=6,
+ title_fontsize=6,
+ frameon=True,
+ facecolor="white",
+ edgecolor="black",
+ )
+
+ def plot_cum_disp_graph(
+ self, plot_data: list[tuple], dates: list[datetime]
+ ) -> None:
+ """Plots cumulative displacement data on the third axis.
+
+ :param plot_data: List of tuples containing cumulative displacement values.
+ :type plot_data: list[tuple]
+ :param dates: List of datetime objects corresponding to the displacement values.
+ :type dates: list[datetime]
+ """
+ y = plot_data[0][0]
+ x = dates
+ self.axs[2].scatter(
+ x,
+ y,
+ s=6,
+ color="black",
+ )
+
+ def plot_avg_disp_graph(
+ self, plot_data: list[tuple], dates: list[datetime]
+ ) -> None:
+ """Plots average cumulative displacement data on the third axis.
+
+ :param plot_data: List of tuples containing average cumulative displacement values.
+ :type plot_data: list[tuple]
+ :param dates: List of datetime objects corresponding to the displacement values.
+ :type dates: list[datetime]
+ """
+
+ y = plot_data[0][0]
+ x = dates
+ self.axs[2].plot(
+ x,
+ y,
+ color="red",
+ linewidth=1,
+ )
+
+ def plot_std_disp_graph(
+ self, avg_data: list[tuple], std_data: list[tuple], dates: list[datetime]
+ ):
+ """Plots standard deviation of cumulative displacement data on the third axis.
+
+ :param avg_data: List of tuples containing average cumulative displacement values.
+ :type avg_data: list[tuple]
+ :param std_data: List of tuples containing standard deviation of cumulative displacement values.
+ :type std_data: list[tuple]
+ :param dates: List of datetime objects corresponding to the displacement values.
+ :type dates: list[datetime]
+ """
+ y_avg = avg_data[0][0]
+ y_std = std_data[0][0]
+ x = dates
+ self.axs[2].fill_between(
+ x,
+ [y_avg[i] - 2 * y_std[i] for i in range(len(y_avg))],
+ [y_avg[i] + 2 * y_std[i] for i in range(len(y_avg))],
+ color="dimgray",
+ alpha=0.5,
+ # label="±2 Std Dev",
+ )
+ self.axs[2].fill_between(
+ x,
+ [y_avg[i] - y_std[i] for i in range(len(y_avg))],
+ [y_avg[i] + y_std[i] for i in range(len(y_avg))],
+ color="whitesmoke",
+ alpha=0.5,
+ # label="±1 Std Dev",
+ )
+
+ def plot_lcp_disp_graph(
+ self, plot_data: list[tuple], dates: list[datetime]
+ ) -> None:
+ """Plots LCP displacement data on the fifth axis.
+
+ :param plot_data: List of tuples containing LCP displacement values.
+ :type plot_data: list[tuple]
+ :param dates: List of datetime objects corresponding to the displacement values.
+ :type dates: list[datetime]
+ """
+ y = plot_data[0][0]
+ x = dates
+ self.axs[4].scatter(
+ x,
+ y,
+ s=6,
+ color="black",
+ )
+
+ def plot_avg_lcp_disp_graph(
+ self, plot_data: list[tuple], dates: list[datetime]
+ ) -> None:
+ """Plots average LCP displacement data on the fifth axis.
+
+ :param plot_data: List of tuples containing average LCP displacement values.
+ :type plot_data: list[tuple]
+ :param dates: List of datetime objects corresponding to the displacement values.
+ :type dates: list[datetime]
+ """
+ y = plot_data[0][0]
+ x = dates
+ self.axs[4].plot(
+ x,
+ y,
+ color="red",
+ linewidth=1,
+ )
+
+ def plot_std_lcp_disp_graph(
+ self, avg_data: list[tuple], std_data: list[tuple], dates: list[datetime]
+ ):
+ """Plots standard deviation of LCP displacement data on the fifth axis.
+
+ :param avg_data: List of tuples containing average LCP displacement values.
+ :type avg_data: list[tuple]
+ :param std_data: List of tuples containing standard deviation of LCP displacement values.
+ :type std_data: list[tuple]
+ :param dates: List of datetime objects corresponding to the displacement values.
+ :type dates: list[datetime]
+ """
+ y_avg = avg_data[0][0]
+ y_std = std_data[0][0]
+ x = dates
+ self.axs[4].fill_between(
+ x,
+ [y_avg[i] - 2 * y_std[i] for i in range(len(y_avg))],
+ [y_avg[i] + 2 * y_std[i] for i in range(len(y_avg))],
+ color="dimgray",
+ alpha=0.5,
+ # label="±2 Std Dev",
+ )
+ self.axs[4].fill_between(
+ x,
+ [y_avg[i] - y_std[i] for i in range(len(y_avg))],
+ [y_avg[i] + y_std[i] for i in range(len(y_avg))],
+ color="whitesmoke",
+ alpha=0.5,
+ # label="±1 Std Dev",
+ )
+
+ def plot_rel_disp_graph(
+ self, plot_data: list[tuple], dates: list[datetime]
+ ) -> None:
+ """Plots relative displacement data on the fourth axis.
+
+ :param plot_data: List of tuples containing relative displacement values.
+ :type plot_data: list[tuple]
+ :param dates: List of datetime objects corresponding to the displacement values.
+ :type dates: list[datetime]
+ """
+ y = plot_data[0][0]
+ x = dates
+ self.axs[3].scatter(
+ x,
+ y,
+ s=6,
+ color="black",
+ )
+
+ def plot_avg_rel_disp_graph(
+ self, plot_data: list[tuple], dates: list[datetime]
+ ) -> None:
+ """Plots average relative displacement data on the fourth axis.
+
+ :param plot_data: List of tuples containing average relative displacement values.
+ :type plot_data: list[tuple]
+ :param dates: List of datetime objects corresponding to the displacement values.
+ :type dates: list[datetime]
+ """
+ y = plot_data[0][0]
+ x = dates
+ self.axs[3].plot(
+ x,
+ y,
+ color="red",
+ linewidth=1,
+ )
+
+ def plot_std_rel_disp_graph(
+ self, avg_data: list[tuple], std_data: list[tuple], dates: list[datetime]
+ ):
+ """Plots standard deviation of relative displacement data on the fourth axis.
+
+ :param avg_data: List of tuples containing average relative displacement values.
+ :type avg_data: list[tuple]
+ :param std_data: List of tuples containing standard deviation of relative displacement values.
+ :type std_data: list[tuple]
+ :param dates: List of datetime objects corresponding to the displacement values.
+ :type dates: list[datetime]
+ """
+ y_avg = avg_data[0][0]
+ y_std = std_data[0][0]
+ x = dates
+ self.axs[3].fill_between(
+ x,
+ [y_avg[i] - 2 * y_std[i] for i in range(len(y_avg))],
+ [y_avg[i] + 2 * y_std[i] for i in range(len(y_avg))],
+ color="dimgray",
+ alpha=0.5,
+ # label="±2 Std Dev",
+ )
+ self.axs[3].fill_between(
+ x,
+ [y_avg[i] - y_std[i] for i in range(len(y_avg))],
+ [y_avg[i] + y_std[i] for i in range(len(y_avg))],
+ color="whitesmoke",
+ alpha=0.5,
+ # label="±1 Std Dev",
+ )
+
+ def outlier_color_label(self, value: float) -> tuple[str, str]:
+ """Returns color and label based on outlier velocity value.
+
+ :param value: Outlier velocity value.
+ :type value: float
+ :return: Tuple containing color and label.
+ :rtype: tuple[str, str]
+ """
+ if value <= 7:
+ return "yellow", "5<|v|<7 mm/yr"
+ elif value <= 9:
+ return "orange", "7<|v|<9 mm/yr"
+ else:
+ return "red", "9<|v|<12 mm/yr"
+
+ def post_process(self):
+ """Post-processes the figure for better aesthetics."""
+ for i in [0, 1]:
+ xticks = self.axs[i].get_xticks()
+ yticks = self.axs[i].get_yticks()
+ self.axs[i].set_xticks(xticks[::3]) # Keep every other tick
+ self.axs[i].set_xticklabels(self.axs[i].get_xticks())
+ self.axs[i].set_yticks(yticks[::3]) # Keep every other tick
+ self.axs[i].set_yticklabels(self.axs[i].get_yticks())
+
+ ymins, ymaxs = [], []
+
+ for ax in [self.axs[2], self.axs[3], self.axs[4]]:
+ ymin, ymax = ax.get_ylim()
+ ymins.append(ymin)
+ ymaxs.append(ymax)
+
+ for ax in [self.axs[2], self.axs[3], self.axs[4]]:
+ ax.set_ylim(min(ymins), max(ymaxs))
+ ax.xaxis.set_major_locator(mdates.YearLocator())
+ ax.xaxis.set_major_formatter(mdates.DateFormatter("%Y"))
+ ax.xaxis.set_minor_locator(mdates.MonthLocator())
+
+ def get_figure(self) -> tuple[plt.Figure, list[plt.Axes]]:
+ """Returns the figure and axes.
+
+ :return: Tuple containing the figure and axes.
+ :rtype: tuple[plt.Figure, list[plt.Axes]]
+ """
+ return self.fig, self.axs
diff --git a/src/saferoad/saferoad.py b/src/saferoad/saferoad.py
new file mode 100644
index 0000000..565dcac
--- /dev/null
+++ b/src/saferoad/saferoad.py
@@ -0,0 +1,660 @@
+# standard modules
+import io
+from datetime import datetime
+from joblib import Parallel, delayed
+from shapely.wkb import loads as wkb_loads
+from dataclasses import dataclass
+from typing import Literal
+from tqdm import tqdm
+
+# plotting modules
+import matplotlib
+from matplotlib.backends.backend_pdf import PdfPages
+from matplotlib import pyplot as plt
+
+matplotlib.use("Agg")
+# saferoad modules
+from .plotter import Plotter
+from .database import DataBase
+from .pipeline import Pipeline
+from .utils import extract_dates, time_vector, Timer
+
+
+@dataclass
+class PsData:
+ """Class for storing point source data information.
+
+ :param filepath: Path to the point source data file.
+ :type filepath: str
+ :param latitude: Field name of the latitude field in the data file.
+ :type latitude: str
+ :param longitude: Field name of the longitude field in the data file.
+ :type longitude: str
+ :param unit: Unit of measurement for the coordinates. Options are "m", "cm", or "mm". Default is "m".
+ :type unit: Literal["m", "cm", "mm"]
+ :param crs_code: Coordinate Reference System code. Default is "EPSG:4326".
+ :type crs_code: str
+ :param name: Name identifier for the point source data. Default is "pspoint".
+ :type name: str
+ """
+
+ filepath: str
+ latitude: str
+ longitude: str
+ unit: Literal["m", "cm", "mm"] = "m"
+ crs_code: str = "EPSG:4326"
+ name: str = "pspoint"
+
+ def __post_init__(self):
+ assert self.filepath, "File path must be provided."
+ assert isinstance(self.filepath, str), "File path must be a string."
+ assert self.latitude, "Latitude field name must be provided."
+ assert isinstance(self.latitude, str), "Latitude field name must be a string."
+ assert self.longitude, "Longitude field name must be provided."
+ assert isinstance(self.longitude, str), "Longitude field name must be a string."
+ assert self.unit in ["m", "cm", "mm"], "Unit must be one of 'm', 'cm', or 'mm'."
+ assert self.crs_code, "CRS code must be provided."
+ assert isinstance(self.crs_code, str), "CRS code must be a string."
+ assert self.name, "Name must be provided."
+ assert isinstance(self.name, str), "Name must be a string."
+
+
+@dataclass
+class Road:
+ """Class for storing road data information.
+
+ :param filepath: Path to the road data file.
+ :type filepath: str
+ :param crs_code: Coordinate Reference System code. Default is "EPSG:4326".
+ :type crs_code: str
+ :param name: Name identifier for the road data. Default is "road".
+ :type name: str
+ """
+
+ filepath: str
+ crs_code: str = "EPSG:4326"
+ name: str = "road"
+
+ def __post_init__(self):
+ assert self.filepath, "File path must be provided."
+ assert isinstance(self.filepath, str), "File path must be a string."
+ assert self.name, "Name must be provided."
+ assert isinstance(self.name, str), "Name must be a string."
+
+
+class SafeRoad:
+ """
+ A class to perform road deformation analysis using MT-InSAR data.
+
+ :param road: An instance of the Road class containing road data information.
+ :type road: Road
+ :param ps_data: An instance of the PsData class containing MT-InSAR data information.
+ :type ps_data: PsData
+ :param computational_crs: A string representing the EPSG code for the computational CRS.
+ :type computational_crs: str
+ """
+
+ def __init__(self, road: Road, ps_data: PsData, computational_crs: str):
+
+ assert isinstance(road, Road), "road must be an instance of Road class"
+ assert isinstance(
+ ps_data, PsData
+ ), "ps_data must be an instance of PsData class"
+ assert isinstance(
+ computational_crs, str
+ ), "computational_crs must be a string representing the EPSG code"
+
+ self.ps_data = ps_data
+ self.road_data = road
+ self.database = DataBase()
+ # self.scaling_factor = self._set_scaling_factor_()
+ self.computational_crs = computational_crs
+
+ @property
+ def _scaling_factor_(self):
+ # determine the scaling factor based on the unit
+ units = ["m", "cm", "mm"]
+ sf = [1000, 10, 1]
+ return sf[units.index(self.ps_data.unit)]
+
+ def load_files(self):
+ """
+ Load the road and MT-InSAR data files into the database.
+ """
+
+ # setup the db if loading
+ with Timer("Setting up the database"):
+ self.database.setup()
+ # road_query
+ with Timer("Loading road data"):
+ self.database.run(
+ Pipeline.Processing.load_file(
+ self.road_data.filepath, self.road_data.name
+ )
+ )
+ # ps_query
+ with Timer("Loading ps data"):
+ self.database.run(
+ Pipeline.Processing.load_file(self.ps_data.filepath, self.ps_data.name)
+ )
+
+ def preprocess(self, attribute: str = None):
+ """
+ Preprocess the road and MT-InSAR data.
+
+ This includes transforming the data to the computational CRS, dissolving road features,
+ and building geometries for the MT-InSAR points.
+ 1. Transform the road and MT-InSAR data to the computational CRS.
+ 2. Dissolve road features based on the provided attribute if given, otherwise merge all features.
+ 3. Build geometries for the MT-InSAR points from the latitude and longitude columns.
+ 4. Transform the MT-InSAR data to the computational CRS.
+
+ :param attribute: An optional string representing the attribute to dissolve road features.
+ If None, all features will be merged. Default is None.
+ :type attribute: str, optional
+ """
+ # Transform the road projection
+ with Timer("Transforming road data to computational CRS"):
+ self.database.run(
+ Pipeline.Processing.spatial_tranformation(
+ source_epsg=self.road_data.crs_code,
+ target_epsg=self.computational_crs,
+ table_name=self.road_data.name,
+ )
+ )
+
+ # Dissolve the road features based on the provided attribute if given if not merge everything
+ with Timer("Dissolving road features"):
+ self.database.run(
+ Pipeline.Processing.dissolve_features(
+ attribute=attribute, table_name=self.road_data.name
+ )
+ )
+ # build the geometry for the psoints from csv headers
+ with Timer("Building geometry for PS data"):
+ self.database.run(
+ Pipeline.Processing.build_geometry(
+ latitude=self.ps_data.latitude,
+ longitude=self.ps_data.longitude,
+ table_name=self.ps_data.name,
+ )
+ )
+
+ # Transform the ps data to the computational CRS
+ with Timer("Transforming PS data to computational CRS"):
+ self.database.run(
+ Pipeline.Processing.spatial_tranformation(
+ source_epsg=self.ps_data.crs_code,
+ target_epsg=self.computational_crs,
+ table_name=self.ps_data.name,
+ )
+ )
+
+ def generate_rectangles(self, road_width: float, segment_length: float):
+ """
+ Generate road segments and patches.
+
+ This involves:
+ 1. Splitting the road into segments of equal length.
+ 2. Generating rectangles along the road segments with a specified width.
+ 2. Rotating the generated rectangles int the same direction along the road.
+
+ :param road_width: A float representing the width of the road segments in meters.
+ :param segment_length: A float representing the length of each road segment in meters.
+ """
+
+ with Timer("Generating road segments and patches"):
+ self.database.run(
+ Pipeline.Processing.split_to_segments(segment_length=segment_length)
+ )
+ self.database.run(
+ Pipeline.Processing.generate_patches(
+ width=road_width, length=segment_length
+ )
+ )
+
+ def run_analysis(self):
+ """
+ Run the deformation analysis on the MT-InSAR data for road network.
+
+ This includes calculating cumulative displacement, average velocity, point density,
+ local control points, and outliers.
+ """
+ # calculate displacement per points
+ # get the column names from the ps_data
+ fields = [
+ i[0]
+ for i in self.database.connection.sql(
+ Pipeline.Processing.get_column_names(self.ps_data.name)
+ ).fetchall()
+ ]
+
+ # extract dates from the column names and generate time vector
+ names, dates = extract_dates(column_names=fields)
+ date_vector = time_vector(dates=dates)
+
+ with Timer("Calculating cumulative displacement per point"):
+ self.database.run(
+ Pipeline.Processing.calc_cum_disp(
+ dates=names, table_name=self.ps_data.name
+ )
+ )
+
+ # build spatial relation with
+ # assign points to patches generate patch_id field on pspoint table
+ with Timer("Relating points to patches"):
+ self.database.run(
+ Pipeline.Processing.relate_point_patches(self.ps_data.name)
+ )
+
+ # calculate average velocity per point needs patch_id in pspoint table for optimization purposes
+ with Timer("Calculating average velocity per point"):
+ self.database.run(
+ Pipeline.Processing.calc_avg_velocity(
+ time_vector=date_vector,
+ field_names=names,
+ table_name=self.ps_data.name,
+ )
+ )
+
+ # calculate point count per patch and point density
+ with Timer("Calculating point density per patch"):
+ self.database.run(Pipeline.Processing.calc_point_density(self.ps_data.name))
+ # calculate average cumulative displacement per patch
+ with Timer("Calculating average cumulative displacement per patch"):
+ self.database.run(Pipeline.Processing.calc_avg_cum_disp())
+ # calculate average displacement time series per patch based on gcp
+ with Timer(
+ "Calculating average displacement time series per patch based on GCP"
+ ):
+ self.database.run(
+ Pipeline.Processing.calc_avg_disp_ts_gcp(date_fields=names)
+ )
+ # calculate standard deviation of displacement time series per patch based on gcp
+ with Timer(
+ "Calculating standard deviation of displacement time series per patch based on GCP"
+ ):
+ self.database.run(
+ Pipeline.Processing.calc_std_disp_ts_gcp(date_fields=names)
+ )
+
+ # calculate average velocity per patch based on gcp
+ with Timer("Calculating average velocity per patch based on GCP"):
+ self.database.run(
+ Pipeline.Processing.calc_avg_velocity_gcp(table_name=self.ps_data.name)
+ )
+
+ # calculate the local control point per patch
+ with Timer("Calculating local control points per patch"):
+ self.database.run(Pipeline.Processing.select_lcps(self.ps_data.name))
+
+ # calculate the local control point avg velocity per patch
+ with Timer("Calculating local control points average velocity per patch"):
+ self.database.run(Pipeline.Processing.calc_lcp_velocity())
+
+ # calculate the average and std of the displacement time series per patch based on lcp
+ with Timer(
+ "Calculating average and std of displacement time series per patch based on LCP"
+ ):
+ self.database.run(
+ Pipeline.Processing.calc_avg_std_disp_ts_lcp(
+ date_fields=names, table_name=self.ps_data.name
+ )
+ )
+
+ # calculate the median and std of the displacement time series per patch based on lcp
+ with Timer(
+ "Calculating median and std of displacement time series per patch based on LCP"
+ ):
+ self.database.run(
+ Pipeline.Processing.calc_med_std_disp_ts_lcp(
+ date_fields=names, table_name=self.ps_data.name
+ )
+ )
+
+ # calculate the average velocity per patch based on lcp
+ with Timer("Calculating average velocity per patch based on LCP"):
+ self.database.run(
+ Pipeline.Processing.calc_avg_velocity_lcp(table_name=self.ps_data.name)
+ )
+
+ # calculate the average relative velocity per patch based on lcp
+ with Timer("Calculating average relative velocity per patch based on LCP"):
+ self.database.run(
+ Pipeline.Processing.calc_avg_lcp_velocity(self.ps_data.name)
+ )
+
+ # calulate the outliers per patch based
+ with Timer("Calculating outliers per patch"):
+ self.database.run(
+ Pipeline.Processing.calc_outliers(
+ self._scaling_factor_, self.ps_data.name
+ )
+ )
+
+ threshold_count = self.database.connection.execute(
+ "Select count(*) from outliers;"
+ ).fetchone()[0]
+ print("%s outliers detected by threshold method" % threshold_count)
+
+ self.database.run(
+ Pipeline.Processing.calc_outliers_avg_lcd(
+ self.ps_data.name, date_vector=date_vector, date_names=names
+ )
+ )
+ ald_count = (
+ self.database.connection.execute(
+ "Select count(*) from outliers;"
+ ).fetchone()[0]
+ - threshold_count
+ )
+ print("%s outliers detected by avg local disp method" % (ald_count))
+
+ self.database.run(
+ Pipeline.Processing.calc_outliers_med_lcd(
+ self.ps_data.name, date_vector=date_vector, date_names=names
+ )
+ )
+ med_count = (
+ self.database.connection.execute(
+ "select count(*) from outliers;"
+ ).fetchone()[0]
+ - ald_count
+ - threshold_count
+ )
+ print("%s outliers detected by median local disp method" % (med_count))
+
+ with Timer("Collecting and patching the LCP time series"):
+ self.database.run(
+ Pipeline.Processing.lcp_ts_patch(
+ date_fields=names, table_name=self.ps_data.name
+ )
+ )
+ with Timer("Collecting outlier time series"):
+ self.database.run(
+ Pipeline.Processing.outlier_ts_patch(
+ date_fields=names, table_name=self.ps_data.name
+ )
+ )
+ with Timer("collecting differential displacement time series"):
+ self.database.run(Pipeline.Processing.outlier_rel_ts_patch())
+
+ def generate_report(self, output_name: str):
+ """
+ Generate a PDF report containing maps and time series plots.
+
+ :param output_name: A string representing the name of the output PDF file endswith `.pdf` extension.
+ :type output_name: str
+ """
+
+ def render_ts_plots_workers(
+ patch_uid: float,
+ outliers: list[tuple],
+ dates: list[datetime],
+ outlier_center: tuple[float, float], #
+ patch_center: tuple,
+ pspoints: list[tuple],
+ lcp_point: list[tuple],
+ cum_disp: list[tuple],
+ avg_cum_disp: list[tuple],
+ std_cum_disp: list[tuple],
+ outlier_rel_ts: list[tuple],
+ avg_lcp_disp: list[tuple],
+ std_lcp_disp: list[tuple],
+ lcp_disp: list[tuple],
+ ) -> bytes:
+
+ # plotting
+ tsplotter = Plotter.TimeSeriesPane()
+ # 0
+ tsplotter.plot_basemap_outlier(wkb_loads(outlier_center[0]).xy)
+ tsplotter.plot_all_outliers(outliers)
+ tsplotter.plot_square(wkb_loads(outlier_center[0]).xy)
+ tsplotter.plot_basemap_pspoint(wkb_loads(patch_center[0]).xy)
+ # 1
+ tsplotter.plot_pspoint_dist(pspoints)
+ tsplotter.plot_lcp(lcp_point)
+ tsplotter.plot_outlier(outliers)
+ # 2
+ tsplotter.plot_std_disp_graph(avg_cum_disp, std_cum_disp, dates)
+ tsplotter.plot_avg_disp_graph(avg_cum_disp, dates)
+ tsplotter.plot_cum_disp_graph(cum_disp, dates)
+
+ # 3
+ tsplotter.plot_std_rel_disp_graph(avg_lcp_disp, std_lcp_disp, dates)
+ tsplotter.plot_avg_rel_disp_graph(avg_lcp_disp, dates)
+ tsplotter.plot_rel_disp_graph(outlier_rel_ts, dates)
+
+ # 4
+ tsplotter.plot_std_lcp_disp_graph(avg_cum_disp, std_cum_disp, dates)
+ tsplotter.plot_avg_lcp_disp_graph(avg_cum_disp, dates)
+ tsplotter.plot_lcp_disp_graph(lcp_disp, dates)
+ tsplotter.post_process()
+
+ fig, _ = tsplotter.get_figure()
+
+ buf = io.BytesIO()
+ fig.savefig(buf, format="png")
+ plt.close(fig)
+ return buf.getvalue()
+
+ # export the results
+ with Timer("Generating and saving the report"):
+ with PdfPages(output_name) as pdf:
+ # bbox of the patches
+
+ bbox = self.database.connection.execute(
+ Pipeline.Visualisation.get_table_bbox(
+ "patches", self.computational_crs
+ )
+ ).fetchall()
+ # ps density and patch geometries
+ ps_density = self.database.connection.execute(
+ Pipeline.Visualisation.get_ps_density(self.computational_crs)
+ ).fetchall()
+ # outliers and coordinates
+ outliers = self.database.connection.execute(
+ Pipeline.Visualisation.get_outliers_map(
+ self.computational_crs, self._scaling_factor_
+ )
+ ).fetchall()
+ # cumulative displacement per point
+ cum_disp = self.database.connection.execute(
+ Pipeline.Visualisation.get_cum_disp_map(
+ self.computational_crs, self._scaling_factor_
+ )
+ ).fetchall()
+ # gcp average velocity per point
+ gcp_vel = self.database.connection.execute(
+ Pipeline.Visualisation.get_ps_vel_gcp(
+ self.computational_crs, self._scaling_factor_
+ )
+ ).fetchall()
+ # lcp average velocity per point
+ lcp_vel = self.database.connection.execute(
+ Pipeline.Visualisation.get_ps_vel_lcp(
+ self.computational_crs, self._scaling_factor_
+ )
+ ).fetchall()
+
+ # plotting the first page -- maps
+ print("Starting to render the map page")
+ map_plotter = Plotter.MapPane()
+ map_plotter.plot_basemap(bbox=bbox)
+ map_plotter.plot_ps_density(ps_density)
+ map_plotter.plot_outliers(outliers)
+ map_plotter.plot_cum_disp(cum_disp)
+ map_plotter.plot_gcp_velocity(gcp_vel)
+ map_plotter.plot_lcp_velocity(lcp_vel)
+ map_plotter.post_process()
+ fig, _ = map_plotter.get_figure()
+ plt.close(fig)
+ pdf.savefig(fig)
+ print("Map page has been rendered")
+
+ print("Intiating time series rendering")
+ # collect the patch_ids which has outliers
+ puids = [
+ i[0]
+ for i in self.database.connection.execute(
+ Pipeline.Visualisation.patch_uids()
+ ).fetchall()
+ ]
+ _, dates = extract_dates(
+ [
+ i[0]
+ for i in self.database.connection.execute(
+ Pipeline.Processing.get_column_names(self.ps_data.name)
+ ).fetchall()
+ ]
+ )
+ outliers_map = self.database.connection.execute(
+ Pipeline.Visualisation.get_outliers_map(
+ self.computational_crs, self._scaling_factor_
+ )
+ ).fetchall()
+
+ # prepare the data for parallel processing
+ data_ready = []
+ for uid in puids:
+ outliers = self.database.connection.execute(
+ Pipeline.Visualisation.get_outlier_points(
+ patch_id=uid, source_crs=self.computational_crs
+ )
+ ).fetchall()
+ patch_center = self.database.connection.execute(
+ Pipeline.Visualisation.get_patch_center(
+ patch_id=uid, source_crs=self.computational_crs
+ )
+ ).fetchone()
+
+ pspoints = self.database.connection.execute(
+ Pipeline.Visualisation.get_ps_points(
+ patch_id=uid,
+ source_crs=self.computational_crs,
+ table_name=self.ps_data.name,
+ )
+ ).fetchall() # pspoints
+
+ lcp_point = self.database.connection.execute(
+ Pipeline.Visualisation.get_lcp_point(
+ patch_id=uid, source_crs=self.computational_crs
+ )
+ ).fetchone() # lcp point
+
+ avg_cum_disp = self.database.connection.execute(
+ Pipeline.Visualisation.get_avg_cum_disp_graph(
+ patch_id=uid, scaling_factor=self._scaling_factor_
+ )
+ ).fetchall() # avg_cum_disp
+
+ std_cum_disp = self.database.connection.execute(
+ Pipeline.Visualisation.get_std_cum_disp_graph(
+ patch_id=uid, scaling_factor=self._scaling_factor_
+ )
+ ).fetchall() # std_cum_disp
+
+ avg_lcp_disp = self.database.connection.execute(
+ Pipeline.Visualisation.get_avg_disp_lcp_graph(
+ patch_id=uid, scaling_factor=self._scaling_factor_
+ )
+ ).fetchall() # avg_lcp_disp
+
+ std_lcp_disp = self.database.connection.execute(
+ Pipeline.Visualisation.get_std_disp_lcp_graph(
+ patch_id=uid, scaling_factor=self._scaling_factor_
+ )
+ ).fetchall() # std_lcp_disp
+
+ lcp_disp = self.database.connection.execute(
+ Pipeline.Visualisation.get_lcp_disp_graph(
+ patch_id=uid, scaling_factor=self._scaling_factor_
+ )
+ ).fetchall() # lcp_disp
+
+ for outlier in outliers:
+ o_id = outlier[0]
+ center = self.database.connection.execute(
+ Pipeline.Visualisation.get_center(
+ point_uid=o_id, source_crs=self.computational_crs
+ )
+ ).fetchone()
+ cum_disp = self.database.connection.execute(
+ Pipeline.Visualisation.get_cum_disp_graph(
+ outlier_id=o_id, scaling_factor=self._scaling_factor_
+ )
+ ).fetchall() # cum_disp
+
+ outlier_rel_ts = self.database.connection.execute(
+ Pipeline.Visualisation.get_outlier_rel_ts_graph(
+ outlier_id=o_id, scaling_factor=self._scaling_factor_
+ )
+ ).fetchall() # outlier_rel_ts
+ data_ready.append(
+ (
+ uid,
+ outliers_map,
+ dates,
+ center,
+ patch_center,
+ pspoints,
+ lcp_point,
+ cum_disp,
+ avg_cum_disp,
+ std_cum_disp,
+ outlier_rel_ts,
+ avg_lcp_disp,
+ std_lcp_disp,
+ lcp_disp,
+ )
+ )
+
+ print(f"Total pages to render for outliers: {len(data_ready)}")
+
+ png_pages = Parallel(n_jobs=-1, backend="loky")(
+ delayed(render_ts_plots_workers)(
+ patch_uid,
+ outliers,
+ dates,
+ outlier_center,
+ patch_center,
+ pspoints,
+ lcp_point,
+ cum_disp,
+ avg_cum_disp,
+ std_cum_disp,
+ outlier_rel_ts,
+ avg_lcp_disp,
+ std_lcp_disp,
+ lcp_disp,
+ )
+ for (
+ patch_uid,
+ outliers,
+ dates,
+ outlier_center,
+ patch_center,
+ pspoints,
+ lcp_point,
+ cum_disp,
+ avg_cum_disp,
+ std_cum_disp,
+ outlier_rel_ts,
+ avg_lcp_disp,
+ std_lcp_disp,
+ lcp_disp,
+ ) in tqdm(data_ready)
+ )
+ print("All plots rendered, now saving to pdf")
+ for png in png_pages:
+ img = plt.imread(io.BytesIO(png), format="png")
+ fig, ax = plt.subplots(figsize=(12, 12), dpi=80)
+ # ax = fig.add_subplot(111)
+ ax.imshow(img)
+ ax.axis("off")
+ ax.set_xticks([])
+ ax.set_yticks([])
+ ax.set_frame_on(False)
+ pdf.savefig(fig)
+ plt.close(fig)
+ print("All pages saved to pdf")
diff --git a/src/saferoad/utils.py b/src/saferoad/utils.py
new file mode 100644
index 0000000..434865d
--- /dev/null
+++ b/src/saferoad/utils.py
@@ -0,0 +1,55 @@
+import re
+import time
+from datetime import datetime
+from dateutil import parser as dsparser
+from numpy import array as nparray
+
+
+def extract_dates(column_names: list[str]) -> tuple[list[str], list[datetime]]:
+ """Extracts date fields from a list of column names.
+
+ :param column_names: List of column names to search for dates.
+ :type column_names: list[str]
+ :return: A tuple containing two numpy arrays: one with the column names and another with the parsed date objects.
+ :rtype: tuple[ndarray, ndarray]
+ """
+ assert isinstance(column_names, list), "column_names must be a list of strings"
+ assert all(
+ isinstance(name, str) for name in column_names
+ ), "All items in column_names must be strings"
+ assert len(column_names) > 0, "column_names must not be empty"
+
+ nameFields: list = []
+ dateFields: list = []
+ for date in column_names:
+ dateSearch = re.search(r"\d{8}", date)
+ if dateSearch:
+ pdate: datetime = dsparser.parse(dateSearch.group(), fuzzy=True).date()
+ dateFields.append(pdate)
+ nameFields.append(date)
+ return nameFields, dateFields
+
+
+def time_vector(dates: list[datetime]) -> nparray:
+ """Generates a time vector in days from a list of datetime objects.
+
+ :param dates: List of datetime objects.
+ :type dates: list[datetime]
+ :return: List of time differences in days from the first date.
+ :rtype: list[float]
+ """
+ return nparray([(i - dates[0]).days for i in dates])
+
+
+class Timer(object):
+ """Context manager for timing code execution."""
+
+ def __init__(self, name=None):
+ self.name = name
+
+ def __enter__(self):
+ self.tstart = time.time()
+
+ def __exit__(self, type, value, traceback):
+ if self.name:
+ print("%s took %.2f seconds" % (self.name, time.time() - self.tstart))
diff --git a/tests/__main__.py b/tests/__main__.py
new file mode 100644
index 0000000..bdbf88f
--- /dev/null
+++ b/tests/__main__.py
@@ -0,0 +1,6 @@
+from .test_suite import suite
+import unittest
+
+if __name__ == "__main__":
+ runner = unittest.TextTestRunner(verbosity=2)
+ runner.run(suite())
diff --git a/tests/test_database.py b/tests/test_database.py
new file mode 100644
index 0000000..2c105e9
--- /dev/null
+++ b/tests/test_database.py
@@ -0,0 +1,56 @@
+import os
+import shutil
+import unittest
+from src.saferoad.database import DataBase
+
+
+class TestDataBase(unittest.TestCase):
+ def setUp(self):
+ self.db = DataBase()
+
+ def tearDown(self):
+ if self.db.connection:
+ self.db.connection.close()
+ # Remove the database file if it exists
+ if self.db.db_path and os.path.exists(self.db.db_path):
+ os.remove(self.db.db_path)
+ # Remove the directory and all its contents if it exists
+ if os.path.exists("SafeRoadDB"):
+ shutil.rmtree("SafeRoadDB")
+ # os.rmdir("SafeRoadDB")
+
+ def test_setup_creates_database_file(self):
+ self.db.setup()
+
+ # Check if the database file is created
+ self.assertIsNotNone(self.db.db_path)
+ self.assertTrue(os.path.exists(self.db.db_path))
+
+ def test_setup_raises_error_if_already_initialized(self):
+ self.db.setup()
+
+ with self.assertRaises(AssertionError) as context:
+ self.db.setup()
+ self.assertIn(
+ "Database connection already established.", str(context.exception)
+ )
+
+ def test_run_executes_query(self):
+ self.db.setup()
+
+ # Create a table and insert data
+ self.db.run("CREATE TABLE test_table (id INTEGER, name STRING);")
+ self.db.run("INSERT INTO test_table VALUES (1, 'Test Name');")
+
+ # Verify the table exists and data is inserted
+ result = self.db.connection.execute("SELECT * FROM test_table;").fetchall()
+ self.assertEqual(result, [(1, "Test Name")])
+
+ def test_run_raises_error_if_no_connection(self):
+ with self.assertRaises(AssertionError) as context:
+ self.db.run("SELECT 1;")
+ self.assertIn("Database connection is not established.", str(context.exception))
+
+
+if __name__ == "__main__":
+ unittest.main()
diff --git a/tests/test_pipeline.py b/tests/test_pipeline.py
new file mode 100644
index 0000000..658b7fe
--- /dev/null
+++ b/tests/test_pipeline.py
@@ -0,0 +1,309 @@
+import unittest
+from pathlib import Path
+from unittest.mock import patch, mock_open
+from saferoad.pipeline import Pipeline
+
+
+class TestPipelineProcessing(unittest.TestCase):
+
+ def test_load_file(self):
+ # Mock Path.exists to always return True
+ with patch("pathlib.Path.exists", return_value=True):
+ # Test CSV file
+ query = Pipeline.Processing.load_file("test.csv", "test_table")
+ self.assertIn("read_csv_auto", query)
+ self.assertIn("test_table", query)
+
+ # Test non-CSV file
+ query = Pipeline.Processing.load_file("test.shp", "test_table")
+ self.assertIn("ST_Read", query)
+ self.assertIn("test_table", query)
+
+ # Test file not found
+ with patch("pathlib.Path.exists", return_value=False):
+ with self.assertRaises(AssertionError):
+ Pipeline.Processing.load_file("nonexistent.csv", "test_table")
+
+ def test_dissolve_features(self):
+ # Test with attribute
+ query = Pipeline.Processing.dissolve_features("test_attr", "test_table")
+ self.assertIn("GROUP BY test_attr", query)
+ self.assertIn("test_table", query)
+
+ # Test without attribute
+ query = Pipeline.Processing.dissolve_features("", "test_table")
+ self.assertNotIn("GROUP BY", query)
+ self.assertIn("test_table", query)
+
+ def test_split_to_segments(self):
+ query = Pipeline.Processing.split_to_segments(10.0, "test_table")
+ self.assertIn("10.0", query)
+ self.assertIn("test_table", query)
+ self.assertIn("CREATE OR REPLACE TABLE segments", query)
+
+ def test_generate_patches(self):
+ # Test with valid parameters
+ query = Pipeline.Processing.generate_patches(5.0, 10.0, "test_segments")
+ self.assertIn("5.0", query)
+ self.assertIn("10.0", query)
+ self.assertIn("test_segments", query)
+
+ # Test with invalid width
+ with self.assertRaises(AssertionError):
+ Pipeline.Processing.generate_patches(0, 10.0)
+
+ # Test with invalid length
+ with self.assertRaises(AssertionError):
+ Pipeline.Processing.generate_patches(5.0, 0)
+
+ def test_spatial_transformation(self):
+ query = Pipeline.Processing.spatial_tranformation(
+ "EPSG:4326", "EPSG:3857", "test_table"
+ )
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query)
+ self.assertIn("test_table", query)
+
+ def test_build_geometry(self):
+ query = Pipeline.Processing.build_geometry("lat", "lon", "test_table")
+ self.assertIn("lat", query)
+ self.assertIn("lon", query)
+ self.assertIn("test_table", query)
+ self.assertIn("ST_Point", query)
+
+ def test_relate_point_patches(self):
+ query = Pipeline.Processing.relate_point_patches("test_points", "test_patches")
+ self.assertIn("test_points", query)
+ self.assertIn("test_patches", query)
+ self.assertIn("ST_Within", query)
+
+ def test_calc_point_density(self):
+ query = Pipeline.Processing.calc_point_density("test_points", "test_patches")
+ self.assertIn("test_points", query)
+ self.assertIn("test_patches", query)
+ self.assertIn("ps_density", query)
+
+ def test_get_column_names(self):
+ query = Pipeline.Processing.get_column_names("test_table")
+ self.assertIn("test_table", query)
+ self.assertIn("column_name", query)
+
+ def test_calc_cum_disp(self):
+ dates = ["date1", "date2", "date3"]
+ query = Pipeline.Processing.calc_cum_disp(dates, "test_table")
+ self.assertIn("date1", query)
+ self.assertIn("date3", query)
+ self.assertIn("test_table", query)
+
+ def test_calc_avg_cum_disp(self):
+ query = Pipeline.Processing.calc_avg_cum_disp()
+ self.assertIn("avg_cum_disp", query)
+ self.assertIn("AVG(displacement)", query)
+
+ def test_calc_avg_velocity(self):
+ time_vector = [0, 10, 20]
+ fields = ["field1", "field2", "field3"]
+ query = Pipeline.Processing.calc_avg_velocity(time_vector, fields, "test_table")
+ for field in fields:
+ self.assertIn(field, query)
+ self.assertIn("test_table", query)
+ self.assertIn("avg_velocity_gcp", query)
+
+ def test_calc_avg_disp_ts_gcp(self):
+ date_fields = ["date1", "date2", "date3"]
+ query = Pipeline.Processing.calc_avg_disp_ts_gcp(date_fields)
+ for date in date_fields:
+ self.assertIn(date, query)
+ self.assertIn("avg_disp_ts_gcp", query)
+
+ def test_calc_std_disp_ts_gcp(self):
+ date_fields = ["date1", "date2", "date3"]
+ query = Pipeline.Processing.calc_std_disp_ts_gcp(date_fields)
+ for date in date_fields:
+ self.assertIn(date, query)
+ self.assertIn("std_disp_ts_gcp", query)
+
+ def test_select_lcps(self):
+ query = Pipeline.Processing.select_lcps("test_table")
+ self.assertIn("test_table", query)
+ self.assertIn("lcp_uid", query)
+
+ def test_calc_lcp_velocity(self):
+ query = Pipeline.Processing.calc_lcp_velocity()
+ self.assertIn("lcp_velocity", query)
+ self.assertIn("avg_velocity_gcp", query)
+
+ def test_calc_avg_velocity_gcp(self):
+ query = Pipeline.Processing.calc_avg_velocity_gcp("test_table")
+ self.assertIn("test_table", query)
+ self.assertIn("avg_gcp_velocity", query)
+
+ def test_calc_avg_std_disp_ts_lcp(self):
+ date_fields = ["date1", "date2", "date3"]
+ query = Pipeline.Processing.calc_avg_std_disp_ts_lcp(date_fields, "test_table")
+ for date in date_fields:
+ self.assertIn(date, query)
+ self.assertIn("test_table", query)
+ self.assertIn("avg_disp_ts_lcp", query)
+ self.assertIn("std_disp_ts_lcp", query)
+
+ def test_calc_avg_velocity_lcp(self):
+ query = Pipeline.Processing.calc_avg_velocity_lcp("test_table")
+ self.assertIn("test_table", query)
+ self.assertIn("avg_velocity_lcp", query)
+
+ def test_calc_avg_lcp_velocity(self):
+ query = Pipeline.Processing.calc_avg_lcp_velocity("test_table")
+ self.assertIn("test_table", query)
+ self.assertIn("avg_lcp_velocity", query)
+
+ def test_calc_outliers(self):
+ query = Pipeline.Processing.calc_outliers(1000.0, "test_table")
+ self.assertIn("test_table", query)
+ self.assertIn("uid", query)
+ self.assertIn("1000.0", query)
+
+ def test_lcp_ts_patch(self):
+ date_fields = ["date1", "date2", "date3"]
+ query = Pipeline.Processing.lcp_ts_patch(date_fields, "test_table")
+ for date in date_fields:
+ self.assertIn(date, query)
+ self.assertIn("test_table", query)
+ self.assertIn("lcp_disp_ts", query)
+
+ def test_outlier_ts_patch(self):
+ date_fields = ["date1", "date2", "date3"]
+ query = Pipeline.Processing.outlier_ts_patch(date_fields, "test_table")
+ for date in date_fields:
+ self.assertIn(date, query)
+ self.assertIn("test_table", query)
+ self.assertIn("disp_ts", query)
+
+ def test_outlier_rel_ts_patch(self):
+ query = Pipeline.Processing.outlier_rel_ts_patch()
+ self.assertIn("rel_ts", query)
+ self.assertIn("disp_ts", query)
+ self.assertIn("lcp_disp_ts", query)
+
+
+class TestPipelineVisualisation(unittest.TestCase):
+
+ def test_get_table_bbox(self):
+ query = Pipeline.Visualisation.get_table_bbox("test_table", "EPSG:4326")
+ self.assertIn("test_table", query)
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+
+ def test_get_ps_density(self):
+ query = Pipeline.Visualisation.get_ps_density("EPSG:4326")
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+ self.assertIn("ps_density", query)
+
+ def test_get_outliers_map(self):
+ query = Pipeline.Visualisation.get_outliers_map("EPSG:4326", 1000.0)
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+ self.assertIn("1000.0", query)
+ self.assertIn("avg_velocity_lcp", query)
+
+ def test_get_cum_disp_map(self):
+ query = Pipeline.Visualisation.get_cum_disp_map("EPSG:4326", 1000.0)
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+ self.assertIn("1000.0", query)
+ self.assertIn("avg_cum_disp", query)
+
+ def test_get_ps_vel_gcp(self):
+ query = Pipeline.Visualisation.get_ps_vel_gcp("EPSG:4326", 1000.0)
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+ self.assertIn("1000.0", query)
+ self.assertIn("avg_velocity_gcp", query)
+
+ def test_get_ps_vel_lcp(self):
+ query = Pipeline.Visualisation.get_ps_vel_lcp("EPSG:4326", 1000.0)
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+ self.assertIn("1000.0", query)
+ self.assertIn("avg_velocity_lcp", query)
+
+ def test_get_ps_points(self):
+ query = Pipeline.Visualisation.get_ps_points(123, "EPSG:4326", "test_table")
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+ self.assertIn("test_table", query)
+ self.assertIn("123", query)
+
+ def test_get_center(self):
+ query = Pipeline.Visualisation.get_center(123, "EPSG:4326")
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+ self.assertIn("123", query)
+ self.assertIn("ST_Centroid", query)
+
+ def test_get_patch_center(self):
+ query = Pipeline.Visualisation.get_patch_center(123, "EPSG:4326")
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+ self.assertIn("123", query)
+ self.assertIn("ST_Centroid", query)
+
+ def test_get_lcp_point(self):
+ query = Pipeline.Visualisation.get_lcp_point(123, "EPSG:4326")
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+ self.assertIn("123", query)
+ self.assertIn("lcp_uid", query)
+
+ def test_get_outlier_points(self):
+ query = Pipeline.Visualisation.get_outlier_points(123, "EPSG:4326")
+ self.assertIn("EPSG:4326", query)
+ self.assertIn("EPSG:3857", query) # Default projection
+ self.assertIn("123", query)
+
+ def test_get_cum_disp_graph(self):
+ query = Pipeline.Visualisation.get_cum_disp_graph(123, 1000.0)
+ self.assertIn("123", query)
+ self.assertIn("1000.0", query)
+ self.assertIn("disp_ts", query)
+
+ def test_get_avg_cum_disp_graph(self):
+ query = Pipeline.Visualisation.get_avg_cum_disp_graph(123, 1000.0)
+ self.assertIn("123", query)
+ self.assertIn("1000.0", query)
+ self.assertIn("avg_disp_ts_gcp", query)
+
+ def test_get_std_cum_disp_graph(self):
+ query = Pipeline.Visualisation.get_std_cum_disp_graph(123, 1000.0)
+ self.assertIn("123", query)
+ self.assertIn("1000.0", query)
+ self.assertIn("std_disp_ts_gcp", query)
+
+ def test_get_lcp_disp_graph(self):
+ query = Pipeline.Visualisation.get_lcp_disp_graph(123, 1000.0)
+ self.assertIn("123", query)
+ self.assertIn("1000.0", query)
+ self.assertIn("lcp_disp_ts", query)
+
+ def test_get_avg_disp_lcp_graph(self):
+ query = Pipeline.Visualisation.get_avg_disp_lcp_graph(123, 1000.0)
+ self.assertIn("123", query)
+ self.assertIn("1000.0", query)
+ self.assertIn("avg_disp_ts_lcp", query)
+
+ def test_get_std_disp_lcp_graph(self):
+ query = Pipeline.Visualisation.get_std_disp_lcp_graph(123, 1000.0)
+ self.assertIn("123", query)
+ self.assertIn("1000.0", query)
+ self.assertIn("std_disp_ts_lcp", query)
+
+ def test_get_outlier_rel_ts_graph(self):
+ query = Pipeline.Visualisation.get_outlier_rel_ts_graph(123, 1000.0)
+ self.assertIn("123", query)
+ self.assertIn("1000.0", query)
+
+ def test_patch_uids(self):
+ query = Pipeline.Visualisation.patch_uids()
+ self.assertIn("patch_id", query)
+ self.assertIn("outliers", query)
diff --git a/tests/test_plotter.py b/tests/test_plotter.py
new file mode 100644
index 0000000..459e52d
--- /dev/null
+++ b/tests/test_plotter.py
@@ -0,0 +1,170 @@
+import unittest
+from unittest.mock import patch
+from shapely.geometry import Point, Polygon
+from shapely.wkb import dumps as dump_wkb
+import matplotlib.pyplot as plt
+from datetime import datetime, timedelta
+
+from src.saferoad.plotter import Plotter # replace with actual import path
+
+
+class TestMapPane(unittest.TestCase):
+ def setUp(self):
+ self.pane = Plotter.MapPane()
+
+ def test_generate_figure(self):
+ fig, axs = self.pane.get_figure()
+ self.assertIsInstance(fig, plt.Figure)
+ self.assertEqual(len(axs), 5)
+
+ @patch("contextily.add_basemap")
+ def test_plot_basemap(self, mock_basemap):
+ bbox = ([0, 0, 100, 100],)
+ self.pane.plot_basemap(bbox)
+ self.assertTrue(mock_basemap.called)
+
+ def test_ps_density_color_label(self):
+ self.assertEqual(self.pane.ps_density_color_label(50), ("red", "Low"))
+ self.assertEqual(self.pane.ps_density_color_label(200), ("yellow", "Medium"))
+ self.assertEqual(self.pane.ps_density_color_label(600), ("green", "High"))
+
+ def test_outlier_color_label(self):
+ self.assertEqual(self.pane.outlier_color_label(6), ("yellow", "5<|v|<7 mm/yr"))
+ self.assertEqual(self.pane.outlier_color_label(8), ("orange", "7<|v|<9 mm/yr"))
+ self.assertEqual(self.pane.outlier_color_label(12), ("red", "9<|v|<12 mm/yr"))
+
+ def test_cum_disp_color_label(self):
+ self.assertEqual(self.pane.cum_disp_color_label(-30), ("red", "(-60,-20) mm"))
+ self.assertEqual(
+ self.pane.cum_disp_color_label(-17), ("orange", "(-20,-15) mm")
+ )
+ self.assertEqual(self.pane.cum_disp_color_label(-10), ("yellow", "(-15,-5) mm"))
+ self.assertEqual(self.pane.cum_disp_color_label(0), ("lightgreen", "(-5,5) mm"))
+ self.assertEqual(self.pane.cum_disp_color_label(10), ("cyan", "(5,15) mm"))
+ self.assertEqual(self.pane.cum_disp_color_label(20), ("blue", "(15,60) mm"))
+
+ def test_gcp_vel_color(self):
+ self.assertEqual(self.pane.gcp_vel_color(-7), "red")
+ self.assertEqual(self.pane.gcp_vel_color(-5), "orange")
+ self.assertEqual(self.pane.gcp_vel_color(-3), "yellow")
+ self.assertEqual(self.pane.gcp_vel_color(1), "lightgreen")
+ self.assertEqual(self.pane.gcp_vel_color(3), "cyan")
+ self.assertEqual(self.pane.gcp_vel_color(10), "blue")
+
+ def test_lcp_vel_color(self):
+ self.assertEqual(self.pane.lcp_vel_color(1), "green")
+ self.assertEqual(self.pane.lcp_vel_color(5), "red")
+
+ def test_plot_ps_density(self):
+ poly = Polygon([(0, 0), (1, 0), (1, 1), (0, 1)])
+ data = [(dump_wkb(poly), 200)]
+ self.pane.plot_ps_density(data)
+ self.assertTrue(len(self.pane.axs[0].patches) > 0)
+
+ def test_plot_outliers(self):
+ pt = Point(0, 0)
+ data = [(dump_wkb(pt), 8)]
+ self.pane.plot_outliers(data)
+ self.assertTrue(len(self.pane.axs[1].collections) > 0)
+
+ def test_plot_cum_disp(self):
+ poly = Polygon([(0, 0), (1, 0), (1, 1), (0, 1)])
+ data = [(dump_wkb(poly), -10)]
+ self.pane.plot_cum_disp(data)
+ self.assertTrue(len(self.pane.axs[2].patches) > 0)
+
+ def test_plot_gcp_velocity(self):
+ pt = Point(0, 0)
+ data = [(dump_wkb(pt), -5)]
+ self.pane.plot_gcp_velocity(data)
+ self.assertTrue(len(self.pane.axs[3].collections) > 0)
+
+ def test_plot_lcp_velocity(self):
+ pt = Point(0, 0)
+ data = [(dump_wkb(pt), 5)]
+ self.pane.plot_lcp_velocity(data)
+ self.assertTrue(len(self.pane.axs[4].collections) > 0)
+
+ def test_post_process_runs(self):
+ self.pane.post_process() # should not raise
+
+
+class TestTimeSeriesPane(unittest.TestCase):
+ def setUp(self):
+ self.pane = Plotter.TimeSeriesPane()
+ self.dates = [datetime(2020, 1, 1) + timedelta(days=i) for i in range(5)]
+
+ @patch("contextily.add_basemap")
+ def test_plot_basemap_outlier(self, mock_basemap):
+ self.pane.plot_basemap_outlier(([100], [200]))
+ self.assertTrue(mock_basemap.called)
+
+ @patch("contextily.add_basemap")
+ def test_plot_basemap_pspoint(self, mock_basemap):
+ self.pane.plot_basemap_pspoint(([100], [200]))
+ self.assertTrue(mock_basemap.called)
+
+ def test_outlier_color_label(self):
+ self.assertEqual(self.pane.outlier_color_label(6), ("yellow", "5<|v|<7 mm/yr"))
+ self.assertEqual(self.pane.outlier_color_label(8), ("orange", "7<|v|<9 mm/yr"))
+ self.assertEqual(self.pane.outlier_color_label(12), ("red", "9<|v|<12 mm/yr"))
+
+ def test_plot_all_outliers(self):
+ pt = Point(0, 0)
+ data = [(dump_wkb(pt), 10)]
+ self.pane.plot_all_outliers(data)
+ self.assertTrue(len(self.pane.axs[0].collections) > 0)
+
+ def test_plot_square(self):
+ self.pane.plot_square([(0, 0), (10, 10)])
+ self.assertTrue(len(self.pane.axs[0].patches) > 0)
+
+ def test_plot_pspoint_dist(self):
+ pt = Point(0, 0)
+ data = [(dump_wkb(pt),)]
+ self.pane.plot_pspoint_dist(data)
+ self.assertTrue(len(self.pane.axs[1].collections) > 0)
+
+ def test_plot_outlier(self):
+ pt = Point(0, 0)
+ data = [(dump_wkb(pt), 9)]
+ self.pane.plot_outlier(data)
+ self.assertTrue(len(self.pane.axs[1].collections) > 0)
+
+ def test_plot_lcp(self):
+ pt = Point(0, 0)
+ data = [dump_wkb(pt)]
+ self.pane.plot_lcp(data)
+ self.assertTrue(len(self.pane.axs[1].collections) > 0)
+
+ def test_cum_disp_graphs(self):
+ y = [([1, 2, 3, 4, 5],)]
+ std = [([1, 1, 1, 1, 1],)]
+ self.pane.plot_cum_disp_graph(y, self.dates)
+ self.pane.plot_avg_disp_graph(y, self.dates)
+ self.pane.plot_std_disp_graph(y, std, self.dates)
+ # scatter + 2x fill_between -> collections exist
+ self.assertGreater(len(self.pane.axs[2].collections), 0)
+
+ def test_rel_disp_graphs(self):
+ y = [([1, 2, 3, 4, 5],)]
+ std = [([1, 1, 1, 1, 1],)]
+ self.pane.plot_rel_disp_graph(y, self.dates)
+ self.pane.plot_avg_rel_disp_graph(y, self.dates)
+ self.pane.plot_std_rel_disp_graph(y, std, self.dates)
+ self.assertTrue(len(self.pane.axs[3].collections) > 0)
+
+ def test_lcp_disp_graphs(self):
+ y = [([1, 2, 3, 4, 5],)]
+ std = [([1, 1, 1, 1, 1],)]
+ self.pane.plot_lcp_disp_graph(y, self.dates)
+ self.pane.plot_avg_lcp_disp_graph(y, self.dates)
+ self.pane.plot_std_lcp_disp_graph(y, std, self.dates)
+ self.assertTrue(len(self.pane.axs[4].collections) > 0)
+
+ def test_post_process_runs(self):
+ self.pane.post_process() # should not raise
+
+
+if __name__ == "__main__":
+ unittest.main()
diff --git a/tests/test_saferoad.py b/tests/test_saferoad.py
new file mode 100644
index 0000000..eb0bade
--- /dev/null
+++ b/tests/test_saferoad.py
@@ -0,0 +1,203 @@
+import unittest
+from src.saferoad.saferoad import SafeRoad, PsData, Road
+import os
+
+
+class TestSafeRoad(unittest.TestCase):
+ def setUp(self):
+ # Setup the test data
+ self.computational_crs = "EPSG:28992"
+ self.road = Road(
+ filepath="./examples/fixtures/A10_ams.geojson",
+ crs_code="EPSG:4326",
+ name="road",
+ )
+ self.ps_data = PsData(
+ filepath="./examples/fixtures/psdata_mod.csv",
+ latitude="pnt_lat",
+ longitude="pnt_lon",
+ unit="m",
+ crs_code="EPSG:4326",
+ name="pspoint",
+ )
+ self.saferoad = SafeRoad(
+ road=self.road,
+ ps_data=self.ps_data,
+ computational_crs=self.computational_crs,
+ )
+
+ def test_initialization(self):
+ # Test initialization of SafeRoad
+ self.assertEqual(
+ self.saferoad.road_data.filepath, "./examples/fixtures/A10_ams.geojson"
+ )
+ self.assertEqual(
+ self.saferoad.ps_data.filepath, "./examples/fixtures/psdata_mod.csv"
+ )
+ self.assertEqual(self.saferoad.computational_crs, "EPSG:28992")
+
+ def test_load_files(self):
+ # Test loading files
+ try:
+ self.saferoad.load_files()
+ except Exception as e:
+ self.fail(f"load_files raised an exception: {e}")
+
+ def test_preprocess(self):
+ # Test preprocessing
+ try:
+ self.saferoad.load_files()
+ self.saferoad.preprocess()
+ except Exception as e:
+ self.fail(f"preprocess raised an exception: {e}")
+
+ def test_generate_rectangles(self):
+ # Test generating rectangles
+ try:
+ self.saferoad.load_files()
+ self.saferoad.preprocess()
+ self.saferoad.generate_rectangles(road_width=8, segment_length=500)
+ except Exception as e:
+ self.fail(f"generate_rectangles raised an exception: {e}")
+
+ def test_run_analysis(self):
+ # Test running analysis
+ try:
+ self.saferoad.load_files()
+ self.saferoad.preprocess()
+ self.saferoad.generate_rectangles(road_width=8, segment_length=500)
+ self.saferoad.run_analysis()
+ except Exception as e:
+ self.fail(f"run_analysis raised an exception: {e}")
+
+ def test_generate_report(self):
+ # Test generating report
+ try:
+ self.saferoad.load_files()
+ self.saferoad.preprocess()
+ self.saferoad.generate_rectangles(road_width=8, segment_length=500)
+ self.saferoad.run_analysis()
+ self.saferoad.generate_report("./test_report2.pdf")
+ except Exception as e:
+ self.fail(f"generate_report raised an exception: {e}")
+
+ finally:
+ # Clean up the test file
+ if os.path.exists("./test_report2.pdf"):
+ os.remove("./test_report2.pdf")
+
+ def test_scaling_factor(self):
+ # Test the _scaling_factor_ property
+ self.ps_data.unit = "m"
+ self.assertEqual(self.saferoad._scaling_factor_, 1000)
+
+ self.ps_data.unit = "cm"
+ self.assertEqual(self.saferoad._scaling_factor_, 10)
+
+ self.ps_data.unit = "mm"
+ self.assertEqual(self.saferoad._scaling_factor_, 1)
+
+ def test_invalid_initialization(self):
+ # Test initialization with invalid inputs
+ with self.assertRaises(AssertionError):
+ SafeRoad(
+ road="not_a_road",
+ ps_data=self.ps_data,
+ computational_crs=self.computational_crs,
+ )
+ with self.assertRaises(AssertionError):
+ SafeRoad(
+ road=self.road,
+ ps_data="not_ps_data",
+ computational_crs=self.computational_crs,
+ )
+ with self.assertRaises(AssertionError):
+ SafeRoad(road=self.road, ps_data=self.ps_data, computational_crs=123)
+
+ def test_generate_rectangles_different_values(self):
+ # Test generating rectangles with different values
+ try:
+ self.saferoad.load_files()
+ self.saferoad.preprocess()
+ # Test with smaller values
+ self.saferoad.generate_rectangles(road_width=5, segment_length=250)
+ # Test with larger values
+ self.saferoad.generate_rectangles(road_width=10, segment_length=1000)
+ except Exception as e:
+ self.fail(
+ f"generate_rectangles with different values raised an exception: {e}"
+ )
+
+ def test_ps_data_validation(self):
+ # Test PsData validation
+ with self.assertRaises(AssertionError):
+ PsData(filepath="", latitude="lat", longitude="lon") # Empty filepath
+ with self.assertRaises(AssertionError):
+ PsData(filepath="test.csv", latitude="", longitude="lon") # Empty latitude
+ with self.assertRaises(AssertionError):
+ PsData(filepath="test.csv", latitude="lat", longitude="") # Empty longitude
+ with self.assertRaises(AssertionError):
+ PsData(
+ filepath="test.csv",
+ latitude="lat",
+ longitude="lon",
+ unit="invalid",
+ ) # Invalid unit
+
+ def test_road_validation(self):
+ # Test Road validation
+ with self.assertRaises(AssertionError):
+ Road(filepath="", name="road") # Empty filepath
+ with self.assertRaises(AssertionError):
+ Road(filepath=123, name="road") # Non-string filepath
+ with self.assertRaises(AssertionError):
+ Road(filepath="test.geojson", name="") # Empty name
+
+ def test_generate_report_custom_output(self):
+ # Test generating report with custom output path
+ try:
+ self.saferoad.load_files()
+ self.saferoad.preprocess()
+ self.saferoad.generate_rectangles(road_width=8, segment_length=500)
+ self.saferoad.run_analysis()
+ self.saferoad.generate_report("./custom_report_output.pdf")
+ except Exception as e:
+ self.fail(f"generate_report with custom output raised an exception: {e}")
+
+ finally:
+ # Clean up the test file
+ if os.path.exists("./custom_report_output.pdf"):
+ os.remove("./custom_report_output.pdf")
+
+ def test_render_ts_plots_workers(self):
+ """Test that time series plots are correctly rendered in the report."""
+
+ # First, load files and run necessary preprocessing
+ self.saferoad.load_files()
+ self.saferoad.preprocess()
+ self.saferoad.generate_rectangles(road_width=8, segment_length=500)
+ self.saferoad.run_analysis()
+
+ # Generate a report
+ report_path = "./test_ts_plots_report.pdf"
+ try:
+ self.saferoad.generate_report(report_path)
+
+ # Check if the report file exists
+ self.assertTrue(os.path.exists(report_path))
+
+ # Check file size to ensure it contains plots (a PDF with time series plots
+ # should be reasonably large)
+ file_size = os.path.getsize(report_path)
+ self.assertGreater(
+ file_size, 10000
+ ) # A reasonable minimum size for a PDF with plots
+
+ finally:
+ # Clean up the test file
+ if os.path.exists(report_path):
+ os.remove(report_path)
+
+
+if __name__ == "__main__":
+ unittest.main()
diff --git a/tests/test_suite.py b/tests/test_suite.py
new file mode 100644
index 0000000..a75d7ad
--- /dev/null
+++ b/tests/test_suite.py
@@ -0,0 +1,22 @@
+import unittest
+
+
+def suite():
+ laoder = unittest.TestLoader()
+ suite = unittest.TestSuite()
+
+ for module in [
+ "test_utils",
+ "test_pipeline",
+ "test_database",
+ "test_plotter",
+ "test_saferoad",
+ ]:
+ suite.addTests(laoder.loadTestsFromName(f"tests.{module}"))
+
+ return suite
+
+
+if __name__ == "__main__":
+ runner = unittest.TextTestRunner(verbosity=2)
+ runner.run(suite())
diff --git a/tests/test_utils.py b/tests/test_utils.py
new file mode 100644
index 0000000..f1a7fce
--- /dev/null
+++ b/tests/test_utils.py
@@ -0,0 +1,134 @@
+import unittest
+from datetime import datetime
+from src.saferoad.utils import extract_dates, time_vector, Timer
+import io
+from contextlib import redirect_stdout
+import time
+
+
+class TestExtractDates(unittest.TestCase):
+
+ def test_valid_dates(self):
+ column_names = ["data_20230101", "info_20221231", "value_20220101"]
+ expected_names = ["data_20230101", "info_20221231", "value_20220101"]
+ expected_dates = [
+ datetime(2023, 1, 1).date(),
+ datetime(2022, 12, 31).date(),
+ datetime(2022, 1, 1).date(),
+ ]
+ result_names, result_dates = extract_dates(column_names)
+ self.assertEqual(result_names, expected_names)
+ self.assertEqual(result_dates, expected_dates)
+
+ def test_no_dates(self):
+ column_names = ["data", "info", "value"]
+ expected_names = []
+ expected_dates = []
+ result_names, result_dates = extract_dates(column_names)
+ self.assertEqual(result_names, expected_names)
+ self.assertEqual(result_dates, expected_dates)
+
+ def test_mixed_columns(self):
+ column_names = ["data_20230101", "info", "value_20220101"]
+ expected_names = ["data_20230101", "value_20220101"]
+ expected_dates = [
+ datetime(2023, 1, 1).date(),
+ datetime(2022, 1, 1).date(),
+ ]
+ result_names, result_dates = extract_dates(column_names)
+ self.assertEqual(result_names, expected_names)
+ self.assertEqual(result_dates, expected_dates)
+
+ def test_empty_list(self):
+ column_names = []
+ with self.assertRaises(AssertionError):
+ extract_dates(column_names)
+
+ def test_invalid_input_type(self):
+ column_names = "data_20230101"
+ with self.assertRaises(AssertionError):
+ extract_dates(column_names)
+
+ def test_non_string_elements(self):
+ column_names = ["data_20230101", 123, "value_20220101"]
+ with self.assertRaises(AssertionError):
+ extract_dates(column_names)
+
+ def test_time_vector(self):
+ dates = [
+ datetime(2022, 1, 1),
+ datetime(2022, 1, 2),
+ datetime(2022, 1, 10),
+ datetime(2022, 1, 20),
+ ]
+ expected_vector = [0, 1, 9, 19]
+ result_vector = time_vector(dates)
+ self.assertEqual(list(result_vector), expected_vector)
+
+ def test_time_vector_single_date(self):
+ dates = [datetime(2022, 1, 1)]
+ expected_vector = [0]
+ result_vector = time_vector(dates)
+ self.assertEqual(result_vector, expected_vector)
+
+ def test_extract_date_with_list_numbers(self):
+ column_names = ["data_20230101", "info_20221231", "value_20220101", 123]
+ with self.assertRaises(AssertionError):
+ extract_dates(column_names)
+
+ def test_extract_date_with_empty_list(self):
+ column_names = []
+ with self.assertRaises(AssertionError):
+ extract_dates(column_names)
+
+
+class TestTimer(unittest.TestCase):
+
+ def test_timer_with_name(self):
+ """Test that Timer works correctly with a name parameter."""
+
+ # Capture stdout
+ f = io.StringIO()
+ with redirect_stdout(f):
+ with Timer(name="test_timer"):
+ time.sleep(0.1) # Sleep for a short time
+
+ output = f.getvalue()
+ self.assertIn("test_timer took", output)
+ self.assertRegex(output, r"test_timer took \d+\.\d+ seconds")
+
+ def test_timer_without_name(self):
+ """Test that Timer works correctly without a name parameter."""
+
+ # Capture stdout
+ f = io.StringIO()
+ with redirect_stdout(f):
+ with Timer():
+ time.sleep(0.1) # Sleep for a short time
+
+ # No output should be produced when name is None
+ output = f.getvalue()
+ self.assertEqual(output, "")
+
+ def test_timer_accuracy(self):
+ """Test that Timer measures time with reasonable accuracy."""
+
+ sleep_time = 0.2 # seconds
+ timer = Timer("accuracy_test")
+
+ # Measure the time manually
+ start_time = time.time()
+ with redirect_stdout(io.StringIO()): # Suppress output
+ with timer:
+ time.sleep(sleep_time)
+ end_time = time.time()
+
+ elapsed_time = end_time - start_time
+ # Check that the elapsed time is reasonably close to sleep_time
+ # Allow for some overhead in timing operations
+ self.assertGreaterEqual(elapsed_time, sleep_time)
+ self.assertLess(elapsed_time, sleep_time + 0.1) # Allow 0.1s margin
+
+
+if __name__ == "__main__":
+ unittest.main()